I'm happy to announce easygconf 0.01

Get it at http://www.florian-diesch.de/software/easygconf/

easygconf provids an easy, pythonic way to access GConf
<http://projects.gnome.org/gconf/> through a dict-like interface.



Example
-------

>>> 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()




   Florian
-- 
<http://www.florian-diesch.de/>
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations/

Reply via email to