This is to fetch all forks of a repo on Github that are forked by orgs instead of individuals
- Create a virtual environment
python3 -m venv myenv
- Activate the virtual environment (Need to run this everytime you open a new terminal)
source myenv/bin/activate
- Now install deps
pip install requests python-dotenv
- Set environment variable
Create a .env
file in the root of the project and add the following
GITHUB_TOKEN=<your_github_token>
- Run the script
python main.py