我正在開發一個下載管理器。使用python中的requests模塊來檢查一個有效的鏈接(希望破解的鏈接)。 我對下面的檢查鏈接代碼:現在python請求很慢
url='http://pyscripter.googlecode.com/files/PyScripter-v2.5.3-Setup.exe'
r = requests.get(url,allow_redirects=False) #this line takes 40 seconds
if r.status_code==200:
print "link valid"
else:
print "link invalid"
,問題是這需要大約40秒鐘,進行這種檢查,這是巨大的。 我的問題是我怎麼能加快這可能使用urllib2或東西?
注意:另外,如果我將url
替換爲「http://pyscripter.googlecode.com/files/PyScripter-v2.5.3-Setup.exe」的實際URL,則需要一秒鐘的時間,因此這似乎是請求的問題。
嘿謝謝doukremt ...事實上,它顯示404即使在某些情況下該項目在那裏......謝謝! – scandalous