This is a tool that reads the structure of an existing database and generates the appropriate SQLAlchemy model code, using the declarative style if possible.
---------------------------------------------
On 18/05/2013 01:28, Alex Grönholm wrote:
This is a tool that reads the structure of an existing database and
generates the appropriate SQLAlchemy model code, using the declarative
style if possible.
Playing devils advocate to get my head around this: why would you want to generate code when you could just reflect the models?
Chris
The more complex your schema is, the more useful automatic code
generation will be for you. Of course, if you only do metadata
reflection and don't use declarative, well, that's another matter.
But most people want mapped classes to use in their apps.