Python config parser to get all the values from a section?

Make it a dict:

dict(Config.items('Section'))

You can make it a list if ordering is important

list(Config.items('Section'))