lalalic commited on
Commit
7f9019b
·
verified ·
1 Parent(s): e085c85

Create test.py

Browse files
Files changed (1) hide show
  1. test.py +7 -0
test.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import Flask
2
+
3
+ app=Flask(__name__)
4
+
5
+ @app.route("/")
6
+ def hello():
7
+ return "hello flask"