0
PythonのPyCurl(libcurl)モジュール内で再試行オプションを実装するにはどうすればよいですか?効果に似たもの:5 'http://somesite.com/somefile'PyCurlで再試行オプションを実装する方法
カール--retry 3 --retry遅延
現在のコード:
buffer = BytesIO()
c = pycurl.Curl()
c.setopt(c.URL, 'http://somesite.com/somefile')
with open('output.txt','w') as f:
c.setopt(c.WRITEFUNCTION, f.write)
c.perform()