我有一个存储json值的变量。我想用Python进行base64编码。但是抛出错误"不支持缓冲区接口"。我知道Base64需要一个字节来转换。但由于我是Python中的Newbee,不知道如何将json转换为base64编码的字符串。有没有直接的方法可以做到这一点??
在Python3.x中,您需要将str
对象转换为bytes
对象,以便base64
能够对它们进行编码。您可以使用str.encode
方法:
>>> import json
>>> import base64
>>> d = {"alg": "ES256"}
>>> s = json.dumps(d) # Turns your json dict into a str
>>> print(s)
{"alg": "ES256"}
>>> type(s)
<class 'str'>
>>> base64.b64encode(s)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.2/base64.py", line 56, in b64encode
raise TypeError("expected bytes, not %s" % s.__class__.__name__)
TypeError: expected bytes, not str
>>> base64.b64encode(s.encode('utf-8'))
b'eyJhbGciOiAiRVMyNTYifQ=='
如果将your_str_object.encode('utf-8')
的输出传递给base64
模块,则应该能够对其进行正确编码。
这篇关于Base 64在Python中对JSON变量进行编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!