pythonで青空文庫から小説のデータを取得して、本文のテキストを表示させたいと思って
います。以下のソースコードで実行しますと、本文が文字化けしていまいます。
どのようなコードが必要でしょうか。
よろしくお願いします。
import requests
from bs4 import BeautifulSoup
res=requests.get('https://www.aozora.gr.jp/cards/000148/files/789_14547.html')
html_doc = res.text
soup = BeautifulSoup(html_doc, 'html.parser')
main_text = soup.find('div', class_='main_text')
print(main_text)
回答2件
あなたの回答
tips
プレビュー