> Does anyone have any idea how I can get around this Pickling error?

Different ways to make your class picklable are described here:
http://docs.python.org/library/pickle.html#pickling-and-unpickling-normal-class-instances

You could for example write __getstate__ and __setstate__ methods such
that the session / sessionmaker objects don't get pickled when pickling
your class, and are recreated on the fly when unpickling.

Regards

Antoine.


--

You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.


Reply via email to