I have a python dictionary in one of my project files structured like so:
DICTIONARY = {"Item": {"property1": "something",
"property2": "something2"},
"Item2": {"property1": "something",
"property2": "something2"},
"Item3": {"propertylist": {"property": "something",
"property": "something"}
}
}
I am building a GUI which should take user input and use it to append new entries to the end of the dictionary.
How can i add entries to a dictionary in one of my other project files?