本文整理匯總了Python中codecs.make_encoding_map方法的典型用法代碼示例。如果您正苦於以下問題:Python codecs.make_encoding_map方法的具體用法?Python codecs.make_encoding_map怎麽用?Python codecs.make_encoding_map使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類codecs
的用法示例。
在下文中一共展示了codecs.make_encoding_map方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _256_exception_codec
# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import make_encoding_map [as 別名]
def _256_exception_codec(name,exceptions,rexceptions,baseRange=range(32,256)):
import codecs
decoding_map = codecs.make_identity_dict(baseRange)
decoding_map.update(exceptions)
encoding_map = codecs.make_encoding_map(decoding_map)
if rexceptions: encoding_map.update(rexceptions)
### Codec APIs
class Codec(codecs.Codec):
def encode(self,input,errors='strict',charmap_encode=codecs.charmap_encode,encoding_map=encoding_map):
return charmap_encode(input,errors,encoding_map)
def decode(self,input,errors='strict',charmap_decode=codecs.charmap_decode,decoding_map=decoding_map):
return charmap_decode(input,errors,decoding_map)
class StreamWriter(Codec,codecs.StreamWriter):
pass
class StreamReader(Codec,codecs.StreamReader):
pass
C = Codec()
return codecs.CodecInfo(C.encode,C.decode,streamreader=StreamReader,streamwriter=StreamWriter,name=name)
示例2: _256_exception_codec
# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import make_encoding_map [as 別名]
def _256_exception_codec(xt):
exceptions,rexceptions = xt
import codecs
decoding_map = codecs.make_identity_dict(xrange(32,256))
decoding_map.update(exceptions)
encoding_map = codecs.make_encoding_map(decoding_map)
if rexceptions: encoding_map.update(rexceptions)
### Codec APIs
class Codec(codecs.Codec):
def encode(self,input,errors='strict',charmap_encode=codecs.charmap_encode,encoding_map=encoding_map):
return charmap_encode(input,errors,encoding_map)
def decode(self,input,errors='strict',charmap_decode=codecs.charmap_decode,decoding_map=decoding_map):
return charmap_decode(input,errors,decoding_map)
class StreamWriter(Codec,codecs.StreamWriter):
pass
class StreamReader(Codec,codecs.StreamReader):
pass
C = Codec()
return (C.encode,C.decode,StreamReader,StreamWriter)