web-dev-qa-db-ja.com

Python urllib?でファイルのダウンロードをタイムアウトします。

Python初心者はこちら。プロセスに500秒以上かかる場合は、ビデオファイルのダウンロードをタイムアウトできるようにしたいと思います。

import urllib
try:
   urllib.urlretrieve ("http://www.videoURL.mp4", "filename.mp4")
except Exception as e:
   print("error")

それを実現するためにコードを修正するにはどうすればよいですか?

12
Ned Hulton

より良い方法は、requestsを使用して、結果をストリーミングし、タイムアウトを簡単に確認できるようにすることです。

import requests

# Make the actual request, set the timeout for no data to 10 seconds and enable streaming responses so we don't have to keep the large files in memory
request = requests.get('http://www.videoURL.mp4', timeout=10, stream=True)

# Open the output file and make sure we write in binary mode
with open('filename.mp4', 'wb') as fh:
    # Walk through the request response in chunks of 1024 * 1024 bytes, so 1MiB
    for chunk in request.iter_content(1024 * 1024):
        # Write the chunk to the file
        fh.write(chunk)
        # Optionally we can check here if the download is taking too long
11
Wolph

urlretrieveにはそのオプションはありません。ただし、urlopenを使用して例を簡単に実行し、次のように結果をファイルに書き込むことができます。

request = urllib.urlopen("http://www.videoURL.mp4", timeout=500)
with open("filename.mp4", 'wb') as f:
    try:
        f.write(request.read())
    except:
        print("error")

Python 3. Python 2を使用している場合は、urllib2を使用する必要があります。

2
Djizeus