Hello, world!

This commit is contained in:
Thomas Lovén 2017-01-18 08:40:27 +01:00
commit df90e4dd9e
2 changed files with 19 additions and 0 deletions

13
designbyloven.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return "Design by Lovén"
if __name__ == '__main__':
app.run(debug=True)

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
click==6.7
Flask==0.12
itsdangerous==0.24
Jinja2==2.9.4
MarkupSafe==0.23
Werkzeug==0.11.15