embed / app.py
om-app's picture
Update app.py
104575a
raw
history blame
245 Bytes
import gradio as gr
def embed_widget_code():
return "<iframe src='//openspeedtest.com/speedtest' style='border:none;width:100%;height:350px;'></iframe>"
iface = gr.Interface(embed_widget_code, inputs={None}, outputs="html")
iface.launch()