Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-nest
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test-nest
/
app.py
abidlabs
HF Staff
Create app.py
0a59328
verified
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
import
gradio
as
gr
import
nest_asyncio
nest_asyncio.apply()
with
gr.Blocks()
as
demo:
gr.Markdown(
"### Ok"
)
if
__name__ ==
"__main__"
:
demo.launch()