File size: 237 Bytes
8901f41
 
709df48
 
353ffff
709df48
 
 
 
 
102a571
728450f
1
2
3
4
5
6
7
8
9
10
11
12
13
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()