I\'ve been trying to figure out a good way to load JSON objects in Python. I send this json data:
{\'http://example.org/about\': {\'http://purl.org/dc/terms/
with open('input.json','r') as f: s = f.read() s = s.replace('\'','\"') data = json.loads(s)
This worked perfectly well for me. Thanks.