Quote:
from easygconf import GConfDict
gc=GConfDict('/apps/test-application')
gc['title']
gc['title']='Hello world!'
gc['title']
'Hello world!'
gc['list']=range(3)
gc['list']
(0, 1, 2)
gc.unset('title')
gc.unset('list')
gc['title']
gc['list']
gc.sync()