13 lines
239 B
Python
13 lines
239 B
Python
|
|
__author__ = 'RemiZOffAlex'
|
||
|
|
__email__ = 'remizoffalex@mail.ru'
|
||
|
|
|
||
|
|
import requests
|
||
|
|
|
||
|
|
|
||
|
|
class Octokit:
|
||
|
|
def __init__(self):
|
||
|
|
self.headers = {}
|
||
|
|
|
||
|
|
def _get(self, url, headers: {}):
|
||
|
|
response = requests.get(url, headers).json()
|