diff options
Diffstat (limited to 'test.py')
| -rw-r--r-- | test.py | 10 | 
1 files changed, 10 insertions, 0 deletions
| @@ -0,0 +1,10 @@ +from flask import Flask +app = Flask(__name__) + +#for the slash rout run this function +@app.route("/") +def hello(): +    return "Hello World!" + +if __name__ == "__main__": +    app.run() | 
