Services ========== :doc:`github` class is a glue to all of them and the recommended option to start Overview ---------- You can access to the API requests through the different services. If you take a look at `github API v3 documentation `_, you'll see a few sections in the sidebar. **pygithub3** has one service per each section of request-related For example: :: repos => services.repos.repo collaborators => services.repos.collaborators commits => services.repos.commits .... Each service has the functions to throw the API requests and **is isolated from the rest**. .. _config each service: Config each service ---------------------- Each service can be configurated with some variables (behind the scenes, each service has her client which is configurated with this variables). .. note:: Also you can configure :doc:`github` as a service .. autoclass:: pygithub3.services.base.Service :members: .. _mimetypes-section: MimeTypes ---------- Some services supports `mimetypes`_ With them the :doc:`resources` will have ``body``, ``body_text``, ``body_html`` attributes or all of them. .. autoclass:: pygithub3.services.base.MimeTypeMixin :members: **Fast example**:: from pygithub3 import Github gh = Github() gh.gists.comments.set_html() comment = gh.gists.comments.list(1).all()[0] print comment.body, comment.body_text, comment.body_html List of services ------------------- .. toctree:: :maxdepth: 2 users repos gists git_data pull_requests orgs issues .. _mimetypes: http://developer.github.com/v3/mime