Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
willhill
/
gradio_1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b82927d
gradio_1
/
app.py
willhill
Create app.py
b82927d
almost 2 years ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
def
reverse
(
text
):
return
text[::-
1
]
demo = gr.Interface(reverse,
"text"
,
"text"
)
demo.launch(share=
True
, auth=(
"username"
,
"password"
))