import json

with open('lectures_example.json') as json_file:
    json_object = json.load(json_file)


