我正在嘗試使用CURL's CURLOPT_MAX_RECV_SPEED_LARGE option與pycurl庫。這是我的測試代碼:如何在pycurl和Python中使用CURLOPT_MAX_RECV_SPEED_LARGE選項?
import sys
import pycurl
class Test:
def __init__(self):
self.contents = ''
def body_callback(self, buf):
self.contents = self.contents + buf
print >>sys.stderr, 'Testing', pycurl.version
t = Test()
c = pycurl.Curl()
c.setopt(c.URL, 'http://curl.haxx.se/dev/')
c.setopt(c.WRITEFUNCTION, t.body_callback)
c.setopt(c.CURLOPT_MAX_RECV_SPEED_LARGE, 1024)
c.perform()
c.close()
print t.contents
它產生一個錯誤;似乎沒有爲此選項定義的庫常量。
Traceback (most recent call last):
File "/Users/nilayanand/Documents/workspace/photofeed/photofeed-desktop/test/curl.py", line 18, in <module>
c.setopt(c.CURLOPT_MAX_RECV_SPEED_LARGE, 1024)
AttributeError: CURLOPT_MAX_RECV_SPEED_LARGE
如何在pycurl中使用CURLOPT_MAX_RECV_SPEED_LARGE選項?
解決了這個問題。謝謝傑里米。 –
太棒了!我希望你可以通過點擊左邊的綠色複選標記將其標記爲未來觀衆的解決方案。 –