Recipe 7-1. Generating a Dialog from a Config File
Problem
After writing an article about the wonderful ConfigObj package on my blog, one of my readers asked if there was a way to use a config file
to generate a dialog. I took this idea and decided to give it a try. For this recipe, you will need to install ConfigObj in addition to wxPython. If you don’t already have ConfigObj, all you need to do is use pip to install it:
pip install configobj
Now that you have ConfigObj installed, we can continue. The first thing we need to do is to create some sort of configuration file that we can use to generate ...