Skip to content

Instantly share code, notes, and snippets.

@joacorapela
joacorapela / config_dict.py
Created June 20, 2022 18:25 — forked from amitsaha/config_dict.py
Dumps a Config file into a Python dictionary
''' Dumps a config file of the type readable by ConfigParser
into a dictionary
Ref: http://docs.python.org/library/configparser.html
'''
import sys
import ConfigParser
class GetDict: