├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── ci └── azure-pipelines.yml ├── img └── msgpack-asgi.png ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── msgpack_asgi │ ├── __init__.py │ ├── _middleware.py │ └── py.typed └── tests ├── __init__.py ├── test_middleware.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/README.md -------------------------------------------------------------------------------- /ci/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/ci/azure-pipelines.yml -------------------------------------------------------------------------------- /img/msgpack-asgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/img/msgpack-asgi.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/setup.py -------------------------------------------------------------------------------- /src/msgpack_asgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/src/msgpack_asgi/__init__.py -------------------------------------------------------------------------------- /src/msgpack_asgi/_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/src/msgpack_asgi/_middleware.py -------------------------------------------------------------------------------- /src/msgpack_asgi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florimondmanca/msgpack-asgi/HEAD/tests/utils.py --------------------------------------------------------------------------------