I was having trouble using flask extensions with pyinstaller and though this might help someone else:
flask.ext redirects to the flask extensions. If the module references flask.ext within the module itself this causes problems for pyinstaller. A simple fix is to just be sure to use relative imports within the module. See these pull requests: > https://github.com/mitsuhiko/flask-sqlalchemy/pull/183 > https://github.com/twilio/flask-restful/pull/211 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
