我正在做一些网页抓取,网站经常使用 HTML 实体来表示非 ascii 字符。Python 是否有一个实用程序可以接收带有 HTML 实体的字符串并返回 unicode 类型?
例如:
我回来了:
ǎ
代表一个带声调的“ǎ”。在二进制中,这表示为 16 位 01ce。我想将 html 实体转换为值 u'\u01ce'
Python 有htmlentitydefs模块,但它不包括对 HTML 实体进行转义的函数。
Python 开发人员 Fredrik Lundh(elementtree 的作者等)在他的网站上有这样一个函数,它适用于十进制、十六进制和命名实体:
import re, htmlentitydefs
##
# Removes HTML or XML character references and entities from a text string.
#
# @param text The HTML (or XML) source text.
# @return The plain text, as a Unicode string, if necessary.
def unescape(text):
def fixup(m):
text = m.group(0)
if text[:2] == "&#":
# character reference
try:
if text[:3] == "&#x":
return unichr(int(text[3:-1], 16))
else:
return unichr(int(text[2:-1]))
except ValueError:
pass
else:
# named entity
try:
text = unichr(htmlentitydefs.name2codepoint[text[1:-1]])
except KeyError:
pass
return text # leave as is
return re.sub("&#?\w+;", fixup, text)
标准库自己的 HTMLParser 有一个未记录的函数 unescape() ,它完全按照你的想法做:
直到 Python 3.4:
import HTMLParser
h = HTMLParser.HTMLParser()
h.unescape('© 2010') # u'\xa9 2010'
h.unescape('© 2010') # u'\xa9 2010'
Python 3.4+:
import html
html.unescape('© 2010') # u'\xa9 2010'
html.unescape('© 2010') # u'\xa9 2010'
使用内置unichr
- BeautifulSoup 不是必需的:
>>> entity = 'ǎ'
>>> unichr(int(entity[3:],16))
u'\u01ce'
如果您使用的是 Python 3.4 或更高版本,则可以简单地使用html.unescape
:
import html
s = html.unescape(s)
另一种选择,如果你有 lxml:
>>> import lxml.html
>>> lxml.html.fromstring('ǎ').text
u'\u01ce'
您可以在这里找到答案——从网页中获取国际字符?
编辑:似乎BeautifulSoup
不转换以十六进制形式编写的实体。可以修复:
import copy, re
from BeautifulSoup import BeautifulSoup
hexentityMassage = copy.copy(BeautifulSoup.MARKUP_MASSAGE)
# replace hexadecimal character reference by decimal one
hexentityMassage += [(re.compile('&#x([^;]+);'),
lambda m: '&#%d;' % int(m.group(1), 16))]
def convert(html):
return BeautifulSoup(html,
convertEntities=BeautifulSoup.HTML_ENTITIES,
markupMassage=hexentityMassage).contents[0].string
html = '<html>ǎǎ</html>'
print repr(convert(html))
# u'\u01ce\u01ce'
编辑:
unescape()
@dF提到的函数使用 htmlentitydefs
标准模块,unichr()
在这种情况下可能更合适。
这是一个可以帮助您正确处理并将实体转换回 utf-8 字符的函数。
def unescape(text):
"""Removes HTML or XML character references
and entities from a text string.
@param text The HTML (or XML) source text.
@return The plain text, as a Unicode string, if necessary.
from Fredrik Lundh
2008-01-03: input only unicode characters string.
http://effbot.org/zone/re-sub.htm#unescape-html
"""
def fixup(m):
text = m.group(0)
if text[:2] == "&#":
# character reference
try:
if text[:3] == "&#x":
return unichr(int(text[3:-1], 16))
else:
return unichr(int(text[2:-1]))
except ValueError:
print "Value Error"
pass
else:
# named entity
# reescape the reserved characters.
try:
if text[1:-1] == "amp":
text = "&amp;"
elif text[1:-1] == "gt":
text = "&gt;"
elif text[1:-1] == "lt":
text = "&lt;"
else:
print text[1:-1]
text = unichr(htmlentitydefs.name2codepoint[text[1:-1]])
except KeyError:
print "keyerror"
pass
return text # leave as is
return re.sub("&#?\w+;", fixup, text)
不知道为什么堆栈溢出线程不包含';' 在搜索/替换中(即 lambda m: '&#%d* ; *') 39 停电)。
这对我来说效果更好:
import re
from BeautifulSoup import BeautifulSoup
html_string='<a href="/cgi-bin/article.cgi?f=/c/a/2010/12/13/BA3V1GQ1CI.DTL"title="">'Blackout in a can; on some shelves despite ban</a>'
hexentityMassage = [(re.compile('&#x([^;]+);'),
lambda m: '&#%d;' % int(m.group(1), 16))]
soup = BeautifulSoup(html_string,
convertEntities=BeautifulSoup.HTML_ENTITIES,
markupMassage=hexentityMassage)
另一个解决方案是内置库 xml.sax.saxutils(用于 html 和 xml)。但是,它只会转换 >、& 和 <。
from xml.sax.saxutils import unescape
escaped_text = unescape(text_to_escape)
这是dF 答案的 Python 3 版本:
import re
import html.entities
def unescape(text):
"""
Removes HTML or XML character references and entities from a text string.
:param text: The HTML (or XML) source text.
:return: The plain text, as a Unicode string, if necessary.
"""
def fixup(m):
text = m.group(0)
if text[:2] == "&#":
# character reference
try:
if text[:3] == "&#x":
return chr(int(text[3:-1], 16))
else:
return chr(int(text[2:-1]))
except ValueError:
pass
else:
# named entity
try:
text = chr(html.entities.name2codepoint[text[1:-1]])
except KeyError:
pass
return text # leave as is
return re.sub("&#?\w+;", fixup, text)
主要的变化关注htmlentitydefs
的是现在html.entities
和unichr
现在chr
。请参阅此Python 3 移植指南。