├── .flake8 ├── .github └── workflows │ └── workflow.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── Makefile ├── README.md ├── asgi_background ├── __init__.py ├── _background_tasks.py ├── _middleware.py ├── _types.py └── py.typed ├── codecov.yml ├── pyproject.toml └── tests ├── __init__.py └── test_background.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/.github/workflows/workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/README.md -------------------------------------------------------------------------------- /asgi_background/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/asgi_background/__init__.py -------------------------------------------------------------------------------- /asgi_background/_background_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/asgi_background/_background_tasks.py -------------------------------------------------------------------------------- /asgi_background/_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/asgi_background/_middleware.py -------------------------------------------------------------------------------- /asgi_background/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/asgi_background/_types.py -------------------------------------------------------------------------------- /asgi_background/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/codecov.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriangb/asgi-background/HEAD/tests/test_background.py --------------------------------------------------------------------------------