Use the full Github API v3
Project description
(Very short) Tutorial
First create a Github instance:
from github import Github
g = Github("user", "password")
Then play with your Github objects:
for repo in g.get_user().get_repos():
print repo.name
repo.edit(has_wiki=False)
You can also create a Github instance with an OAuth token:
g = Github(token)
Or without authentication:
g = Github()
Reference documentation
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
PyGithub-1.36.tar.gz
(2.6 MB
view details)
File details
Details for the file PyGithub-1.36.tar.gz.
File metadata
- Download URL: PyGithub-1.36.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6c1c0c1305b879b6c40b2ba957914b8ad26cd4549ac7a5e21339a0af0307b43
|
|
| MD5 |
9069f569192e62ff2999076c5b643004
|
|
| BLAKE2b-256 |
9d9d79cbefe3e5e8ce0943279eacff92213fcfeb81f75917df4dd0e589dfc86e
|