torrents.csv/new_torrents_fetcher/src/cf.py

9 lines
325 B
Python
Raw Normal View History

2019-09-23 22:30:38 +00:00
import cloudscraper
request = "GET / HTTP/1.1\r\n"
2019-09-23 22:30:38 +00:00
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)
2019-05-05 17:59:56 +00:00
print (request)