Skip to content

Instantly share code, notes, and snippets.

@Mizzlr
Created October 27, 2020 22:38
Show Gist options
  • Save Mizzlr/0488e61b8ed840eec57ddd47de68f8ad to your computer and use it in GitHub Desktop.
Save Mizzlr/0488e61b8ed840eec57ddd47de68f8ad to your computer and use it in GitHub Desktop.
list-all-github-repos-in-an-org.py
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