-1
我想使用Beautifulsoup修改HTML的整個div
。我試圖修改HTML,但是控制檯輸出有修改,但實際的.html文檔本身沒有修改。沒有新的HTML被創建。使用BeautifulSoup修改HTML
有人可以幫助我嗎?
from bs4 import BeautifulSoup,Tag
import re
import urllib2
import os.path
base=os.path.dirname(os.path.abspath(__file__))
html=open(os.path.join(base,'example.html'))
soup=BeautifulSoup(html,'html.parser')
for i in soup.find('div',{"id":None}).findChildren():
l=str(i);
print l
print l.replace(l,'##')
你嘗試保存該文件? 'from __future__ import print_function print(「hi there」,file = f)' – paragbaxi