My project is currently receiving a JSON message in python which I need to get bits of information out of. For the purposes of this, let\'s set it to some simple JSON in a s
Very simple:
import json data = json.loads('{"one" : "1", "two" : "2", "three" : "3"}') print data['two']