ANN: easygconf 0.02

2009-11-16 Thread Florian Diesch


I'm happy to announce easygconf 0.02.
Get it at http://www.florian-diesch.de/software/easygconf


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_listner('test', callback)
try:
gtk.main()
except KeyboardInterrupt:
pass
gc.unset('test')




   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/


Elixir 0.7.1 released

2009-11-16 Thread Gaetan de Menten
I am very pleased to announce that version 0.7.1 of Elixir
(http://elixir.ematia.de) is now
available. As always, feedback is very welcome, preferably on Elixir
mailing list.

This release packs a few interesting new features (abstract classes
and a new collection
type providing explicit relative resolution of target entities) and
some bug fixes. It is a safe
upgrade from the 0.7.0 release.

The full list of changes can be seen at:
http://elixir.ematia.de/trac/browser/elixir/tags/0.7.1/CHANGES

What is Elixir?
-

Elixir is a declarative layer on top of the SQLAlchemy library. It is
a fairly thin wrapper, which provides the ability to create simple
Python classes that map directly to relational database tables (this
pattern is often referred to as the Active Record design pattern),
providing many of the benefits of traditional databases without losing
the convenience of Python objects.

Elixir does not intend to replace SQLAlchemy's core features, and
instead focuses on providing a simpler syntax for defining model
objects when you do not need the full expressiveness of
SQLAlchemy's manual mapper definitions.

Mailing list


http://groups.google.com/group/sqlelixir/about

-- 
Gaƫtan de Menten
http://openhex.org
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

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