I'm developing two Python flask apps: one is the API server, tied with a database through flask-sqlalchemy, and the other one a databaseless web frontend, between the user and the API server.
I'd like to reuse the model code, for example, if I define a "House" object in the apiserver, somewhat reuse the same code to define the same object in the frontend server.
What I'm trying to achieve is, let's say I add the property "number of windows" to the "House" object, do it just once and have this change in my database model, the JSON code interchanged between apiserver and webfrontend and the output of the webfrontend.
Some possible approachs that come to my mind are:
- Somewhat automatically derive the SQLAlchemy database model from a initial shared model.
- Use as-it-is the SQLAlchemy model in the nondatabase code, so I can use the objects even if there is no database behind.
Has anyone tried any of those approachs ? any ideas ?