From e05aa7e55769f3086bb3a226102eb06a148627c9 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 30 Jun 2014 22:41:24 -0300 Subject: [PATCH] how do i run this? --- flask.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/flask.html b/flask.html index 5827658..143a6ae 100644 --- a/flask.html +++ b/flask.html @@ -697,6 +697,30 @@ def list():

+ +
+
+

Executando

+
+ +
+

Flask vem com um servidor de desenvolvimento integrado. + Para utilizar:

+ +


+app.run()
+						

+
+ +
+

Ou ainda:

+ +


+if __name__ == '__main__':
+	app.run()
+						

+
+