Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 495 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 495 Bytes

github-app-demo.py

A Pythonic way of developing GitHub Apps.

Examples

from github import App
app = App()

# Get a specific installation of this App
installation = app.get_installation('octocat')

# Get all the repositories associated with installation
repositories = installation.get_repositories()

# :soon:
repository = app.get_repository('octocat/Hello-World')

More 🔜

Get started

🚧 TODO 🚧