├── .gitattributes ├── .github └── workflows │ ├── build-and-run-tests.yml │ └── publish-a-release.yml ├── .gitignore ├── .readthedocs.yaml ├── DEV.md ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ ├── wakepy-docs.css │ └── wakepy-docs.js │ ├── _templates │ ├── author.html │ └── sbt-sidebar-nav.html │ ├── api-reference.md │ ├── changelog.md │ ├── cli-api.md │ ├── conf.py │ ├── img │ ├── activate-mode-activity-diagram.svg │ ├── activate-mode-using-method-activity-diagram.svg │ ├── idle-timer-non-resetting.svg │ ├── idle-timer-post-exit-inhibit.svg │ ├── idle-timer-resetting.svg │ ├── logo-small.svg │ ├── mode-activity-diagram.svg │ ├── mode-state-diagram.svg │ ├── wakepy-banner.svg │ └── wakepy-github-social-share.svg │ ├── index.md │ ├── installing.md │ ├── methods-reference.md │ ├── migration.md │ ├── modes.md │ ├── multithreading.md │ ├── post-keepawake-behavior.md │ ├── test-manually.md │ ├── tests-and-ci.md │ ├── user-guide.md │ └── wakepy-mode-lifecycle.md ├── pyproject.toml ├── requirements ├── requirements-check.txt ├── requirements-dev.txt ├── requirements-docs.txt ├── requirements-mypy.txt └── requirements-test.txt ├── scripts ├── example-test-with-wakepy.py └── example-test.py ├── src └── wakepy │ ├── __init__.py │ ├── __main__.py │ ├── core │ ├── __init__.py │ ├── activationresult.py │ ├── constants.py │ ├── dbus.py │ ├── heartbeat.py │ ├── method.py │ ├── mode.py │ ├── platform.py │ ├── prioritization.py │ ├── registry.py │ └── strenum.py │ ├── dbus_adapters │ ├── __init__.py │ └── jeepney.py │ ├── methods │ ├── __init__.py │ ├── _testing.py │ ├── freedesktop.py │ ├── gnome.py │ ├── macos.py │ └── windows.py │ ├── modes │ ├── __init__.py │ └── keep.py │ └── py.typed ├── tasks.py ├── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── integration │ ├── __init__.py │ ├── test_dbus │ │ ├── conftest.py │ │ ├── dbus_service.py │ │ └── test_dbus_adapters.py │ └── test_macos.py ├── tox_build_wakepy.py └── unit │ ├── __init__.py │ ├── conftest.py │ ├── test__init__.py │ ├── test_core │ ├── __init__.py │ ├── conftest.py │ ├── test_activationresult.py │ ├── test_calls.py │ ├── test_constants.py │ ├── test_dbus.py │ ├── test_heartbeat.py │ ├── test_method │ │ ├── __init__.py │ │ ├── test_activation.py │ │ └── test_method.py │ ├── test_mode.py │ ├── test_platform.py │ ├── test_prioritization.py │ ├── test_registry.py │ ├── test_strenum.py │ └── testmethods.py │ ├── test_keep.py │ ├── test_main.py │ ├── test_methods │ ├── __init__.py │ ├── test_freedesktop.py │ ├── test_gnome.py │ ├── test_macos.py │ └── test_windows.py │ └── test_modes.py ├── tox.ini └── toxfile.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/build-and-run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/.github/workflows/build-and-run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/publish-a-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/.github/workflows/publish-a-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/DEV.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/wakepy-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/_static/wakepy-docs.css -------------------------------------------------------------------------------- /docs/source/_static/wakepy-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/_static/wakepy-docs.js -------------------------------------------------------------------------------- /docs/source/_templates/author.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/sbt-sidebar-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/_templates/sbt-sidebar-nav.html -------------------------------------------------------------------------------- /docs/source/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/api-reference.md -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/cli-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/cli-api.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/img/activate-mode-activity-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/activate-mode-activity-diagram.svg -------------------------------------------------------------------------------- /docs/source/img/activate-mode-using-method-activity-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/activate-mode-using-method-activity-diagram.svg -------------------------------------------------------------------------------- /docs/source/img/idle-timer-non-resetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/idle-timer-non-resetting.svg -------------------------------------------------------------------------------- /docs/source/img/idle-timer-post-exit-inhibit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/idle-timer-post-exit-inhibit.svg -------------------------------------------------------------------------------- /docs/source/img/idle-timer-resetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/idle-timer-resetting.svg -------------------------------------------------------------------------------- /docs/source/img/logo-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/logo-small.svg -------------------------------------------------------------------------------- /docs/source/img/mode-activity-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/mode-activity-diagram.svg -------------------------------------------------------------------------------- /docs/source/img/mode-state-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/mode-state-diagram.svg -------------------------------------------------------------------------------- /docs/source/img/wakepy-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/wakepy-banner.svg -------------------------------------------------------------------------------- /docs/source/img/wakepy-github-social-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/img/wakepy-github-social-share.svg -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/installing.md -------------------------------------------------------------------------------- /docs/source/methods-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/methods-reference.md -------------------------------------------------------------------------------- /docs/source/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/migration.md -------------------------------------------------------------------------------- /docs/source/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/modes.md -------------------------------------------------------------------------------- /docs/source/multithreading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/multithreading.md -------------------------------------------------------------------------------- /docs/source/post-keepawake-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/post-keepawake-behavior.md -------------------------------------------------------------------------------- /docs/source/test-manually.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/test-manually.md -------------------------------------------------------------------------------- /docs/source/tests-and-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/tests-and-ci.md -------------------------------------------------------------------------------- /docs/source/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/user-guide.md -------------------------------------------------------------------------------- /docs/source/wakepy-mode-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/docs/source/wakepy-mode-lifecycle.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/requirements-check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/requirements/requirements-check.txt -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/requirements/requirements-dev.txt -------------------------------------------------------------------------------- /requirements/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/requirements/requirements-docs.txt -------------------------------------------------------------------------------- /requirements/requirements-mypy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/requirements/requirements-mypy.txt -------------------------------------------------------------------------------- /requirements/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/requirements/requirements-test.txt -------------------------------------------------------------------------------- /scripts/example-test-with-wakepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/scripts/example-test-with-wakepy.py -------------------------------------------------------------------------------- /scripts/example-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/scripts/example-test.py -------------------------------------------------------------------------------- /src/wakepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/__init__.py -------------------------------------------------------------------------------- /src/wakepy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/__main__.py -------------------------------------------------------------------------------- /src/wakepy/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/__init__.py -------------------------------------------------------------------------------- /src/wakepy/core/activationresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/activationresult.py -------------------------------------------------------------------------------- /src/wakepy/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/constants.py -------------------------------------------------------------------------------- /src/wakepy/core/dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/dbus.py -------------------------------------------------------------------------------- /src/wakepy/core/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/heartbeat.py -------------------------------------------------------------------------------- /src/wakepy/core/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/method.py -------------------------------------------------------------------------------- /src/wakepy/core/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/mode.py -------------------------------------------------------------------------------- /src/wakepy/core/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/platform.py -------------------------------------------------------------------------------- /src/wakepy/core/prioritization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/prioritization.py -------------------------------------------------------------------------------- /src/wakepy/core/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/registry.py -------------------------------------------------------------------------------- /src/wakepy/core/strenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/core/strenum.py -------------------------------------------------------------------------------- /src/wakepy/dbus_adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/dbus_adapters/__init__.py -------------------------------------------------------------------------------- /src/wakepy/dbus_adapters/jeepney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/dbus_adapters/jeepney.py -------------------------------------------------------------------------------- /src/wakepy/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/__init__.py -------------------------------------------------------------------------------- /src/wakepy/methods/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/_testing.py -------------------------------------------------------------------------------- /src/wakepy/methods/freedesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/freedesktop.py -------------------------------------------------------------------------------- /src/wakepy/methods/gnome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/gnome.py -------------------------------------------------------------------------------- /src/wakepy/methods/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/macos.py -------------------------------------------------------------------------------- /src/wakepy/methods/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/methods/windows.py -------------------------------------------------------------------------------- /src/wakepy/modes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wakepy/modes/keep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/src/wakepy/modes/keep.py -------------------------------------------------------------------------------- /src/wakepy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_dbus/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/integration/test_dbus/conftest.py -------------------------------------------------------------------------------- /tests/integration/test_dbus/dbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/integration/test_dbus/dbus_service.py -------------------------------------------------------------------------------- /tests/integration/test_dbus/test_dbus_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/integration/test_dbus/test_dbus_adapters.py -------------------------------------------------------------------------------- /tests/integration/test_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/integration/test_macos.py -------------------------------------------------------------------------------- /tests/tox_build_wakepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/tox_build_wakepy.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/test__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test__init__.py -------------------------------------------------------------------------------- /tests/unit/test_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_core/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/conftest.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_activationresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_activationresult.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_calls.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_constants.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_dbus.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_heartbeat.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_method/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_core/test_method/test_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_method/test_activation.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_method/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_method/test_method.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_mode.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_platform.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_prioritization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_prioritization.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_registry.py -------------------------------------------------------------------------------- /tests/unit/test_core/test_strenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/test_strenum.py -------------------------------------------------------------------------------- /tests/unit/test_core/testmethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_core/testmethods.py -------------------------------------------------------------------------------- /tests/unit/test_keep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_keep.py -------------------------------------------------------------------------------- /tests/unit/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_main.py -------------------------------------------------------------------------------- /tests/unit/test_methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_methods/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_methods/test_freedesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_methods/test_freedesktop.py -------------------------------------------------------------------------------- /tests/unit/test_methods/test_gnome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_methods/test_gnome.py -------------------------------------------------------------------------------- /tests/unit/test_methods/test_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_methods/test_macos.py -------------------------------------------------------------------------------- /tests/unit/test_methods/test_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_methods/test_windows.py -------------------------------------------------------------------------------- /tests/unit/test_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tests/unit/test_modes.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/tox.ini -------------------------------------------------------------------------------- /toxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fohrloop/wakepy/HEAD/toxfile.py --------------------------------------------------------------------------------