Skip to content

Instantly share code, notes, and snippets.

@nsu
Created May 29, 2013 20:05
Show Gist options
  • Save nsu/5673406 to your computer and use it in GitHub Desktop.
Save nsu/5673406 to your computer and use it in GitHub Desktop.
>>> import ConfigParser
>>> config = ConfigParser.ConfigParser()
>>> config.readfp(open('example.conf'))
>>> items = {key:value for key,value in config.items('default')}
>>> print items
{'foo': 'bar', 'baz': 'qux'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment