Python dictonaire de dictonaire

from collections import defaultdict
d = defaultdict(dict)
d['dict1']['innerkey'] = 'value'

>>> d  # currently a defaultdict type
defaultdict(<type 'dict'>, {'dict1': {'innerkey': 'value'}})
>>> dict(d)  # but is exactly like a normal dictionary.
{'dict1': {'innerkey': 'value'}}
Nervous Nightingale