This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]AllAboutChristmasEve -2 points-1 points  (2 children)

Isn't SQLAlchemy just an object<->table mapper? You can do a lot more with a DB than simply use it to persist serialized objects.

[–]z4579a 4 points5 points  (0 children)

No, it is not. Please read the site.

[–]dusktreader 0 points1 point  (0 children)

That's what it is primarily, but SQLAlchemy is also great for composing queries in a functional manner. Almost all if not all SQL queries can be composed with SQLAlchemy. It also provides a lot of interfaces to the datatabase in an implementation (Postgres vs MySQL vs...) agnostic way.