码迷,mamicode.com
首页 > 编程语言 > 详细

python进行base64编解码

时间:2014-12-11 15:46:02      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   sp   on   div   log   

[转]

直接上代码

import base64
fin = open(r"D:\2.zip", "rb")
fout = open(r"D:\2.x.txt", "w")
base64.encode(fin, fout)
fin.close()
fout.close()

fin = open(r"D:\2.x.txt", "r")
fout = open(r"D:\2.x.zip", "wb")
base64.decode(fin, fout)
fin.close()
fout.close()

另外

    decode(input, output)
        Decode a file.
    
    decodestring(s)
        Decode a string.
    
    encode(input, output)
        Encode a file.
    
    encodestring(s)
        Encode a string into multiple lines of base-64 data.

 

python进行base64编解码

标签:des   style   blog   color   os   sp   on   div   log   

原文地址:http://www.cnblogs.com/fatterbetter/p/4157659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!