gitextract_w_f8cus0/ ├── .github/ │ └── workflows/ │ ├── deploy-docs-on-demand.yml │ ├── main.yml │ └── on-release-main.yml ├── .gitignore ├── .python-version ├── LICENSE ├── Makefile ├── README.md ├── aioclock/ │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── custom_types.py │ ├── exceptions.py │ ├── ext/ │ │ ├── __init__.py │ │ └── fast.py │ ├── group.py │ ├── logger.py │ ├── provider.py │ ├── py.typed │ ├── task.py │ ├── triggers.py │ └── utils.py ├── deploy_docs.py ├── docs/ │ ├── alternative.md │ ├── api/ │ │ ├── external_api.md │ │ ├── getting_started.md │ │ ├── plugin.md │ │ ├── task.md │ │ └── triggers.md │ ├── diagrams/ │ │ └── aioclock.excalidraw │ ├── examples/ │ │ ├── brokers.md │ │ └── fastapi.md │ ├── extra/ │ │ └── tweaks.css │ ├── images/ │ │ └── README.md │ ├── index.md │ ├── overview.md │ └── plugins.py ├── examples/ │ ├── app.py │ ├── awesome_triggers.py │ ├── dependency_injection.py │ └── with_fast_api.py ├── mkdocs.yml ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── test_di.py │ ├── test_examples.py │ ├── test_lifespan.py │ ├── test_timeout.py │ └── test_triggers.py └── tox.ini