From 754dc4a92bb9284ce37cd243dfc672eb34efa7e0 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Mon, 23 Jul 2012 18:18:27 +0200 Subject: [PATCH] Update documentation --- ReadMe.md | 7 ++++++- doc/ReferenceOfClasses.md | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index 5d578da2..a053a6fd 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -17,7 +17,7 @@ You can also clone it on [Github](http://github.com/jacquev6/PyGithub). Tutorial ======== -First create a Gihub instance: +First create a Gihtub instance: from github import Github @@ -53,6 +53,11 @@ Projects using PyGithub History ======= +[Version 1.4](https://github.com/jacquev6/PyGithub/issues?milestone=8&state=closed) (July 29th, 2012) +----------------------------------------------------------------------------------------------------- + +* Allow connection to a custom Github URL, for Github Enterprise, thank you very much [engie](https://github.com/engie) for the merge request + [Version 1.3](https://github.com/jacquev6/PyGithub/issues?milestone=7&state=closed) (July 13th, 2012) ----------------------------------------------------------------------------------------------------- diff --git a/doc/ReferenceOfClasses.md b/doc/ReferenceOfClasses.md index 410bfdc7..dad3e8db 100644 --- a/doc/ReferenceOfClasses.md +++ b/doc/ReferenceOfClasses.md @@ -17,6 +17,8 @@ Constructed from user's login and password or OAuth token or nothing: g = Github( token ) g = Github() +You can add an argument `base_url = "http://my.enterprise.com:8080/path/to/github"` to connect to a local install of Github (ie. Github Enterprise). + Attributes ---------- * `rate_limiting`: tuple of two integers: remaining and limit, as explained in [Rate Limiting](http://developer.github.com/v3/#rate-limiting)