speechtotext / app.py
Ansaribinhyder's picture
Updated Flask
a1592a0
raw
history blame contribute delete
253 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
# Render the index.html file from the templates folder
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)