You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following dependencies are needed if you want to make your RPC just like mine. But there's a problem with pyfiglet and only solution I could find was copying pyfiglet folder from python site-packages into my project folder, and adding the parameters in line 4 while using pyinstaller.
pip install nuitka
pip install termcolor for colored text.
pip install pyfiglet alternatively you can try with pip install pyfiglet --force for ASCII text.
IF YOU WANT AN ASCII TEXT on console print: pyfiglet fucked for some reason and Chrome/Windows detects this code as virus, so my advice is to build an exe it with;
pyinstaller --add-data "Python 3.10.4\Lib\site-packages\pyfiglet;./pyfiglet" --onefile your-app-name.py
IF YOU DONT WANT AN ASCII TEXT on console print: just simply delete that line, otherwise exe won't work.
I use pyinstaller, you can use whatever you like. But make sure you have the right parameters ^
Original exe icon is not included in this package.
Additional Info
You can use "empty_template.py" to make a customized RPC.
Everything you need to change addressed in the template.