How can I convert the result of a ConfigParser.items(\'section\') to a dictionary to format a string like here:
import ConfigParser config = ConfigParser.Co
Have you tried
print connection_string % dict(config.items('db'))
?