import json jsonData = '{"ID":"123", "Name": "Hamza"}' data = json.loads(jsonData) newData = {"DOB": "22-10-2001"} data.update(newData) print(data)