diff options
author | 2011-07-23 00:41:28 -0400 | |
---|---|---|
committer | 2011-07-23 00:41:28 -0400 | |
commit | 92c930f5766de4bed0c5ab982443a3b20de0a8ae (patch) | |
tree | 7d41118d3799a320051b9e6cb37bb0086a74dba5 | |
parent | basic helpers (diff) | |
download | python-github3-92c930f5766de4bed0c5ab982443a3b20de0a8ae.tar.xz python-github3-92c930f5766de4bed0c5ab982443a3b20de0a8ae.zip |
read it up
-rw-r--r-- | README.rst | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,12 +12,12 @@ Usage :: - from github3 import github + import github3 - github.login('username', 'password') + gh = github3.basic_auth('username', password) # optional - github. + gh.get_repo('kennethreitz', 'python-github3') |