mydemo1 / app.py
CloudAnts's picture
my
4bb12e7
raw
history blame
167 Bytes
from flask import Flask, render_template
import os
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html") # Render HTML template