Pythonでbase64エンコードとデコードサンプルプログラム
サンプルコード1:
#-*- encoding:utf8-*-
import base64
import StringIO
a = “this is a test"
b = base64.encodestring(a) # 文字列をエンコード
print b
print base64.decodestring(b) # 文字列をデコード
c = StringIO.StringIO()
c.write(a)
d = StringIO.StringIO()
e = StringIO.StringIO()
c.seek(0)
base64.encode(c, d) # StringIOのデータをエンコード
print d.getvalue()
d.seek(0)
base64.decode(d, e) #StringIOのデータをデコード
print e.getvalue()
a = “this is a +test"
b = base64.urlsafe_b64encode(a) # URLの文字列をエンコードする
print b
print base64.urlsafe_b64decode(b)
サンプルコード2:
f1 = open('aaa.txt’, 'r’)
f2 = open('bbb.txt’, 'w’)
base64.encode(f1, f2)
f1.close()
f2.close()