Skip to content

Instantly share code, notes, and snippets.

@swayson
Last active January 1, 2016 15:52
Show Gist options
  • Save swayson/4bde14079b0caf54a2c4 to your computer and use it in GitHub Desktop.
Save swayson/4bde14079b0caf54a2c4 to your computer and use it in GitHub Desktop.
Grab metadata of starred github repos.
import pandas as pd
from github import Github
g = Github("username", "password")
final = ({'url':r.html_url , 'name': r.name} for r in g.get_user().get_starred())
pd.DataFrame(final).to_excel('Github Stars 20160101.xlsx')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment