Files
tools/executor/octokit.py
T

13 lines
239 B
Python
Raw Normal View History

2026-03-21 13:12:45 +03:00
__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()