Saturday, 28 September 2013

Simple python ORMapper requiring no explicit mapping in the persistent classes

Simple python ORMapper requiring no explicit mapping in the persistent
classes

I am looking for a Python ORMapper which would allow for easy,
non-intrusive persistent storage of a bunch of simple objects:
I have already a set of classes, which I wouldn't want to pollute with any
ORMapper code
once I have thing set up, I would like to be able to add new properties to
my classes and do nothing more with the ORMapper
I don't care much how are the objects stored - table names, table columns,
data types, etc. - reasonable defaults are fine
The objects contain references to other objects and basically
String/integer properties.
Do you know of anything like this?

No comments:

Post a Comment