大家好新手發問
程式碼
import requests
url =
"https://www.sec.gov/Archives/edgar/data/320193/000032019320000096\
/aapl-20200926_htm.xml"
r = requests.get(url, timeout=(60, 60))
with open('A:/aapl-20200926_htm.xml', 'wt', encoding="utf-8") as f:
f.write(r.text)
f.close()
r.close()
我想在sec網站下載資料檔案,但是光是這個單一連結,我執行十次,就有二,三次會
變成只有5KB的檔案,每次手動執行都有間隔相當時間避開request限制
https://i.stack.imgur.com/hBKiL.jpg
我在RAM disk,USB 都試過,timeout加大變小,都會發生
環境是vs code , python 3.8
請問是哪裡沒弄好,先謝謝了