import requests from bs4 import BeautifulSoup url = 'https://search.rakuten.co.jp/search/keyword/' res = requests.get(url) soup = BeautifulSoup(res.content, 'html.parser')
を実行すると、以下のエラーが表示されます。
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
文字コードが良くないのだと思いますが、原因がわかりません。。
response.encoding = response.apparent_encoding
では解消しませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/08 06:12
退会済みユーザー
2021/05/08 07:16
2021/05/08 09:29
退会済みユーザー
2021/05/08 11:21