本文整理匯總了Python中html.entities.entitydefs方法的典型用法代碼示例。如果您正苦於以下問題:Python entities.entitydefs方法的具體用法?Python entities.entitydefs怎麽用?Python entities.entitydefs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類html.entities
的用法示例。
在下文中一共展示了entities.entitydefs方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: name2cp
# 需要導入模塊: from html import entities [as 別名]
# 或者: from html.entities import entitydefs [as 別名]
def name2cp(k):
if k == 'apos': return ord("'")
if hasattr(htmlentitydefs, "name2codepoint"): # requires Python 2.3
return htmlentitydefs.name2codepoint[k]
else:
k = htmlentitydefs.entitydefs[k]
if k.startswith("&#") and k.endswith(";"): return int(k[2:-1]) # not in latin-1
return ord(codecs.latin_1_decode(k)[0])
示例2: unescape_html
# 需要導入模塊: from html import entities [as 別名]
# 或者: from html.entities import entitydefs [as 別名]
def unescape_html(string):
'''HTML entity decode'''
string = re.sub(r'&#[^;]+;', _sharp2uni, string)
string = re.sub(r'&[^;]+;', lambda m: entitydefs[m.group(0)[1:-1]], string)
return string
示例3: handle_entityref
# 需要導入模塊: from html import entities [as 別名]
# 或者: from html.entities import entitydefs [as 別名]
def handle_entityref(self, ref):
if self.in_disallowed[-1]:
return
elif ref in entitydefs:
self.result += '&%s;' % ref
else:
self.result += xmlescape('&%s' % ref)
示例4: _mapEntity
# 需要導入模塊: from html import entities [as 別名]
# 或者: from html.entities import entitydefs [as 別名]
def _mapEntity(m):
name = _extract_entity_name(m)
if name.startswith('#'):
return _sharp2uni(name)
try:
return _entities[name]
except KeyError:
return '&' + name