Forum Archive

How to install and use Flask in Pythonista?

DaddyCakes

Hi All,

I'm curious as to how can we install and use Flask in Pythonista?
I have seen a tutorial on how to use bottle. Is there a similar type of documentation for Flask?

Thanks! :)

ccc
import flask
help(flask)
dgelessus

As @ccc pointed out, flask is already installed in Pythonista, so you can just import it and use it right away. For documentation, you can use the Python help system, or the documentation on http://flask.pocoo.org/docs/.