Github api v3

From wikinotes

Documentation

official docs https://docs.github.com/en/free-pro-team@latest/rest/guides/getting-started-with-the-rest-api
rest api docs https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28
headers = {'Authorization': 'token ....',
           'User-Agent': 'octocat'}  # alt - program-name
conn = HTTPSConnection(self._domain, 443)
conn.request('GET', '/users/octocat/repos', headers=headers)