Created
October 27, 2020 22:38
-
-
Save Mizzlr/0488e61b8ed840eec57ddd47de68f8ad to your computer and use it in GitHub Desktop.
list-all-github-repos-in-an-org.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from github import Github | |
g = Github('your-github-login', 'your-github-token-XXXX') | |
if __name__ == '__main__': | |
for repo in g.get_user().get_repos(): | |
print(repo.name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment