我想将许多请求发送到代理站点的字符串字段。我写这个剧本:
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)
但我认为这是一种缓慢的方法,其速度约为1 req / sec。在python中有比这更快的方法吗? (我的连接速度很快)