├── .coveragerc ├── .gitignore ├── LICENSE ├── README.rst ├── dev-requirements.txt ├── etc └── example │ └── config.yml ├── example ├── __init__.py ├── __main__.py ├── app.py ├── config.py ├── db │ ├── __init__.py │ ├── manager.py │ └── models.py ├── middleware │ ├── __init__.py │ └── context.py ├── resources │ ├── __init__.py │ └── scores.py └── schemas │ ├── __init__.py │ └── scores_creation.json ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── helpers │ ├── __init__.py │ └── app.py └── test_scores.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | tox 2 | -r test-requirements.txt 3 | -------------------------------------------------------------------------------- /etc/example/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/etc/example/config.yml -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/__main__.py -------------------------------------------------------------------------------- /example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/app.py -------------------------------------------------------------------------------- /example/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/config.py -------------------------------------------------------------------------------- /example/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/db/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/db/manager.py -------------------------------------------------------------------------------- /example/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/db/models.py -------------------------------------------------------------------------------- /example/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/middleware/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/middleware/context.py -------------------------------------------------------------------------------- /example/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/resources/__init__.py -------------------------------------------------------------------------------- /example/resources/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/resources/scores.py -------------------------------------------------------------------------------- /example/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/schemas/__init__.py -------------------------------------------------------------------------------- /example/schemas/scores_creation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/example/schemas/scores_creation.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/tests/helpers/app.py -------------------------------------------------------------------------------- /tests/test_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/tests/test_scores.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmvrbanac/falcon-example/HEAD/tox.ini --------------------------------------------------------------------------------