下記の画像取得を行う処理で、
status code = 400のときは何もせず終了
それ以外はretry処理をする
といった実装を組み込みたいのですが、書き方がわからずご教授いただけないでしょうか。
Python
1 2from retry import retry 3 4@retry(tries=30, delay=10) 5def download_file(url, dst_path): 6 with urllib.request.urlopen(url) as web_file, open(dst_path, 'wb') as local_file: 7 local_file.write(web_file.read())
上記処理で、status code = 400のときは何もせず終了を組み込みたいです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。