Is there any standard for python configuration files? What I would like to have is a seperate document to my script which would have the options of my script in it. For example...
Test Options
Random_AOI = 1
Random_ReadMode = 1
These would then become a list within the python script, such as...
test_options(random_aoi, random_readmode)
Would I have to use regular expressions and scan the document or is there an easier way of performing this action?