Skip to content

Instantly share code, notes, and snippets.

View soda480's full-sized avatar

Emilio Reyes soda480

  • Arizona, USA
  • 17:24 (UTC -07:00)
View GitHub Profile
@soda480
soda480 / gist:a1d5cdf3f303a2625fd1e924a546ee76
Last active May 19, 2021 16:06
Get number of repositories by topic in an organization
python - << EOF
from github3api import GitHubAPI
client = GitHubAPI.get_client()
topics = [
'--topic-goes-here--',
'--topic-goes-here--',
'--topic-goes-here--'
]
org = '--organization-goes-here--'
for topic in topics: