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'))
Source:stackexchange.com
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'))