My main point I need are:
- Models need to be classes, instancesable and have either a save function or something like database.insert(model)
- Column need to be acceble in a varible fasion: model.column (eg person.firstname)
- Models need to beable to have custom methods
I've already looked at:
- https://storm.canonical.com/ Little how-To's, confusing docs
- http://www.sqlalchemy.org/ Why is this soo verbose? Really, 20 lines to just connect to the database..
- http://www.sqlobject.org/ Haven't really attempted this one yet. But looks outdated
- http://pypi.python.org/pypi/quick_orm/ Really looks good, but have yet to find a decent tutorial what many of the different parts are. Maybe later I'll understand this.