git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| from github import Github # pip install github | |
| # Github API Token | |
| ACCESS_TOKEN= '' | |
| # Github Users stars you want to hoard | |
| githubUser = 'stankye' | |
| # File name you want to save as | |
| fileName = 'myStars.txt' | |