Skip to content

Commit

Permalink
Tasker: Hello World!
Browse files Browse the repository at this point in the history
Initialize a new Flask app
  • Loading branch information
adityabakare committed Nov 24, 2019
1 parent 765e000 commit 422e709
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from flask import Flask

app=Flask(__name__)

@app.route('/')

def hello():
return "Hello World!"
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Click==7.0
Flask==1.1.1
itsdangerous==1.1.0
Jinja2==2.10.3
MarkupSafe==1.1.1
Werkzeug==0.16.0

0 comments on commit 422e709

Please sign in to comment.