Tri4 commited on
Commit
4564cfc
·
verified ·
1 Parent(s): 3d9346b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, request, jsonify, render_template
2
+ import os
3
+
4
+ app = Flask(__name__)
5
+
6
+ @app.route("/")
7
+ def hello():
8
+ return render_template('index.html')
9
+
10
+
11
+ if __name__ == '__main__':
12
+ print("Lets test voice recording\n", flush=True)
13
+ app.run(host="0.0.0.0", port=5000)