I want to have a simple gui program to edit a python dictionary, so naturally EasyGUI is my first choice. My problem is that my dictionary is long, {key1:v1,key2:v2,...,keyn:vn}
, and when I enter the following code:
multienterbox(label,title,[key1,key2,...,keyn])
the window is not big enough to display all my keys.
Is there a way to add a scroll bar to the window or any workaround is possible?