Created
January 9, 2017 09:17
-
-
Save infinite-Joy/933cca089d189e60ef3ced7c1531617d to your computer and use it in GitHub Desktop.
get the github users according the language and the city
This file contains 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
# pip install PyGithub | |
from github import Github | |
g = Github("username", "password") | |
for users in g.search_users("language name", location="location name"): | |
print(users) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment