html2text.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:ExptWizNote 作者: Ext4FAT 项目源码 文件源码
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])
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号