當前位置: 首頁>>代碼示例>>Python>>正文


Python entities.entitydefs方法代碼示例

本文整理匯總了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]) 
開發者ID:schollz,項目名稱:extract_recipe,代碼行數:10,代碼來源:extract_recipe.py

示例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 
開發者ID:Vayn,項目名稱:acmpv,代碼行數:7,代碼來源:strings.py

示例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) 
開發者ID:web2py,項目名稱:yatl,代碼行數:9,代碼來源:sanitizer.py

示例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 
開發者ID:evilbinary,項目名稱:robot,代碼行數:10,代碼來源:_fetchtitle.py


注:本文中的html.entities.entitydefs方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。