Streamlit / app.py
subhanali12's picture
Upload 4 files
870b88c verified
raw
history blame
190 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('h.html')
if __name__ == '__main__':
app.run(debug=True)