A Pythonic way of developing GitHub Apps.
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 🔜
🚧 TODO
🚧