embed / app.py
om-app's picture
Update app.py
709df48
raw
history blame
237 Bytes
import gradio as gr
iframe = gr.outputs.HTML(
"<iframe src='https://openspeedtest.com/speedtest'></iframe>")
iface = gr.Interface(
fn=lambda x: x,
inputs=None,
outputs=iframe,
capture_session=False)
iface.launch()