Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
redfernstech
/
ghj
like
0
Running
App
Files
Files
Community
316b614
ghj
/
index.html
Srinivasulu kethanaboina
Update index.html
316b614
verified
9 months ago
raw
Copy download link
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()