github

An asynchronous python wrapper around the GitHub API


License
MIT
Install
pip install github==1.2.7

Documentation

Github API Wrapper

Discord Server Invite

Easy to use Python wrapper for the Github API.

Key Features

  • Modern Pythonic Interface
  • Easy to use

Installing

Python 3.8 or higher is required to run the library

To install the library, run the following command:

# On Linux or MacOS
python3 -m pip install -U git+https://github.com/VarMonke/Github-Api-Wrapper

# On Windows
py -m pip install -U git+https://github.com/VarMonke/Github-Api-Wrapper

Quick Example

import github
import asyncio

async def main():
  client = await github.GHClient()

  user = await client.get_user(user='GithubPythonBot')

  print(user)
  print(user.html_url)

asyncio.run(main())

Links