Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update form-parsing example in README #958

Merged
merged 8 commits into from
Aug 12, 2023

Commits on Aug 7, 2023

  1. update form-parsing example

    This form-parsing example handles form fields recursively contained within other form fields, removes the incorrect-assumption that field-names are unique and includes the alternate field name in output (which is often a very useful guide to what's in a field).
    
    the prior form-parsing example used the field-name ("T" entry) as the key in the form_data dict, implicitly assuming that the field name is globally unique within a document. That's not a correct assumption; nested field names are often simply a numeric index like 1 or 0. The prior example also entirely ignored the TU entry alternate field name.
    jeremybmerrill authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    b873992 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ceea4cb View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    9fea4b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2236ea View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Configuration menu
    Copy the full SHA
    a97ff07 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c0f1f6 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2023

  1. Configuration menu
    Copy the full SHA
    89814b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    441acdc View commit details
    Browse the repository at this point in the history