Skip to content

robinhickmann/boring-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

boring-python

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.

Usage

  1. Clone this repository:

    git clone https://github.com/robinhickmann/boring-python.git
    cd boring-python
  2. Create a python virtual envrionment

    python3 -m venv venv
  3. Activate the virtual envrionment

    # In Linux/macOS
    source venv/bin/activate
    # In cmd.exe
    venv\Scripts\activate.bat
    # In PowerShell
    venv\Scripts\Activate.ps1
  4. Download and install dependencies

    Also make sure you have tkinter installed on your system.

    pip3 install -r requirements.txt
  5. Run whichever script you want

    python3 path/to/file

If you want to exit and remove the virtual environment

  1. Exit the virtual envrionment

    deactivate
  2. Remove the virtual envrionment

    # In Linux/macOS
    rm -rf venv
    # In Windows
    rd /s /q venv

License

All code in this repo is licensed under MIT.

About

This repo contains small python applications I make when I'm bored

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages