Re: ORM layer

2007-06-30 Thread Ben Finney
David <[EMAIL PROTECTED]> writes: > I am looking for an ORM for Python that fulfills a few simple needs. > > - ability to support a number of backends (probably mysql and sqlite   > at present, csv a bonus) > - ability to be used easily from console python scripts, a bonus if I   > can add a simpl

Re: ORM layer

2007-06-29 Thread EuGeNe Van den Bulke
David wrote: > I am looking for an ORM for Python that fulfills a few simple needs. * SQLObject * SQLAlchemy (+Elixir) * DejaVu There are probably others but these are the most commonly used AFAIK. EuGeNe -- http://www.3kwa.com -- http://mail.python.org/mailman/listinfo/python-list

Re: ORM layer

2007-06-29 Thread Bruno Desthuilliers
David a écrit : > I am looking for an ORM for Python that fulfills a few simple needs. > > - ability to support a number of backends (probably mysql and sqlite > at present, csv a bonus) I didn't knew csv was a relational database. > - ability to be used easily from console python scripts, a b