Fast sample:
from pygithub3 import Github auth = dict(login='octocat', password='pass') gh = Github(**auth) octocat_gists = gh.gists.list() the_first_gist = gh.gists.get(1) the_first_gist_comments = gh.gists.comments.list(1)
.. autoclass:: pygithub3.services.gists.Gist :members: .. attribute:: comments :ref:`Comments service`
.. autoclass:: pygithub3.services.gists.Comments :members: