easygconf 0.03
dict-like API for GConf
easygconf provids an easy, pythonic way to access GConf through a dict-like interface.
Example
from easygconf import GConfDict
import gtk
key = 'test'
gc=GConfDict('/apps/easygconftest')
print "%s is %s"%(key, gc[key])
gc[key] = 'foo'
print "Now %s is %s"%(key, gc[key])
def callback (key, value, gconfdict, id, args):
print "%s changed to %s"%(key, value)
gc.add_listener('test', callback)
try:
gtk.main()
except KeyboardInterrupt:
pass
gc.unset('test')
- Author: Florian Diesch
- Home Page: http://www.florian-diesch.de/software/easygconf/
- Keywords: gconf gnome
- License: GPL
-
Categories
- Development Status :: 3 - Alpha
- Environment :: X11 Applications :: Gnome
- Intended Audience :: Developers
- License :: OSI Approved :: GNU General Public License (GPL)
- Natural Language :: English
- Natural Language :: German
- Operating System :: Unix
- Programming Language :: Python
- Topic :: Desktop Environment :: Gnome
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: Utilities
- Package Index Owner: fdiesch
- DOAP record: easygconf-0.03.xml
