VIPでテキストサイト
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
import requestsfrom bs4 import BeautifulSoup# URL指定url = "https://www.hellowork.mhlw.go.jp/index.html"# Responseオブジェクト生成response = requests.get('https://www.hellowork.mhlw.go.jp/index.html')# 文字化け防止response.encoding = response.apparent_encoding# BeautifulSoupオブジェクト生成soup = BeautifulSoup(response.text, "html.parser")a = soup.divwith open('text.txt', mode='w', encoding = 'utf-8') as fw:for t in a:print(a.get_text())elm = a.get_text()fw.write(elm)