I have some configuration data in the below format. What is the best way to parse this data in python? I checked the csv module and briefly this module. Couldn't figureout how to use it. Existing parser is hacked in perl.
|------------+-----------------+--------| | ColHead1 | Col_______Head2 | CH3 | |------------+-----------------+--------| | abcdefg000 | * | somev1 | | abcdefg001 | * | somev2 | | abcdefg002 | * | | | abcdefg003 | * | | | abcdefg004 | * | | | abcdefg005 | * | | | abcdefg006 | * | | | abcdefg007 | * | | | abcdefg008 | * | | | abcdefg009 | * | | | abcdefg010 | * | | |------------+-----------------+--------|