0001 #!/usr/bin/env python 0002 """ Python Character Mapping Codec for ROT13. 0003 0004 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 0005 0006 Written by Marc-Andre Lemburg (mal@lemburg.com). 0007 0008 """#" 0009 0010 import codecs 0011 0012 ### Codec APIs 0013 0014 class Codec(codecs.Codec): 0015 0016 def encode(self,input,errors='strict'): 0017 0018 return codecs.charmap_encode(input,errors,encoding_map) 0019 0020 def decode(self,input,errors='strict'): 0021 0022 return codecs.charmap_decode(input,errors,decoding_map) 0023 0024 class StreamWriter(Codec,codecs.StreamWriter): 0025 pass 0026 0027 class StreamReader(Codec,codecs.StreamReader): 0028 pass 0029 0030 ### encodings module API 0031 0032 def getregentry(): 0033 0034 return (Codec().encode,Codec().decode,StreamReader,StreamWriter) 0035 0036 ### Decoding Map 0037 0038 decoding_map = codecs.make_identity_dict(range(256)) 0039 decoding_map.update({ 0040 0x0041: 0x004e, 0041 0x0042: 0x004f, 0042 0x0043: 0x0050, 0043 0x0044: 0x0051, 0044 0x0045: 0x0052, 0045 0x0046: 0x0053, 0046 0x0047: 0x0054, 0047 0x0048: 0x0055, 0048 0x0049: 0x0056, 0049 0x004a: 0x0057, 0050 0x004b: 0x0058, 0051 0x004c: 0x0059, 0052 0x004d: 0x005a, 0053 0x004e: 0x0041, 0054 0x004f: 0x0042, 0055 0x0050: 0x0043, 0056 0x0051: 0x0044, 0057 0x0052: 0x0045, 0058 0x0053: 0x0046, 0059 0x0054: 0x0047, 0060 0x0055: 0x0048, 0061 0x0056: 0x0049, 0062 0x0057: 0x004a, 0063 0x0058: 0x004b, 0064 0x0059: 0x004c, 0065 0x005a: 0x004d, 0066 0x0061: 0x006e, 0067 0x0062: 0x006f, 0068 0x0063: 0x0070, 0069 0x0064: 0x0071, 0070 0x0065: 0x0072, 0071 0x0066: 0x0073, 0072 0x0067: 0x0074, 0073 0x0068: 0x0075, 0074 0x0069: 0x0076, 0075 0x006a: 0x0077, 0076 0x006b: 0x0078, 0077 0x006c: 0x0079, 0078 0x006d: 0x007a, 0079 0x006e: 0x0061, 0080 0x006f: 0x0062, 0081 0x0070: 0x0063, 0082 0x0071: 0x0064, 0083 0x0072: 0x0065, 0084 0x0073: 0x0066, 0085 0x0074: 0x0067, 0086 0x0075: 0x0068, 0087 0x0076: 0x0069, 0088 0x0077: 0x006a, 0089 0x0078: 0x006b, 0090 0x0079: 0x006c, 0091 0x007a: 0x006d, 0092 }) 0093 0094 ### Encoding Map 0095 0096 encoding_map = codecs.make_encoding_map(decoding_map) 0097 0098 ### Filter API 0099 0100 def rot13(infile, outfile): 0101 outfile.write(infile.read().encode('rot-13')) 0102 0103 if __name__ == '__main__': 0104 import sys 0105 rot13(sys.stdin, sys.stdout) 0106
Generated by PyXR 0.9.4