1
Typo in your Python script:
temp = json.dumps({"alzDyshpagia":[dict]})
Should be
temp = json.dumps({"alzDysphagia":[dict]})
(the ‘p’ and ‘h’ are reversed).
Source:stackexchange.com
1
Typo in your Python script:
temp = json.dumps({"alzDyshpagia":[dict]})
Should be
temp = json.dumps({"alzDysphagia":[dict]})
(the ‘p’ and ‘h’ are reversed).