First Commit
This commit is contained in:
commit
034033061f
1 changed files with 9 additions and 0 deletions
9
app.py
Normal file
9
app.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello_world(): # put application's code here
|
||||
return 'Hello World!'
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run()
|
||||
Loading…
Add table
Add a link
Reference in a new issue