Python config parser to get all the values from a section?
You can make it a list if ordering is important
list(Config.items('Section'))
Make it a dict:
dict(Config.items('Section'))
You can make it a list if ordering is important
list(Config.items('Section'))
Make it a dict:
dict(Config.items('Section'))