├── .coveragerc ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── a2wsgi ├── __init__.py ├── asgi.py ├── asgi_typing.py ├── py.typed ├── wsgi.py └── wsgi_typing.py ├── benchmark.py ├── pdm.lock ├── pyproject.toml ├── script └── version.py └── tests ├── __init__.py ├── test_asgi.py └── test_wsgi.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/README.md -------------------------------------------------------------------------------- /a2wsgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/a2wsgi/__init__.py -------------------------------------------------------------------------------- /a2wsgi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/a2wsgi/asgi.py -------------------------------------------------------------------------------- /a2wsgi/asgi_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/a2wsgi/asgi_typing.py -------------------------------------------------------------------------------- /a2wsgi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a2wsgi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/a2wsgi/wsgi.py -------------------------------------------------------------------------------- /a2wsgi/wsgi_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/a2wsgi/wsgi_typing.py -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/benchmark.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /script/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/script/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/tests/test_asgi.py -------------------------------------------------------------------------------- /tests/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abersheeran/a2wsgi/HEAD/tests/test_wsgi.py --------------------------------------------------------------------------------