比python中的pycurl更快的方法

时间:2017-02-11 13:55:54

标签: python performance pycurl

我想将许多请求发送到代理站点的字符串字段。我写这个剧本:

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中有比这更快的方法吗? (我的连接速度很快)

0 个答案:

没有答案