This is my first StackOverflow post, so hello everyone.
I am doing a block application to learn Python and Flask, and I would like to run it in the Google App Engine. Unfortunately, I have a little problem importing WTForms into the application. I am currently using Flask 0.9, WTForms 1.0.1 and Flask-WTForms 0.8. I added the flaskext_wtf folder to the root path of my project, but I get an error message from the html5.py file.
File "/Users/lucas/Workspace/blog/flask_wtf/html5.py", line 1, in <module>
from wtforms import TextField
File "/Users/lucas/Workspace/blog/flask/exthook.py", line 86, in load_module
raise ImportError('No module named %s' % fullname)
ImportError: No module named flask.ext.wtf.wtforms
It looks like he is trying to find wtforms inside the extension path instead of my project path. How can I tell the html5.py file to search for wtforms in the root?
Here are the sources of my project - https://bitbucket.org/lucas_mendelowski/wblog/src
Lucas