Hello, world!

This commit is contained in:
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)