This repository holds some useful python Scripts
Each folder groups useful python scripts and is self-contained. To make it very easy for you to use
there is a requirements.txt
file in each folder. So to run the scripts follow the steps
in the Installation section.
The only prerequisite is Python3
Clone this repository:
git clone git@github.com:zwoefler/UsefulPythonScripts.git
Change to the directory with your desired script, e.g. GitHub-Scripts
:
cd UsefulPythonScripts/GitHub-Scripts/
Create a Virtual Environment in the folder.
Choose a name for oyur environment and end it with env
to keep the project naming conventions.:
python3 -m venv GHenv
Activate your Virtual Environment:
source GHVenv/bin/activate
Can be deavtivated: deactivate
Install the requirements in the requirements.txt
:
pip install -r requirements.txt
Execute the Python Script of your desire:
python3 create_new_git_repo.py MyNewRepo Username Password