You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
233 B
Python
7 lines
233 B
Python
|
3 days ago
|
import requests, json
|
||
|
|
|
||
|
|
response = requests.head("https://striphub.cam/play/68f652a162f66877cc80c920")
|
||
|
|
|
||
|
|
with open("pahe_headers.txt", "w", encoding="utf-8") as f:
|
||
|
|
json.dump(dict(response.headers), f, indent=4, ensure_ascii=False)
|