torrents.csv/new_torrents_fetcher/src/cf.py

9 lines
325 B
Python

import cloudscraper
request = "GET / HTTP/1.1\r\n"
cookie_value, user_agent = cloudscraper.get_cookie_string("https://itorrents.org/torrent/B415C913643E5FF49FE37D304BBB5E6E11AD5101.torrent")
request += "Cookie: %s\r\nUser-Agent: %s\r\n" % (cookie_value, user_agent)
# cookie = "Cookie: %s" % (cookie_value)
print (request)