環境
python3.6.3
windows7
とあるサイトに載っていた画像を保存するコードを試した所
下記の様なエラーが出ました
python
1from PIL import Image 2from selenium import webdriver 3import io 4from urllib import request 5 6 7driverpath="c:/driver/chromedriver.exe" 8driver=webdriver.Chrome(driverpath) 9driver.get('https://itstudio.co/sample/flex-gallery/index.html') 10 11 12elem = driver.find_element_by_class_name('gallery-img') 13elem = elem.find_element_by_tag_name('img') 14url = elem.get_attribute('src') 15f = io.BytesIO(request.urlopen(url).read()) 16img = Image.open(f) 17img.save('./img/img01.jpg') 18 19
Traceback (most recent call last):
File "C:/Users/user/AppData/Local/Programs/Python/Python36-32/スクレイピング/画像2.py", line 17, in <module>
img.save('./img/img01.jpg')
File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\site-packages\PIL\Image.py", line 1966, in save
fp = builtins.open(filename, "w+b")
FileNotFoundError: [Errno 2] No such file or directory: './img/img01.jpg'
エラー箇所は最終行のimg.saveの所みたいで
内容は恐らく保存先のフォルダが無いという事なんでしょうが
例えばデスクトップに「画像」という名前のフォルダを作った場合img.saveの()内には
何とパスを入れればいいんでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。