hand-detection/app.py

17 lines
310 B
Python
Raw Normal View History

2024-05-29 03:18:12 +00:00
from flask import Flask, render_template
app = Flask(__name__,
static_folder='assets',
template_folder='templates'
)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True,host='0.0.0.0', port=5001)