├── .gitattributes ├── .github ├── AGENTS.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yaml │ ├── ruff.yaml │ └── test_core.yaml ├── .gitignore ├── CITATION.cff ├── Images └── terminal.png ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md ├── bug_report.md ├── feature_request.md └── pull_request_template.md ├── examples ├── advanced_config.py ├── fastapi_webapp.py ├── high_performance.py └── simple_usage.py ├── llms.txt ├── pyproject.toml ├── scripts └── screenshot.py ├── tamga ├── __init__.py ├── constants.py ├── main.py └── utils │ ├── __init__.py │ ├── apprise.py │ ├── colors.py │ └── time.py └── tests └── test_core.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/AGENTS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/ruff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/workflows/ruff.yaml -------------------------------------------------------------------------------- /.github/workflows/test_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.github/workflows/test_core.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/Images/terminal.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/README.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/bug_report.md -------------------------------------------------------------------------------- /docs/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/feature_request.md -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /examples/advanced_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/examples/advanced_config.py -------------------------------------------------------------------------------- /examples/fastapi_webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/examples/fastapi_webapp.py -------------------------------------------------------------------------------- /examples/high_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/examples/high_performance.py -------------------------------------------------------------------------------- /examples/simple_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/examples/simple_usage.py -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/llms.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/scripts/screenshot.py -------------------------------------------------------------------------------- /tamga/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/__init__.py -------------------------------------------------------------------------------- /tamga/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/constants.py -------------------------------------------------------------------------------- /tamga/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/main.py -------------------------------------------------------------------------------- /tamga/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Tamga utilities module""" 2 | -------------------------------------------------------------------------------- /tamga/utils/apprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/utils/apprise.py -------------------------------------------------------------------------------- /tamga/utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/utils/colors.py -------------------------------------------------------------------------------- /tamga/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tamga/utils/time.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogukanUrker/Tamga/HEAD/tests/test_core.py --------------------------------------------------------------------------------