New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pygithub-redux

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pygithub-redux

Use the full Github API v3

1.33.0
PyPI
Maintainers
1

(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

See http://pygithub.github.io/PyGithub/v1/index.html

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts