ukrainian-stt / main.py
Yurii Paniv
Add template with basic frontend recording functionality
13aac28
raw
history blame
224 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('hello.html')
@app.route('/recognize', methods=["POST"])
def recognize():
return 'Hello, World!'