我可以打印HTML,就像在没有python标签的网页中查看HTML一样吗?
作者:互联网
我想将html打印到文档中,但是我希望将其格式化为可以在网页中查看的格式.
我有以下代码:
from BeautifulSoup import BeautifulSoup, NavigableString
html = """
<B>THIS IS A TABLE</B>
</div>
<center>
<table width="100%" align="center" cellspacing="0" cellpadding="0" border="0" style="font-size: 10pt; margin-top: 6pt; ">
<tr style="font-size: 7pt;">
<td colspan="2" align="left" nowrap><B>THIS IS A HEADER1</B></td>
<td> </td>
<td colspan="3" align="center" nowrap><B> THIS IS A HEADER2</B></td>
<td> </td>
<td colspan="3" align="center" nowrap><B> THIS IS A HEADER3</B></td>
<td> </td>
<td colspan="3" align="center" nowrap><B> THIS IS A HEADER4</B></td>
<td> </td>
</tr>
</table>
"""
soup = BeautifulSoup(''.join(html))
tmp.open('tmp.txt','w')
tmp.write(soup)
tmp.close()
但这会打印出带有标签的html.有什么办法可以在python中做到这一点?
解决方法:
假设您确实确实希望将其编写为文本文件,则可以考虑使用lynx作为html到文本的渲染器.
如果您只想打开编写的html文件,并使它完全像在Web浏览器中一样显示,我建议将其另存为tmp.html并使用Web浏览器打开.
标签:printing,webpage,html,python 来源: https://codeday.me/bug/20191208/2091085.html