├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── logprise ├── __init__.py ├── __init__.pyi └── py.typed ├── poetry.lock ├── pyproject.toml ├── renovate.json └── tests ├── conftest.py ├── test_adding_add_method.py ├── test_apprise_cannot_handle_notification.py ├── test_intercept_handler.py ├── test_logprise.py ├── test_periodic_flush.py ├── test_prevent_removal.py ├── test_setting_flush_interval.py ├── test_stupid_tests.py └── test_utility_functions.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/README.md -------------------------------------------------------------------------------- /logprise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/logprise/__init__.py -------------------------------------------------------------------------------- /logprise/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/logprise/__init__.pyi -------------------------------------------------------------------------------- /logprise/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_adding_add_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_adding_add_method.py -------------------------------------------------------------------------------- /tests/test_apprise_cannot_handle_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_apprise_cannot_handle_notification.py -------------------------------------------------------------------------------- /tests/test_intercept_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_intercept_handler.py -------------------------------------------------------------------------------- /tests/test_logprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_logprise.py -------------------------------------------------------------------------------- /tests/test_periodic_flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_periodic_flush.py -------------------------------------------------------------------------------- /tests/test_prevent_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_prevent_removal.py -------------------------------------------------------------------------------- /tests/test_setting_flush_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_setting_flush_interval.py -------------------------------------------------------------------------------- /tests/test_stupid_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_stupid_tests.py -------------------------------------------------------------------------------- /tests/test_utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaningelgem/logprise/HEAD/tests/test_utility_functions.py --------------------------------------------------------------------------------