A python client for the GitHub API
Project description
GhApi
A delightful and complete interface to GitHub's amazing API
GhApi
provides 100% always-updated coverage of the entire GitHub API. Because we automatically convert the OpenAPI spec to a Pythonic API, GhApi
is always up to date with the latest changes to GitHub APIs.
Using GhApi
, you can do anything that you can do through the GitHub web interface or through the git
client, such as:
- Open, list, comment on, or modify issues or pull requests
- Create, list, or modify git tags or GitHub releases, including uploading release assets
- Configure and run GitHub Actions and webhooks
- Set up GitHub users and organizations
- Manage your deployments
- ...and much, much more.
Install
Either pip install ghapi
or conda install -c fastai ghapi
.
How to use
Throughout this documentation, you will see code inputs and outputs shown in this format:
1+1
2
We recommend reading the documentation on the official site, rather than on GitHub, since not all the functionality described on this page is available through the GitHub viewer.
All of the documentation is available directly as Jupyter Notebooks, for instance the current page you're reading is available as a notebook here. To open any page as an interactive notebook in Google Colab, click the Colab badge at the top of the page.
To access the GitHub API, first create a GhApi
object:
api = GhApi()
Every part of the API includes documentation directly in the api
object itself. For instance, here's how to explore the groups of functionality provided by the API by displaying the object:
api
- apps
- oauth-authorizations
- codes-of-conduct
- emojis
- enterprise-admin
- billing
- activity
- gists
- gitignore
- issues
- licenses
- markdown
- meta
- orgs
- actions
- interactions
- migrations
- projects
- repos
- teams
- reactions
- rate-limit
- checks
- code-scanning
- git
- pulls
- scim
- search
- users
Then we can explore the endpoints provided by the API in each group, e.g. for the git
group:
api.git
- create_blob
- get_blob
- create_commit
- get_commit
- list_matching_refs
- get_ref
- create_ref
- update_ref
- delete_ref
- create_tag
- get_tag
- create_tree
- get_tree
Here's how to learn about an endpoint you want to use, e.g.:
api.git.get_ref
git/get_ref(ref, repo, owner): Get a reference
In Jupyter Notebook full tab completion, parameter lists, etc are provided for all endpoints. Endpoints are called as standard Python methods:
api.git.get_ref(owner='fastai', repo='fastcore', ref='heads/master')
- ref: refs/heads/master
- node_id: MDM6UmVmMjI1NDYwNTk5OnJlZnMvaGVhZHMvbWFzdGVy
- url: https://api.github.com/repos/fastai/fastcore/git/refs/heads/master
- object:
- sha: 0b188e9a4f200c5ad93c692bb10aa6e7ceb10d4c
- type: commit
- url: https://api.github.com/repos/fastai/fastcore/git/commits/0b188e9a4f200c5ad93c692bb10aa6e7ceb10d4c
For access to authenticated endpoints, pass a GitHub token. You can also pass any parameters you want auto-inserted into relevant methods, such as owner
and repo
:
api = GhApi(owner='fastai', repo='fastcore', token=github_token)
We can now repeat the previous method, but only need to pass ref
:
api.git.get_ref('heads/master')
- ref: refs/heads/master
- node_id: MDM6UmVmMjI1NDYwNTk5OnJlZnMvaGVhZHMvbWFzdGVy
- url: https://api.github.com/repos/fastai/fastcore/git/refs/heads/master
- object:
- sha: 0b188e9a4f200c5ad93c692bb10aa6e7ceb10d4c
- type: commit
- url: https://api.github.com/repos/fastai/fastcore/git/commits/0b188e9a4f200c5ad93c692bb10aa6e7ceb10d4c
Now that we've provided our token, we can use authenticated endpoints such as creating an issue:
issue = api.issues.create("Remember to check out GhApi!")
Since we've now checked out GhApi, let's close this issue. 😎
api.issues.update(issue.number, state='closed')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ghapi-0.1.0.tar.gz
.
File metadata
- Download URL: ghapi-0.1.0.tar.gz
- Upload date:
- Size: 34.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200925 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c6723e9ac11b4080ee766e89d6ae84c51f139771d07b94308aa3bab56b757f9 |
|
MD5 | d36d68834ad1c3d700deef935e9c0b19 |
|
BLAKE2b-256 | c57a4862c24df6b457de67573bf62bec3a732fd538bbb731b78d4ec5f1c32029 |
File details
Details for the file ghapi-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: ghapi-0.1.0-py3-none-any.whl
- Upload date:
- Size: 31.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200925 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1244b24060f3a9458c64502f1fe43bf96fdb54f7d2d2d7b967d5fac34e61609c |
|
MD5 | f01f0a08b285962b5bf8c4fe61e6a7f8 |
|
BLAKE2b-256 | 7b5f21eba0872540bfaaf22a098245af6bdfc7d76e1c5e4409411b38ba12fbf4 |