mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-22 21:58:28 -05:00
4a7a759cead3ee78961c11bc59d569ec86e42f47
GOG Galaxy - Community Integration - Python API
This document is still work in progress.
Basic Usage
Basic implementation:
import asyncio
from galaxy.api.plugin import Plugin
class PluginExample(Plugin):
# implement methods
async def authenticate(self, stored_credentials=None):
pass
# run plugin event loop
if __name__ == "__main__":
asyncio.run(PluginExample().run())
Development
Install required packages:
pip install -r requirements.txt
Run tests:
pytest
Methods Documentation
TODO
Languages
Python
100%