I don't expect to need much more than basic CRUD type functionality. I know that SQLAlchemy is more flexible, but the syntax etc of sqlobject just seem to be a bit easier to get up and going with.
3 Answers
Also, you might wanna take a look at elixir, which is a fairly thick wrapper around SQLAlchemy and really makes the basic tasks easy while retaining the power of SQLA.
1 Comment
Tyler Liu
Check Quick ORM: pypi.python.org/pypi/quick_orm. It's a SQLAlchemy wrapper too.
Try quick_orm. It is as powerful as SQLAlchemy and simpler than SQLObject.