[python] base64使用方法
调用 base64
import base64
编码 & 解码
base64.b64encode(value) #编码
base64.d64encode(value) #解码
参考文献
python 文档:
https://docs.python.org/zh-cn/3.5/library/base64.html
import base64
base64.b64encode(value) #编码
base64.d64encode(value) #解码
python 文档:
https://docs.python.org/zh-cn/3.5/library/base64.html