Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TypeError: the JSON object must be str, not 'bytes'

Tags:

python

json

I have the following, very basic code that throws; 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) 

I try to set decode to the Data variable, as follows but it throws the same error; jData = json.loads(myResponse.content).decode('utf-8')

Any suggestions?

like image 608
FunnyChef Avatar asked Mar 08 '17 22:03

FunnyChef


1 Answers

json.loads(myResponse.content.decode('utf-8')) 

You just put it in the wrong order, innocent mistake.


(In-depth answer). As courteously pointed out by wim, in some rare cases, they could opt for UTF-16 or UTF-32. These cases will be less common as the developers, in that scenario would be consciously deciding to throw away valuable bandwidth. So, if you run into encoding issues, you can change utf-8 to 16, 32, etc.

There are a couple of solutions for this. You could use request's built-in .json() function:

myResponse.json() 

Or, you could opt for character detection via chardet. Chardet is a library developed based on a study. The library has one function: detect. Detect can detect most common encodings and then use them to encode your string with.

import chardet json.loads(myResponse.content.decode(chardet.detect(myResponse.content)["encoding"])) 
like image 187
Neil Avatar answered Oct 05 '22 05:10

Neil