Sometimes, we need to make sure we don't get calls or messages from Discord, from no one. That's why I built this python script.
-
Fork the project, so you could change things on your end.
-
Clone the project to your local computer, to run, change and test the code.
-
To create isolated environment use venv (AKA
virtualenv
, make sure it is installed via pip list).- Run virtualenv my-env (or any other name) in the terminal.
- Run my-env\Scripts\activate (everytime you open the project).
-
Install all the packages needed using:
pip install -r requirements.txt
-
Run
pip list
to see the packages that are installed on this specific project. -
In order to create exe file, use:
pyinstaller --noconsole --onefile --noupx --icon=app.ico app.py
You can remove the
--onefile
flag and use the default one-folder mode if you want the program to load faster. Recommended. -
Warning: do not rename or move the project folder. Otherwise, the packages might stop working.