Last active
January 1, 2016 15:52
-
-
Save swayson/4bde14079b0caf54a2c4 to your computer and use it in GitHub Desktop.
Grab metadata of starred github repos.
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
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