I\'m using the python requests module to send a RESTful GET to a server, for which I get a response in JSON. The JSON response is basically just a list of lists.
Wha
Since you're using requests, you should use the response's json method.
requests
import requests response = requests.get(...) data = response.json()
It autodetects which decoder to use.