Publish version 0.7

This commit is contained in:
Vincent Jacques
2012-05-25 19:13:33 +02:00
parent cb0313157b
commit 0cec0d25e6
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ You obtain instances through calls to `get_` and `create_` methods.
Class `Github`
==============
* Constructed from user's login and password
* Constructed from user's login and password or OAuth token
* `get_user()`: `AuthenticatedUser`
* `get_user( login )`: `NamedUser`
* `get_organization( login )`: `Organization`
+9 -1
View File
@@ -5,7 +5,7 @@ import textwrap
setup(
name = 'PyGithub',
version = '0.6',
version = '0.7',
description = 'Use the full Github API v3',
author = 'Vincent Jacques',
author_email = 'vincent@vincent-jacques.net',
@@ -26,6 +26,14 @@ setup(
print repo.name
repo.edit( has_wiki = False )
You can also create a Github instance without authentication::
g = Github( "user", "password" )
Or with an OAuth token::
g = Github( token )
Reference documentation
=======================