My json file is a list of dictionaries

I am able to successfully open it but I am not sure how to access the "the_dict" dictionary so I can retrieve and print just "test" and "pie" in my python program.
with open('my_settings.json') as json_data:
config = json.load(json_data)
# my_words = config["the_dict"] is what I tried but this does not work