I need to create list of name of the event , start date of the event & venue name of the event using python
noting that when i am searching with names all names will be returned in mix and can’t separate venue name and event name as it’s order is not the same in other part in json file
[
{
"id": 688,
"name": "Kolthoumiat 9-June",
"nameAr": "كلثوميات 9-يونيو",
"nameFr": null,
"summary": "u003Cpu003EKolthoumiat 9-Juneu003C/pu003E",
"summaryAr": "u003Cpu003Eكلثوميات 9-يونيوu003C/pu003E",
"summaryFr": null,
"eventPhoto": "BE007762-6F83-4C4F-B8A5-A037B8A6C9CC.jpeg",
"eventType": "public",
"startDate": "2024-06-09T00:00:00",
"endDate": "2024-06-09T23:59:59",
"shows": [
{
"id": 1147,
"name": "Kolthoumiat 9-June",
"nameAr": "كلثوميات 9-يونيو",
"nameFr": null,
"startDate": "2024-06-09T20:30:36",
"endDate": "2024-06-09T23:30:36",
"hallTemplateId": null,
"portalStatus": 1,
"backOfficeStatus": 1,
"boxofficeStatus": 1,
"handheldStatus": 1
}
],
"venue": {
"id": 58,
"name": "Arabic Music Institute ",
"nameAr": "معهد الموسيقى العربية",
"nameFr": null,
"location": "Arabic Music Institute ",
"locationAr": "معهد الموسيقى العربية",
"locationFr": null,
"longitude": "31.23953244602275",
"latitude": "30.05461784531294"
},
"allowGuestBooking": true,
"eventCategoryId": 11,
"eventCategoryNameEn": "Arabic Music Institute",
"eventCategoryNameAr": "معهد الموسيقى العربية ",
"minimumPrice": 260
},
{
"id": 703,
"name": "Talents Development Center Concert 11-June",
"nameAr": "حفل مركز تنمية المواهب 11-يونيو",
"nameFr": null,
"summary": "u003Cpu003Eu003Cspan style="color: rgb(51, 51, 51); background-color: rgb(255, 255, 255);"u003ETalents Development Center Concert 11-Juneu003C/spanu003Eu003C/pu003E",
"summaryAr": "u003Cpu003Eحفل مركز تنمية المواهب 11-يونيوu003C/pu003E",
"summaryFr": null,
"eventPhoto": "C3FC8ADA-D430-493F-8F33-24C4793CDDA7.jpeg",
"eventType": "public",
"startDate": "2024-06-11T00:00:00",
"endDate": "2024-06-11T23:59:59",
"shows": [
{
"id": 1162,
"name": "Talents Development Center Concert 11-June",
"nameAr": "حفل مركز تنمية المواهب 11-يونيو",
"nameFr": null,
"startDate": "2024-06-11T20:30:48",
"endDate": "2024-06-11T23:30:48",
"hallTemplateId": null,
"portalStatus": 1,
"backOfficeStatus": 1,
"boxofficeStatus": 1,
"handheldStatus": 1
}
],
"venue": {
"id": 61,
"name": "Small Theatre ",
"nameAr": "المسرح الصغير ",
"nameFr": null,
"location": "Small Theatre ",
"locationAr": "المسرح الصغير ",
"locationFr": null,
"longitude": "31.223474804404294",
"latitude": "30.043592646231275"
},
"allowGuestBooking": true,
"eventCategoryId": 3,
"eventCategoryNameEn": "Cairo Opera House",
"eventCategoryNameAr": "دار الأوبرا المصرية",
"minimumPrice": 50
},
Expected Output
event_name_list = [Kolthoumiat 9-June,…….]
start_date_list = [startDate,…….] ### which included in “show” part
venue_name_list = [Arabic Music Institute,…..] ### which included in “venue” part
using python code