vvvw/hello.py

12 lines
174 B
Python
Raw Normal View History

2020-09-08 16:00:47 +02:00
from flask import Flask
from flask import render_template, jsonify
2020-09-08 16:00:47 +02:00
app = Flask(__name__)
2020-09-08 20:31:48 +02:00
2020-09-08 16:00:47 +02:00
@app.route('/')
def hello_world():
return render_template('hello.html')