From c5c1f5899e975c86639078e672fd3511b68edc2c Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sat, 21 Mar 2026 13:12:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20executor/octokit.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/octokit.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 executor/octokit.py diff --git a/executor/octokit.py b/executor/octokit.py new file mode 100644 index 0000000..2530df8 --- /dev/null +++ b/executor/octokit.py @@ -0,0 +1,12 @@ +__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()