├── .gitignore ├── .travis.yml ├── LICENCE ├── README.md ├── examples └── test1.py ├── requirements-dev.txt ├── requirements.txt ├── sanic_dispatcher ├── __init__.py ├── extension.py └── version.py ├── setup.cfg ├── setup.py ├── test ├── conftest.py └── test_basic.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/README.md -------------------------------------------------------------------------------- /examples/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/examples/test1.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sanic>=0.7.0 2 | -------------------------------------------------------------------------------- /sanic_dispatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/sanic_dispatcher/__init__.py -------------------------------------------------------------------------------- /sanic_dispatcher/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/sanic_dispatcher/extension.py -------------------------------------------------------------------------------- /sanic_dispatcher/version.py: -------------------------------------------------------------------------------- 1 | # -*- coding: latin-1 -*- 2 | __version__ = '0.8.0.0' 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = true 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/setup.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/test/test_basic.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleysommer/sanic-dispatcher/HEAD/tox.ini --------------------------------------------------------------------------------