├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── api_utils ├── __init__.py ├── app.py ├── auth.py ├── compat.py └── formatters.py ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── test_auth.py ├── test_flask_app.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | /.tox 4 | /MANIFEST 5 | /dist 6 | /Flask_API_Utils.egg-info 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/README.rst -------------------------------------------------------------------------------- /api_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/api_utils/__init__.py -------------------------------------------------------------------------------- /api_utils/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/api_utils/app.py -------------------------------------------------------------------------------- /api_utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/api_utils/auth.py -------------------------------------------------------------------------------- /api_utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/api_utils/compat.py -------------------------------------------------------------------------------- /api_utils/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/api_utils/formatters.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | 3 | tox==1.6.1 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/tests/test_flask_app.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselester/flask-api-utils/HEAD/tox.ini --------------------------------------------------------------------------------