前提・実現したいこと
フォルダとファイルを作ってウェブ上の画像を書き出して保存しました。ところがWindowsのエクスプローラーにそのフォルダが見つかりません。どうやったら保存した画像を見れるのでしょうか。初歩的な質問ですがご回答お願いします。
該当のソースコード
Python
1import requests 2from pathlib import Path 3 4out_folder=Path('download') 5out_folder.mkdir(exist_ok=True) 6 7image_url='(画像のURL)' 8imgdata=requests.get(image_url) 9 10filename=image_url.split('/')[-1] 11out_path=out_folder.joinpath(filename) 12 13with open(out_path,mode='wb') as f: 14 f.write(imgdata.content)
※GoogleColaboratoryを使いました。
回答1件
あなたの回答
tips
プレビュー