mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
17 lines
277 B
Python
17 lines
277 B
Python
#!/bin/env python
|
|
|
|
from github import Github
|
|
import GithubCredentials
|
|
|
|
g = Github( GithubCredentials.login, GithubCredentials.password )
|
|
|
|
u = g.get_user()
|
|
print u.login, u.name
|
|
print u.get_repos()
|
|
print
|
|
|
|
u = g.get_user( "nvie" )
|
|
print u.login, u.name
|
|
print u.get_repos()
|
|
print
|