我有以下抛出的非常基本的代码; TypeError: the JSON object must be str, not 'bytes'
TypeError: the JSON object must be str, not 'bytes'
import requests import json url = 'my url' user = 'my user' pwd = 'my password' response = requests.get(url, auth=(user, pwd)) if(myResponse.ok): Data = json.loads(myResponse.content)
我尝试将解码设置为Data变量,如下所示,但是会引发相同的错误; jData = json.loads(myResponse.content).decode('utf-8')
jData = json.loads(myResponse.content).decode('utf-8')
有什么建议?
json.loads(myResponse.content.decode('utf-8'))
您只是将其以错误的顺序放置,是无辜的错误。
(深入解答)。正如wim礼貌地指出的那样,在极少数情况下,他们可以选择UTF-16或UTF-32。在这种情况下,对于开发人员而言,这种情况将不那么常见,在这种情况下,他们将有意识地决定放弃宝贵的带宽。因此,如果遇到编码问题,可以将utf-8更改为16、32等。
有两种解决方案。您可以使用请求的内置.json()函数:
.json()
myResponse.json()
或者,您可以选择通过进行字符检测chardet。Chardet是基于研究开发的图书馆。该库具有一个功能:detect。Detect可以检测到最常见的编码,然后使用它们来编码您的字符串。
chardet
detect
import chardet json.loads(myResponse.content.decode(chardet.detect(myResponse.content)["encoding"]))