I am very new to programming and choosing Python as my first language. I can do "POST" via the API, but how do I convert the response I get below to a Python dictionary?
If I were to print the answer, I get:
Response [201]
But if I were to do:
for i in response:
print i
I get:
{"id":"9e1ebc5d","side":"buy","item":"dinosaur","type":"limit","amount":"1.0000","displayAmount":"1.0000","price":"100","createdTime":"2014-12-24T16:01:15.3404000Z","status":"submitted","metadata":{}}
However, for me this is still useless if I cannot figure out how to convert it into a Python language.
Jchan source
share