python-jsonschema

Jsonstatdataset rename

Jsonstatdataset rename Question: I am trying to read a table from the Central Statistics Office for Ireland. I am reading it into a collection and successfully displaying the first dataset dataset = collection.dataset(0) print(dataset) which returns: name: ‘dataset’ label: ‘Residential Property Price Index’ source: ‘Residential Property Price Index’ size: 16800 +—–+————–+————–+——+——–+ | pos | id …

Total answers: 1

Python Json Error , Expectiing comma delimitter

Python Json Error , Expectiing comma delimitter Question: I tried many ways but not sure why this error coming. This is small script I am trying on SPYDER. Please help. import json myjson = ”’ [ "details":[ { "MyTable":"NEWTABLE", "ReferTo":"Test" }, ] ] ”’ data = json.loads(myjson) ### ABOVE LINE IS THROWING ERROR, —> Expecting …

Total answers: 2