参考動画こちら動画の7:18程度pillowをインポートできないので、ご教授お願いいたいします。
エラーコード
python
1from pil import image 2import io
python
1---------------------------------------------------------------------- 2ModuleNotFoundError Traceback (most recent call last) 3<ipython-input-28-758d4a8cb280> in <module> 4----> 1 from pil import image 5 2 import io 6 7ModuleNotFoundError: No module named 'pil' 8
一連のコード
python
1import requests 2from bs4 import BeautifulSoup
python
1url = 'https://scraping-for-beginner.herokuapp.com/image' 2res = requests.get(url)
python
1res 2↓ 3<Response [200]>
python
1soup = BeautifulSoup(res.text, 'html.parser') 2soup
python
1img_tag = soup.find('img') 2img_tag['src']
python
1root_url = 'https://scraping-for-beginner.herokuapp.com' 2img_url = root_url + img_tag['src'] 3img_url
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。