base64模块 简单了解

Posted pywjh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了base64模块 简单了解相关的知识,希望对你有一定的参考价值。

base64,字符串文本编码解码,方便数据进行传输

 1 import base64
 2 ‘‘‘编码解码‘‘‘
 3 st = ni hao.encode(utf8)
 4 result = base64.b64encode(st)
 5 print(result)   # b‘bmkgaGFv‘
 6 
 7 result = base64.b64decode(result)
 8 print(result)   # b‘ni hao‘
 9 print(result.decode(utf8))    # ni hao
10 
11 
12 
13 url = https://www.baidu.com.encode(utf8)
14 result = base64.urlsafe_b64encode(url)
15 print(result)   # b‘aHR0cHM6Ly93d3cuYmFpZHUuY29t‘
16 
17 result = base64.urlsafe_b64decode(result)
18 print(result.decode(utf8))    # https://www.baidu.com

 

以上是关于base64模块 简单了解的主要内容,如果未能解决你的问题,请参考以下文章

将base64编码的Textmate片段过滤回文本

base64模块

Python常用模块 之 base64模块

四十三 常用内建模块 base64

C#解码base64编码的二进制数据的代码

python 常用内建模块 base64