├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── guvnor ├── __init__.py ├── asyncio_worker.py └── sanic_worker.py ├── notes.txt └── tests ├── __init__.py ├── support.py ├── test_asyncio_worker.py └── test_wsgi_url_handling.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/README.md -------------------------------------------------------------------------------- /guvnor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guvnor/asyncio_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/guvnor/asyncio_worker.py -------------------------------------------------------------------------------- /guvnor/sanic_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/guvnor/sanic_worker.py -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/notes.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/tests/support.py -------------------------------------------------------------------------------- /tests/test_asyncio_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/tests/test_asyncio_worker.py -------------------------------------------------------------------------------- /tests/test_wsgi_url_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeamland/guvnor/HEAD/tests/test_wsgi_url_handling.py --------------------------------------------------------------------------------