Skip to content

Instantly share code, notes, and snippets.

@infinite-Joy
Created January 9, 2017 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinite-Joy/933cca089d189e60ef3ced7c1531617d to your computer and use it in GitHub Desktop.
Save infinite-Joy/933cca089d189e60ef3ced7c1531617d to your computer and use it in GitHub Desktop.
get the github users according the language and the city
# 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