8 lines
277 B
Python
8 lines
277 B
Python
import os
|
|
import requests
|
|
|
|
TOKEN = os.getenv("GIT_VYATSU_TOKEN") # токен через переменную окружения
|
|
headers = {"Authorization": f"token {TOKEN}"}
|
|
|
|
response = requests.get("https://git.vyatsu.ru/api/v1/user", headers=headers)
|
|
print(response.json()) |