diff options
| author | Teddy Wing | 2015-01-25 22:54:06 -0500 | 
|---|---|---|
| committer | Teddy Wing | 2015-01-25 22:54:06 -0500 | 
| commit | 89ce7c1d1fdba2809508fdf2924d4418809c5af0 (patch) | |
| tree | c2b288e690b412d043c735e344eb67ea1449b14a /app.py | |
| parent | 759007bc8129b34e0ef408f87da68bb9eb714e30 (diff) | |
| download | edu-net-89ce7c1d1fdba2809508fdf2924d4418809c5af0.tar.bz2 | |
Rename test.py to app.py
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.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() | 
