This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
ai-virtual-assistant/py/web_flask.py

13 lines
198 B
Python
Raw Normal View History

2024-09-16 13:38:30 +02:00
from flask import Flask, send_from_directory
2024-09-16 13:16:26 +02:00
app = Flask(__name__)
@app.route('/')
def index():
return app.send_static_file('index.html')
2024-09-16 13:38:30 +02:00
2024-09-16 13:16:26 +02:00
if __name__ == '__main__':
2024-09-16 13:38:30 +02:00
app.run(debug=True)