ghj / index.html
Srinivasulu kethanaboina
Update index.html
316b614 verified
raw
history blame
168 Bytes
import gradio as gr
def get_ip_address(request):
return request.client.host
iface = gr.Interface(fn=get_ip_address, inputs="text", outputs="text")
iface.launch()