Importing flask.ext.wtf

4m1nh4j1 picture 4m1nh4j1 · Dec 13, 2013 · Viewed 13.2k times · Source

I am using venv, and I develop using eclipse . I want to add a contact page .

I did :

$ . bin/activate
$ pip install flask-wtf

And I import some modules in the forms.py :

I used this :

from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField

and then this :

from flask.ext.wtf import Form
from wtforms.fields import TextField, BooleanField

No one of them worked because I had this error :

from flask.ext.wtf import Form
  File "/usr/local/lib/python2.7/dist-packages/flask/exthook.py", line 87, in load_module
    raise ImportError('No module named %s' % fullname)
ImportError: No module named flask.ext.wtf

Answer

Ptrkcon picture Ptrkcon · Dec 14, 2013

What version of flask-wtf did you install? Since version 9 you do all of the field imports from WTForms not from Flask-WTF.

So your imports will be (note that according to docs import statement was changed):

from flask_wtf import Form
from wtforms import TextField, BooleanField