├── .gitignore ├── LICENSE ├── README.md ├── pytest.ini ├── requirements-release.txt ├── requirements.txt ├── src ├── __init__.py ├── manifest.json ├── twitch_db_client.py ├── twitch_launcher_client.py └── twitch_plugin.py ├── tasks.py └── tests ├── __init__.py ├── conftest.py ├── test_authentication.py ├── test_db_client.py ├── test_local_games.py └── test_owned_games.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/README.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-release.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.5.4 2 | galaxy.plugin.api==0.54 3 | 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/twitch_db_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/src/twitch_db_client.py -------------------------------------------------------------------------------- /src/twitch_launcher_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/src/twitch_launcher_client.py -------------------------------------------------------------------------------- /src/twitch_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/src/twitch_plugin.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tests/test_db_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tests/test_db_client.py -------------------------------------------------------------------------------- /tests/test_local_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tests/test_local_games.py -------------------------------------------------------------------------------- /tests/test_owned_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyash-qq/galaxy-plugin-twitch/HEAD/tests/test_owned_games.py --------------------------------------------------------------------------------