Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mrfakename
/
crash-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
mrfakename
commited on
Sep 14
Commit
ca9227d
·
verified
·
1 Parent(s):
f657679
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
def crash_app():
4
+
exit()
5
+
6
+
with gr.Blocks() as demo:
7
+
btn = gr.Button("Crash")
8
+
btn.click(crash_app)
9
+
10
+
demo.queue().launch()