My sqlalchemy is 0.6.3 and the elixir is 0.7.1
I created a model class that extends Entity :
from elixir import * class User(Entity): pass
And save the user as:
user = User() user.save()
Session has no attribute 'save' reported
I looked at the elixir code, found that it calls sqlalchemy.org.session.Session#save() , but there is no save() method there.
So, the obsolete elixir , and we should no longer use it?
source share