gitextract_t8h8nw0o/ ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ └── build-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── NOTICE ├── README.rst ├── RELEASING.md ├── SECURITY.md ├── docs/ │ ├── .gitignore │ ├── _static/ │ │ └── custom.css │ ├── api_reference.rst │ ├── authors.rst │ ├── changelog.rst │ ├── code_of_conduct.rst │ ├── conf.py │ ├── contributing.rst │ ├── custom_fields.rst │ ├── dashing.json │ ├── donate.rst │ ├── examples/ │ │ ├── index.rst │ │ ├── inflection.rst │ │ ├── quotes_api.rst │ │ └── validating_package_json.rst │ ├── extending/ │ │ ├── custom_error_handling.rst │ │ ├── custom_error_messages.rst │ │ ├── custom_options.rst │ │ ├── index.rst │ │ ├── overriding_attribute_access.rst │ │ ├── pre_and_post_processing_methods.rst │ │ ├── schema_validation.rst │ │ └── using_original_input_data.rst │ ├── index.rst │ ├── install.rst │ ├── kudos.rst │ ├── license.rst │ ├── marshmallow.class_registry.rst │ ├── marshmallow.decorators.rst │ ├── marshmallow.error_store.rst │ ├── marshmallow.exceptions.rst │ ├── marshmallow.experimental.context.rst │ ├── marshmallow.fields.rst │ ├── marshmallow.schema.rst │ ├── marshmallow.types.rst │ ├── marshmallow.utils.rst │ ├── marshmallow.validate.rst │ ├── nesting.rst │ ├── quickstart.rst │ ├── top_level.rst │ ├── upgrading.rst │ ├── whos_using.rst │ └── why.rst ├── examples/ │ ├── flask_example.py │ ├── inflection_example.py │ ├── invalid_package.json │ ├── package.json │ └── package_json_example.py ├── performance/ │ └── benchmark.py ├── pyproject.toml ├── src/ │ └── marshmallow/ │ ├── __init__.py │ ├── class_registry.py │ ├── constants.py │ ├── decorators.py │ ├── error_store.py │ ├── exceptions.py │ ├── experimental/ │ │ ├── __init__.py │ │ └── context.py │ ├── fields.py │ ├── orderedset.py │ ├── py.typed │ ├── schema.py │ ├── types.py │ ├── utils.py │ └── validate.py ├── tests/ │ ├── __init__.py │ ├── base.py │ ├── conftest.py │ ├── foo_serializer.py │ ├── mypy_test_cases/ │ │ ├── test_class_registry.py │ │ ├── test_schema.py │ │ └── test_validation_error.py │ ├── test_context.py │ ├── test_decorators.py │ ├── test_deserialization.py │ ├── test_error_store.py │ ├── test_exceptions.py │ ├── test_fields.py │ ├── test_options.py │ ├── test_registry.py │ ├── test_schema.py │ ├── test_serialization.py │ ├── test_utils.py │ └── test_validate.py └── tox.ini