gitextract_g53knd5l/ ├── .gitignore ├── .pre-commit-config.yaml ├── .readthdocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── azure-pipelines.yml ├── docs/ │ ├── Makefile │ ├── api_reference.rst │ ├── authors.rst │ ├── changelog.rst │ ├── conf.py │ ├── contributing.rst │ ├── index.rst │ ├── license.rst │ ├── make.bat │ ├── quickstart.rst │ └── requirements.txt ├── examples/ │ └── flask_example.py ├── marshmallow_jsonapi/ │ ├── __init__.py │ ├── exceptions.py │ ├── fields.py │ ├── flask.py │ ├── schema.py │ └── utils.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── base.py │ ├── conftest.py │ ├── test_fields.py │ ├── test_flask.py │ ├── test_options.py │ ├── test_schema.py │ └── test_utils.py └── tox.ini