gd.rpc is a library that implements GD Discord RPC in Python.
Python 3.6 or higher is required
To install the library, you can just run the following command:
# Windows
py -3 -m pip install -U gd.rpcIn order to install the library from source, you can do the following:
$ git clone https://github.com/NeKitDS/gd.rpc
$ cd gd.rpc
$ python -m pip install -U .Running the app is quite simple.
You can either invoke it from python:
import gdrpc
gdrpc.run()Or run a console command:
$ python -m gdrpc
# OR
$ gd.rpcYou can build an executable file from the gdrpc.py file using pyinstaller:
$ pyinstaller --onefile --exclude-module Pillow --exclude-module numpy --exclude-module IPython --exclude-module pycryptodome --exclude-module lxml --icon=gdrpc.ico gdrpc.pyGenerated executable will be in ./dist folder.
This project is mainly developed by NeKitDS.