├── .gitignore ├── README.md ├── app.py ├── config.json ├── profiles.json ├── resources ├── previews │ └── rich_presence.png └── profiles.json.template ├── scripts ├── __init__.py └── sample.py └── src ├── abstracts.py ├── constants.py ├── discordrpc.py ├── script_support.py └── type_hints.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .idea 3 | test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/app.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/config.json -------------------------------------------------------------------------------- /profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/profiles.json -------------------------------------------------------------------------------- /resources/previews/rich_presence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/resources/previews/rich_presence.png -------------------------------------------------------------------------------- /resources/profiles.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/resources/profiles.json.template -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/scripts/sample.py -------------------------------------------------------------------------------- /src/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/src/abstracts.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/discordrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/src/discordrpc.py -------------------------------------------------------------------------------- /src/script_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/src/script_support.py -------------------------------------------------------------------------------- /src/type_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/PyroRPC/HEAD/src/type_hints.py --------------------------------------------------------------------------------