1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29# Equalify GitHub Stats ## Setup 1. **Create and activate a virtual environment:** ```bash python3 -m venv venv source venv/bin/activate ``` 2. **Install dependencies:** ```bash pip install -r requirements.txt ``` 3. **Create a `.env` file** in the project root with: ```env GITHUB_TOKEN=your_personal_access_token ``` ## Usage Run the script: ```bash python equalify-github-stats.py ```