gpt4 book ai didi

python - 向python添加编码别名

转载 作者:太空狗 更新时间:2023-10-30 01:49:49 27 4
gpt4 key购买 nike

有没有一种方法可以为 python 添加别名以进行编码。网络上有些网站使用编码“windows-1251”,但其字符集设置为 win-1251,因此我希望 win-1251 成为 windows-1251 的别名

最佳答案

encodings 模块没有很好的文档记录,所以我会改用 codecsis :

import codecs

def encalias(oldname, newname):
old = codecs.lookup(oldname)
new = codecs.CodecInfo(old.encode, old.decode,
streamreader=old.streamreader,
streamwriter=old.streamwriter,
incrementalencoder=old.incrementalencoder,
incrementaldecoder=old.incrementaldecoder,
name=newname)
def searcher(aname):
if aname == newname:
return new
else:
return None
codecs.register(searcher)

这是 Python 2.6——界面与早期版本不同。

如果您不介意依赖特定版本的未记录内部结构,@Lennart 的别名方法当然也可以 - 而且确实比这更简单;-)。但我怀疑(正如他所表现的那样)这个更易于维护。

关于python - 向python添加编码别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1064086/

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