A really small collection of boring python scripts, maybe some day I'll add another boring script.
Feel free to use any code for any purpose. I don't judge.
Clone this repository:
git clone https://github.com/robinhickmann/boring-python.git cd boring-pythonCreate a python virtual envrionment
python3 -m venv venv
Activate the virtual envrionment
# In Linux/macOSsource venv/bin/activate # In cmd.exe venv\Scripts\activate.bat # In PowerShell venv\Scripts\Activate.ps1
Download and install dependencies
Also make sure you have tkinter installed on your system.
pip3 install -r requirements.txt
Run whichever script you want
python3 path/to/file
Exit the virtual envrionment
deactivate
Remove the virtual envrionment
# In Linux/macOS rm -rf venv # In Windows rd /s /q venv
All code in this repo is licensed under MIT.