python base64转字节流
时间: 2023-10-25 18:08:45 浏览: 258
base64转码
可以使用 base64 模块的 b64decode 方法将 base64 编码的字符串转换为字节流,示例如下:
```python
import base64
base64_str = "bGVsbG8gd29ybGQ="
byte_stream = base64.b64decode(base64_str)
print(byte_stream)
```
输出结果为:
```
b'hello world'
```
阅读全文