Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Sample Hello World with flask.
Browse files Browse the repository at this point in the history
  • Loading branch information
rvmoura96 committed Oct 10, 2018
1 parent c3b8236 commit 9abcfa0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,6 @@
*.class
.idea
.vscode
.DS_Store
.DS_Store
*.pyc
__pycache__
9 changes: 9 additions & 0 deletions Python/hello_world_flask/app.py
@@ -0,0 +1,9 @@
from flask import Flask


app = Flask(__name__)


@app.route('/')
def hello():
return "Hello World"
6 changes: 6 additions & 0 deletions Python/hello_world_flask/requirements.txt
@@ -0,0 +1,6 @@
Click==7.0
Flask==1.0.2
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
Werkzeug==0.14.1

0 comments on commit 9abcfa0

Please sign in to comment.