diff options
author | 2012-04-23 17:44:10 +0200 | |
---|---|---|
committer | 2012-04-23 17:44:10 +0200 | |
commit | c7c03100fd0584b759bb75d461a12f5bcd5aabba (patch) | |
tree | 16267d3fb9919933d826ddcc8aa05f04b9b0a00f /pygithub3/github.py | |
parent | :sparkles: Release 0.3 :sparkles: (diff) | |
download | python-github3-c7c03100fd0584b759bb75d461a12f5bcd5aabba.tar.xz python-github3-c7c03100fd0584b759bb75d461a12f5bcd5aabba.zip |
Baseline Orgs API implementation
Diffstat (limited to 'pygithub3/github.py')
-rw-r--r-- | pygithub3/github.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py index 0b302a1..ba403e6 100644 --- a/pygithub3/github.py +++ b/pygithub3/github.py @@ -17,9 +17,11 @@ class Github(object): from pygithub3.services.users import User from pygithub3.services.repos import Repo from pygithub3.services.gists import Gist + from pygithub3.services.orgs import Org self._users = User(**config) self._repos = Repo(**config) self._gists = Gist(**config) + self._orgs = Org(**config) @property def remaining_requests(self): @@ -47,3 +49,10 @@ class Github(object): :ref:`Gists service <Gists service>` """ return self._gists + + @property + def orgs(self): + """ + :ref:`Orgs service <Orgs service>` + """ + return self._orgs |