Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
om-app
/
embed
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
709df48
embed
/
app.py
om-app
Update app.py
709df48
about 2 years ago
raw
Copy download link
history
blame
Safe
Wrap lines
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()