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.
Asked
Active
Viewed 3,385 times
14
-
There are many wrappers for sqlalchemy which make it as easy as sqlobject. such as elixir and quick_orm. – Tyler Liu Nov 11 '11 at 18:45
3 Answers
9
I think SQLObject is more pythonic/simpler, so if it works for you, then stick with it.
SQLAlchemy takes a little more to learn, but can do more advanced things if you need that.

Jason Coon
- 17,601
- 10
- 42
- 50
7
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.

Bartosz Radaczyński
- 18,396
- 14
- 54
- 61
-
Check Quick ORM: http://pypi.python.org/pypi/quick_orm. It's a SQLAlchemy wrapper too. – Tyler Liu Nov 11 '11 at 18:44
0
Try quick_orm. It is as powerful as SQLAlchemy and simpler than SQLObject.

Tyler Liu
- 19,552
- 11
- 100
- 84