├── .github └── workflows │ ├── lint_python.yml │ ├── publish-to-pypi.yml │ └── test.yml ├── .gitignore ├── .nojekyll ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── doctrees │ ├── doc │ │ ├── client.doctree │ │ └── presence.doctree │ ├── environment.pickle │ ├── index.doctree │ └── info │ │ ├── about.doctree │ │ ├── examples.doctree │ │ └── quickstart.doctree ├── html │ ├── .buildinfo │ ├── .buildinfo.bak │ ├── _images │ │ ├── quickstart-final-new.png │ │ └── quickstart-final.png │ ├── _sources │ │ ├── doc │ │ │ ├── client.rst.txt │ │ │ └── presence.rst.txt │ │ ├── index.rst.txt │ │ └── info │ │ │ ├── about.rst.txt │ │ │ ├── examples.rst.txt │ │ │ └── quickstart.rst.txt │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── github-banner.svg │ │ ├── img │ │ │ ├── quickstart-final-new.png │ │ │ └── quickstart-final.png │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ └── sphinx_highlight.js │ ├── doc │ │ ├── client.html │ │ └── presence.html │ ├── genindex.html │ ├── index.html │ ├── info │ │ ├── about.html │ │ ├── examples.html │ │ └── quickstart.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js ├── index.html └── sphinx │ ├── _static │ └── img │ │ ├── quickstart-final-new.png │ │ └── quickstart-final.png │ ├── conf.py │ ├── doc │ ├── client.rst │ └── presence.rst │ ├── index.rst │ ├── info │ ├── about.rst │ ├── examples.rst │ └── quickstart.rst │ ├── logosmall.svg │ └── make.bat ├── examples ├── buttons.py ├── client-authorize-example.md ├── examples.md ├── full-event-client-example.py ├── rich-presence-cpu-usage.py ├── rich-presence-custom-name.py ├── rich-presence-get-request.py ├── rich-presence-gifs.py ├── rich-presence-images.py ├── rich-presence-loop.py ├── rich-presence-music-async.py ├── rich-presence-music.py ├── rich-presence-program-detection.py ├── rich-presence-with-urls.py ├── rich-presence.py └── time-elapsed-example.py ├── pypresence ├── __init__.py ├── baseclient.py ├── client.py ├── exceptions.py ├── payloads.py ├── presence.py ├── py.typed ├── types.py └── utils.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── README.md ├── __init__.py ├── conftest.py ├── test_baseclient.py ├── test_exceptions.py ├── test_payloads.py ├── test_presence.py ├── test_types.py └── test_utils.py └── tox.ini /.github/workflows/lint_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/.github/workflows/lint_python.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doctrees/doc/client.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/doc/client.doctree -------------------------------------------------------------------------------- /docs/doctrees/doc/presence.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/doc/presence.doctree -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/info/about.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/info/about.doctree -------------------------------------------------------------------------------- /docs/doctrees/info/examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/info/examples.doctree -------------------------------------------------------------------------------- /docs/doctrees/info/quickstart.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/doctrees/info/quickstart.doctree -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.buildinfo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/.buildinfo.bak -------------------------------------------------------------------------------- /docs/html/_images/quickstart-final-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_images/quickstart-final-new.png -------------------------------------------------------------------------------- /docs/html/_images/quickstart-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_images/quickstart-final.png -------------------------------------------------------------------------------- /docs/html/_sources/doc/client.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/doc/client.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/doc/presence.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/doc/presence.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/info/about.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/info/about.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/info/examples.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/info/examples.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/info/quickstart.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_sources/info/quickstart.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/github-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/github-banner.svg -------------------------------------------------------------------------------- /docs/html/_static/img/quickstart-final-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/img/quickstart-final-new.png -------------------------------------------------------------------------------- /docs/html/_static/img/quickstart-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/img/quickstart-final.png -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/sidebar.js -------------------------------------------------------------------------------- /docs/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/html/doc/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/doc/client.html -------------------------------------------------------------------------------- /docs/html/doc/presence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/doc/presence.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/info/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/info/about.html -------------------------------------------------------------------------------- /docs/html/info/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/info/examples.html -------------------------------------------------------------------------------- /docs/html/info/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/info/quickstart.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/sphinx/_static/img/quickstart-final-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/_static/img/quickstart-final-new.png -------------------------------------------------------------------------------- /docs/sphinx/_static/img/quickstart-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/_static/img/quickstart-final.png -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/doc/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/doc/client.rst -------------------------------------------------------------------------------- /docs/sphinx/doc/presence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/doc/presence.rst -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/sphinx/info/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/info/about.rst -------------------------------------------------------------------------------- /docs/sphinx/info/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/info/examples.rst -------------------------------------------------------------------------------- /docs/sphinx/info/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/info/quickstart.rst -------------------------------------------------------------------------------- /docs/sphinx/logosmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/logosmall.svg -------------------------------------------------------------------------------- /docs/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/docs/sphinx/make.bat -------------------------------------------------------------------------------- /examples/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/buttons.py -------------------------------------------------------------------------------- /examples/client-authorize-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/client-authorize-example.md -------------------------------------------------------------------------------- /examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/examples.md -------------------------------------------------------------------------------- /examples/full-event-client-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/full-event-client-example.py -------------------------------------------------------------------------------- /examples/rich-presence-cpu-usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-cpu-usage.py -------------------------------------------------------------------------------- /examples/rich-presence-custom-name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-custom-name.py -------------------------------------------------------------------------------- /examples/rich-presence-get-request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-get-request.py -------------------------------------------------------------------------------- /examples/rich-presence-gifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-gifs.py -------------------------------------------------------------------------------- /examples/rich-presence-images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-images.py -------------------------------------------------------------------------------- /examples/rich-presence-loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-loop.py -------------------------------------------------------------------------------- /examples/rich-presence-music-async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-music-async.py -------------------------------------------------------------------------------- /examples/rich-presence-music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-music.py -------------------------------------------------------------------------------- /examples/rich-presence-program-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-program-detection.py -------------------------------------------------------------------------------- /examples/rich-presence-with-urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence-with-urls.py -------------------------------------------------------------------------------- /examples/rich-presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/rich-presence.py -------------------------------------------------------------------------------- /examples/time-elapsed-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/examples/time-elapsed-example.py -------------------------------------------------------------------------------- /pypresence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/__init__.py -------------------------------------------------------------------------------- /pypresence/baseclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/baseclient.py -------------------------------------------------------------------------------- /pypresence/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/client.py -------------------------------------------------------------------------------- /pypresence/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/exceptions.py -------------------------------------------------------------------------------- /pypresence/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/payloads.py -------------------------------------------------------------------------------- /pypresence/presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/presence.py -------------------------------------------------------------------------------- /pypresence/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypresence/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/types.py -------------------------------------------------------------------------------- /pypresence/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pypresence/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test suite for pypresence""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_baseclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_baseclient.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_payloads.py -------------------------------------------------------------------------------- /tests/test_presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_presence.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyquerty/pypresence/HEAD/tox.ini --------------------------------------------------------------------------------