Skip to content

Instantly share code, notes, and snippets.

View lavafrai's full-sized avatar

lavafrai

View GitHub Profile
@lavafrai
lavafrai / neuro.py
Created April 17, 2024 12:43
Working on the reverse engineering of Yandex Neuro
import requests
import time
SESSION_ID = "..."
def req(endpoint, body):
resp = requests.post(
url=f"https://ya.ru{endpoint}",
headers={"Host": "ya.ru", "Content-Type": "application/json"},