Hello, world!
This commit is contained in:
commit
df90e4dd9e
13
designbyloven.py
Executable file
13
designbyloven.py
Executable 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
6
requirements.txt
Normal 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
|
Loading…
x
Reference in New Issue
Block a user