Create a wrapper class for the ConfigParser class in the Python standard library.
Implement your class so that instances of it are iterable. When used in an iterator context, an instance of your wrapper class should produce each option of each section in an config file.
In order to make your class iterable, expose the following methods:
Create a wrapper class for CSVReader in opencsv.
Implement your class so that instances of it are iterable.
In order to make your class iterable, expose the following methods: