Hi!
I want to get some JSON data.
This is what the data looks like:
This is what it looks like when checking the data the error message shows:
Raw data:
[{'date': '13.12.2021', 'day': 'Montag', 'updated': '10.12.2021 12:59', 'type': '13.12.', 'class': 'EF', 'lesson': '5', 'subject': 'Kra', 'room': '---', 'new_subject': '---', 'new_teacher': 'D GK4', 'teacher': 'R233', 'col8': 'EF GK4 D (Tre)', 'col9': '---'}, {'date': '13.12.2021', 'day': 'Montag', 'updated': '10.12.2021 12:59', 'type': '13.12.', 'class': 'EF', 'lesson': '5', 'subject': 'Tre', 'room': '---', 'new_subject': '---', 'new_teacher': 'D GK2', 'teacher': 'R234', 'col8': 'EF GK2 D (Tre)', 'col9': '---'}, {'date': '13.12.2021', 'day': 'Montag', 'updated': '10.12.2021 12:59', 'type': '13.12.', 'class': 'EF', 'lesson': '6', 'subject': 'Tre', 'room': '---', 'new_subject': '---', 'new_teacher': 'D GK4', 'teacher': 'R233', 'col8': 'EF GK4 D (Tre)', 'col9': '---'}, {'date': '13.12.2021', 'day': 'Montag', 'updated': '10.12.2021 12:59', 'type': '13.12.', 'class': 'EF', 'lesson': '6', 'subject': 'Kra', 'room': '---', 'new_subject': '---', 'new_teacher': 'D GK2', 'teacher': 'R234', 'col8': 'EF GK2 D (Tre)', 'col9': '---'}]
Easy to read data:
[
{
"date":"13.12.2021",
"day":"Montag",
"updated":"10.12.2021 12:59",
"type":"13.12.",
"class":"EF",
"lesson":"5",
"subject":"Kra",
"room":"---",
"new_subject":"---",
"new_teacher":"D GK4",
"teacher":"R233",
"col8":"EF GK4 D (Tre)",
"col9":"---"
},
{
"date":"13.12.2021",
"day":"Montag",
"updated":"10.12.2021 12:59",
"type":"13.12.",
"class":"EF",
"lesson":"5",
"subject":"Tre",
"room":"---",
"new_subject":"---",
"new_teacher":"D GK2",
"teacher":"R234",
"col8":"EF GK2 D (Tre)",
"col9":"---"
},
{
"date":"13.12.2021",
"day":"Montag",
"updated":"10.12.2021 12:59",
"type":"13.12.",
"class":"EF",
"lesson":"6",
"subject":"Tre",
"room":"---",
"new_subject":"---",
"new_teacher":"D GK4",
"teacher":"R233",
"col8":"EF GK4 D (Tre)",
"col9":"---"
},
{
"date":"13.12.2021",
"day":"Montag",
"updated":"10.12.2021 12:59",
"type":"13.12.",
"class":"EF",
"lesson":"6",
"subject":"Kra",
"room":"---",
"new_subject":"---",
"new_teacher":"D GK2",
"teacher":"R234",
"col8":"EF GK2 D (Tre)",
"col9":"---"
}
]
This is what I’m doing with the data:
Thank you for any help!