Код завершен

This commit is contained in:
2026-05-07 00:57:53 +03:00
parent d4adcb5473
commit 86938a9ffa
3 changed files with 6 additions and 0 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
import requests
from config import token
headers = {"Authorization": f"token {token}"}
response = requests.get("https://git.vyatsu.ru/api/v1/user", headers=headers)
print(response.json())
View File