github3.py icon indicating copy to clipboard operation
github3.py copied to clipboard

Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 3.6+.

Results 78 github3.py issues
Sort by recently updated
recently updated
newest added

According to the [github api docs](https://developer.github.com/v3/issues/events/#list-events-for-an-issue) we need to have the `application/vnd.github.starfox-preview+json` header to get project related events.

## Version Information Please provide: - The version of Python you're using **3.6.5** - The version of pip you used to install github3.py **pipenv version 2018.7.1 and pip 18.0** -...

## Version Information Please provide: - The version of Python you're using Python 2.7.15 - The version of pip you used to install github3.py pip 19.2.2 - The version of...

## Version Information - The version of Python you're using 3.6.6 - The version of pip you used to install github3.py Installed using poetry 0.12.16 - The version of github3.py,...

Please allow creating a `file_contents` object without retrieving the current contents. This is because [GitHub's contents API only supports retrieving files up to 1mb](https://developer.github.com/v3/repos/contents/#get-contents), and I need to update a...

Hi, Could you please add GET /orgs/:org/outside_collaborators ? https://developer.github.com/v3/orgs/outside_collaborators/ It's something like this in orgs.py: ``` def outside_collaborators(self, filter=None, number=-1, etag=None): """Iterate over collaborators of this organization. :param str filter:...

See also https://github.com/kennethreitz/requests/issues/4069 --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/45635123-consider-replacing-requests-with-urllib3?utm_campaign=plugin&utm_content=tracker%2F183477&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F183477&utm_medium=issues&utm_source=github).

As mentioned in https://github.com/sigmavirus24/github3.py/pull/873#discussion_r206640695 we are currently inconsistent in allowing `github3.py` models as arguments: some methods allow it https://github.com/sigmavirus24/github3.py/blob/87af5a1d26597d7cf1a843199a1b5a2449cd8069/src/github3/github.py#L1051-L1070 others don't https://github.com/sigmavirus24/github3.py/blob/87af5a1d26597d7cf1a843199a1b5a2449cd8069/src/github3/repos/repo.py#L698-L716 One way to improve the consistency moving forward...

## Version Information python 3.6 pip 10.0.1 github3.py 1.1.0 requests 2.19.1 uritemplate 3.0.0 dateutil N/A ## Minimum Reproducible Example - Create a branch starts by '#' - try to get...

The Github API supports fetching a repository's README rendered as HTML, i.e. as displayed in the Github web interface. This feature is described here [Contents: custom media types](https://developer.github.com/v3/repos/contents/#custom-media-types). In fact...