Apr-30-2020, 09:42 PM
import os try: from torrequest import TorRequest except: os.system("pip install torrequest && clear") from torrequest import TorRequest with TorRequest(password='Risk1234') as tr: headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0"} a = str(input("URL - ")) x = int(input("Amount - ")) def run(): for i in range(x): tr.reset_identity() response= tr.get(a) print(i+1) run()after running this code i got some errors. please help me to solve these errors.

