├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── brotli_asgi ├── __init__.py └── py.typed ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests.py /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/README.md -------------------------------------------------------------------------------- /brotli_asgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/brotli_asgi/__init__.py -------------------------------------------------------------------------------- /brotli_asgi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Brotli==1.1.0 2 | starlette==0.48.0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullonic/brotli-asgi/HEAD/tests.py --------------------------------------------------------------------------------