Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
co42
/
test
like
0
Sleeping
App
Files
Files
Community
main
test
/
app.py
co42
HF staff
Update app.py
469f4e4
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
import
gradio
as
gr
def
show_json
(
text
):
return
text
demo = gr.Interface(fn=show_json, inputs=
"text"
, outputs=
"json"
)
if
__name__ ==
"__main__"
:
demo.launch()