Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Separate SQLAlchemy models by file in Flask [duplicate]

Many examples for Flask apps that I have seen have the models stored directly in the main app file (http://pythonhosted.org/Flask-SQLAlchemy/quickstart.html, http://maximebf.com/blog/2012/10/building-websites-in-python-with-flask/). Other ones (http://flask.pocoo.org/docs/patterns/sqlalchemy/) have a "models.py" file in which models are placed.

How can I have my Flask app import models from separate files, e.x. "User.py"? When I try creating a User.py file with these contents:

from app import db  class User(db.Model):     [...] 

I get the following error:

File "/Users/stackoverflow/myapp/models/User.py", line 1, in <module> from app import db ImportError: No module named app 

When I insert from models import User in my module file.

like image 676
element119 Avatar asked Feb 09 '13 15:02

element119


1 Answers

This answer was extremely helpful: https://stackoverflow.com/a/9695045/353878.

I needed to not initialize the db right away.

like image 143
element119 Avatar answered Sep 24 '22 22:09

element119