File size: 828 Bytes
76bb7cf b4313de b901173 b4313de 9c7f5b3 b4313de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from curl_cffi import requests
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.5',
# 'Accept-Encoding': 'gzip, deflate, br, zstd',
'DNT': '1',
'Sec-GPC': '1',
'Connection': 'keep-alive',
# 'Cookie': 'lang=1',
'Upgrade-Insecure-Requests': '1',
'Sec-Fetch-Dest': 'document',
'Sec-Fetch-Mode': 'navigate',
'Sec-Fetch-Site': 'none',
'Sec-Fetch-User': '?1',
'Priority': 'u=0, i',
# Requests doesn't support trailers
# 'TE': 'trailers',
}
response = requests.get('https://stremio-rev-proxy.h-y.workers.dev/https://supervideo.cc/e/h2ghuu717fc3', headers = headers, impersonate = "chrome136")
print(response) |