Re: Pythonic ORM with support for composite primary/foreign keys?

2007-11-06 Thread Jonathan LaCour
ir (http://elixir.ematia.de), which makes things look a bit more familiar. Elixir does support composite primary keys. -- Jonathan LaCour http://cleverdevil.org -- http://mail.python.org/mailman/listinfo/python-list

Announcing Elixir!

2007-02-13 Thread Jonathan LaCour
Today, we are pleased to announce the release of Elixir (http://elixir.ematia.de), a declarative mapper for SQLAlchemy. Elixir is the successor to ActiveMapper and TurboEntity, and is a collaboration between Daniel Haus, Jonathan LaCour and Gaƫtan de Menten. Elixir's website pro

Re: Building Python Based Web Application

2006-09-08 Thread Jonathan LaCour
oproject.com/). I have had good luck with both in the past, and TurboGears is my current framework of choice. There are a bunch of other frameworks out there as well, but I would guess that these are the two most popular. Best of luck - -- Jonathan LaCour http://cleverdevil.org -- http://mai

Re: Queueing in Python (ala JMS)

2005-12-20 Thread Jonathan LaCour
but in the meantime, you can achieve most of what you need with spread. -- Jonathan LaCour http://cleverdevil.org -- http://mail.python.org/mailman/listinfo/python-list

Re: how to keep collection of existing instances and return one on instantiation

2005-10-05 Thread Jonathan LaCour
> class Spam(object): > cache = {} > def __new__(cls, x): > if cls.cache.has_key(x): > return cls.cache[x] > def __init__(self, x): > self.x = x > self.cache[x] = self > > a = Spam('foo') > b = Spam('foo') > > Well, in this case a and b are identical.