I want to send many requests to a string field of a proxy site. I write this script:
import pycurl
i = 0
c = pycurl.Curl()
c.setopt(c.URL, 'http://proxysite/index.php?q=test')
while True:
c.perform()
i += 1
print ('Num of REQ = ', i)
But I think this is a slow method and its speed is approximately 1 req/sec. Is there a faster method than this in python? (My connection speed is good)