[Answered ]-Django – Receiving JSON from Google Maps API

2👍

Google maps returns response in ISO-8859-1 encoding. You need to decode the data bytestring before passing it to simplejson:

jsondata = simplejson.loads(data.decode('ISO-8859-1'))

Leave a comment