python-github3
python-github3 copied to clipboard
Python wrapper for GitHub API v3
When trying to `pip3 install pygithub3` I get the following ``` bot@theender:~/EnderBot3/bin$ ./pip3 install pygithub3 Downloading/unpacking pygithub3 Downloading pygithub3-0.5.1.tar.gz Running setup.py (path:/home/znc/EnderBot3/build/pygithub3/setup.py) egg_info for package pygithub3 Traceback (most recent call...
I wrote my test code as follows: ``` from pygithub3 import Github proxies = {"http": "http://:", "https": "http://:", } gh = Github(login=, password=, token=, proxies = proxies) use = gh.users.get()...
Adding a collaborator to a repo returns pygithub3.exceptions.BadRequest: 400 - Problems parsing JSON
I'm trying to add a collaborator to a repo with: ``` gh.repos.collaborators.add("collaborator-name", "name", "repo") ``` but I'm getting: ``` pygithub3.exceptions.BadRequest: 400 - Problems parsing JSON ``` Here is the full...
I try to get the latest release of a repository but i cant figure out how to correctly do this with python-github3? i know hot to get all the releases...
Fork creation fails with Github API v3, because it returns a status code *202 Accepted*: https://developer.github.com/v3/repos/forks/ This PR fixes the client ```post``` method. It is now accepting both 201 and...
This should work on both python 2 and python 3. Both sets of unit tests pass for me.
Hi the Search feature is not implemented yet, anyone is working on it ? because I need this one ASAP : https://developer.github.com/v3/search/#search-users