File size: 266 Bytes
b73125b 37686b3 6657883 37686b3 b73125b 37686b3 b73125b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
def load_html():
with open('index.html','r') as h:
html=h.read()
html = html.replace("$name","Test")
h.close()
return html
with gr.Blocks() as app:
html = gr.HTML()
app.load(load_html,None,html)
app.launch() |