├── .bumpversion.cfg ├── .coveragerc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── _templates │ └── links.html ├── conf.py └── index.rst ├── docs_requirements.txt ├── examples ├── README.rst ├── example1.py ├── example2.py ├── example3.py └── example4.py ├── setup.cfg ├── setup.py ├── src └── flask_json.py ├── tests ├── conftest.py ├── test_as_json.py ├── test_as_json_p.py ├── test_decode.py ├── test_encode.py ├── test_error.py ├── test_init.py ├── test_jsonify_http_errors.py └── test_response.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/README.rst -------------------------------------------------------------------------------- /docs/_templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/docs/_templates/links.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/docs_requirements.txt -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/examples/example1.py -------------------------------------------------------------------------------- /examples/example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/examples/example2.py -------------------------------------------------------------------------------- /examples/example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/examples/example3.py -------------------------------------------------------------------------------- /examples/example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/examples/example4.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/setup.py -------------------------------------------------------------------------------- /src/flask_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/src/flask_json.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_as_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_as_json.py -------------------------------------------------------------------------------- /tests/test_as_json_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_as_json_p.py -------------------------------------------------------------------------------- /tests/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_decode.py -------------------------------------------------------------------------------- /tests/test_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_encode.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_jsonify_http_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_jsonify_http_errors.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skozlovf/flask-json/HEAD/tox.ini --------------------------------------------------------------------------------