美しいスープを試しています。私はそれをテキストファイルに書き出したいと思います。美しいスープ - テキストファイルにエクスポート
result.txt
のファイル名をテキストに変更する方法soup.find(class_="entry-title").get_text()
?
ありがとうございます。
from bs4 import BeautifulSoup as bs
import urllib.request
#getting the page.
url = urllib.request.urlopen('http://www.haripuisi.com/arsip/3163').read()
soup = bs(url, 'lxml')
#extracting the content.
print (soup.find(class_="entry-title").get_text())
print (soup.find(class_="entry-content").get_text())
#save into text file.
save_file = open(r'C:\Users\Denis\Desktop\tempting texting\result.txt', 'w')
save_file.write(soup.find(class_="entry-content").get_text())
save_file.close()
あるどのような問題をあなたはこの解決策に直面していますか? –
が問題を発見しました。ファイルを保存するには、タイトルの ":"文字を別の文字に置き換える必要があります。 – denis2887