torrents.csv/new_torrents_fetcher/src/cf.py

9 lines
317 B
Python
Raw Normal View History

2019-09-07 06:01:52 +00:00
import cfscrape
request = "GET / HTTP/1.1\r\n"
2019-09-07 06:01:52 +00:00
cookie_value, user_agent = cfscrape.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)