├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── openapi_codec ├── __init__.py ├── decode.py ├── encode.py └── utils.py ├── requirements.txt ├── runtests ├── setup.py ├── tests ├── __init__.py ├── petstore.json ├── test_decode.py ├── test_encode.py └── test_mappings.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/README.md -------------------------------------------------------------------------------- /openapi_codec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/openapi_codec/__init__.py -------------------------------------------------------------------------------- /openapi_codec/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/openapi_codec/decode.py -------------------------------------------------------------------------------- /openapi_codec/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/openapi_codec/encode.py -------------------------------------------------------------------------------- /openapi_codec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/openapi_codec/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/runtests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/tests/petstore.json -------------------------------------------------------------------------------- /tests/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/tests/test_decode.py -------------------------------------------------------------------------------- /tests/test_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/tests/test_encode.py -------------------------------------------------------------------------------- /tests/test_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/tests/test_mappings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/python-openapi-codec/HEAD/tox.ini --------------------------------------------------------------------------------