gpt4 book ai didi

python - 从转义 html -> 到常规 html? - Python

转载 作者:太空狗 更新时间:2023-10-29 14:45:31 27 4
gpt4 key购买 nike

我使用 BeautifulSoup 来处理通过 REST API 收集的 XML 文件。

响应包含 HTML 代码,但 BeautifulSoup 转义了所有 HTML 标签,因此可以很好地显示。

很遗憾,我需要 HTML 代码。


我将如何继续将转义的 HTML 转换为正确的标记?


非常感谢您的帮助!

最佳答案

我想你想要xml.sax.saxutils.unescape来自 Python 标准库。

例如:

>>> from xml.sax import saxutils as su
>>> s = '<foo>bar</foo>'
>>> su.unescape(s)
'<foo>bar</foo>'

关于python - 从转义 html -> 到常规 html? - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2474971/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com