├── .gitignore ├── README.rst ├── UNLICENSE ├── docs ├── .nojekyll ├── Makefile ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ └── index.rst.txt │ │ ├── _static │ │ ├── background_b01.png │ │ ├── basic.css │ │ ├── bizstyle.css │ │ ├── bizstyle.js │ │ ├── css │ │ │ ├── class_sep.css │ │ │ └── newline_params.css │ │ ├── css3-mediaqueries.js │ │ ├── css3-mediaqueries_src.js │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── index.html ├── make.bat └── source │ ├── _ext │ ├── autodoc_intflag.py │ └── reflinks.py │ ├── _static │ └── css │ │ ├── class_sep.css │ │ └── newline_params.css │ ├── conf.py │ └── index.rst ├── pynotify ├── __init__.py ├── event.py ├── event_handler.py ├── event_type.py └── notifier.py ├── pyproject.toml └── tests ├── __init__.py ├── test_event.py └── test_notifier.py /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | .venv/ 3 | *.swp 4 | *egg-info 5 | build/ 6 | dist/ 7 | 8 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/README.rst -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/UNLICENSE -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_static/background_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/background_b01.png -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/bizstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/bizstyle.css -------------------------------------------------------------------------------- /docs/build/html/_static/bizstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/bizstyle.js -------------------------------------------------------------------------------- /docs/build/html/_static/css/class_sep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/css/class_sep.css -------------------------------------------------------------------------------- /docs/build/html/_static/css/newline_params.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/css/newline_params.css -------------------------------------------------------------------------------- /docs/build/html/_static/css3-mediaqueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/css3-mediaqueries.js -------------------------------------------------------------------------------- /docs/build/html/_static/css3-mediaqueries_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/css3-mediaqueries_src.js -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_ext/autodoc_intflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/_ext/autodoc_intflag.py -------------------------------------------------------------------------------- /docs/source/_ext/reflinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/_ext/reflinks.py -------------------------------------------------------------------------------- /docs/source/_static/css/class_sep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/_static/css/class_sep.css -------------------------------------------------------------------------------- /docs/source/_static/css/newline_params.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/_static/css/newline_params.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /pynotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pynotify/__init__.py -------------------------------------------------------------------------------- /pynotify/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pynotify/event.py -------------------------------------------------------------------------------- /pynotify/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pynotify/event_handler.py -------------------------------------------------------------------------------- /pynotify/event_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pynotify/event_type.py -------------------------------------------------------------------------------- /pynotify/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pynotify/notifier.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcriley821/PyNotify/HEAD/tests/test_notifier.py --------------------------------------------------------------------------------