使用Python编辑和创建HTML文件

使用Python编辑和创建HTML文件,第1张

使用Python编辑和创建HTML文件

您可能想阅读BeautifulSoup:

import bs4# load the filewith open("existing_file.html") as inf:    txt = inf.read()    soup = bs4.BeautifulSoup(txt)# create new linknew_link = soup.new_tag("link", rel="icon", type="image/png", href="img/tor.png")# insert it into the documentsoup.head.append(new_link)# save the file againwith open("existing_file.html", "w") as outf:    outf.write(str(soup))

给定一个像

<html><head>  <title>Test</title></head><body>  <p>What's up, Doc?</p></body></html>

这产生

<html><head><title>Test</title><link href="img/tor.png" rel="icon" type="image/png"/></head><body><p>What's up, Doc?</p></body></html>

(注意:它已经给空白加上了小节,但是html结构正确了)。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5096294.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存