Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ def dl(inp):
|
|
58 |
with gr.Blocks() as app:
|
59 |
inp_url = gr.Textbox()
|
60 |
with gr.Row():
|
61 |
-
btn=gr.Button("Search")
|
62 |
go_btn = gr.Button("Run")
|
63 |
|
64 |
with gr.Row():
|
@@ -67,7 +67,7 @@ with gr.Blocks() as app:
|
|
67 |
with gr.Column():
|
68 |
outp_files=gr.Files()
|
69 |
out_json = gr.JSON()
|
70 |
-
btn.click(dl,inp_url,out_json)
|
71 |
go_btn.click(dl,inp_url,[outp_vid,outp_files,out_json])
|
72 |
|
73 |
app.launch()
|
|
|
58 |
with gr.Blocks() as app:
|
59 |
inp_url = gr.Textbox()
|
60 |
with gr.Row():
|
61 |
+
#btn=gr.Button("Search")
|
62 |
go_btn = gr.Button("Run")
|
63 |
|
64 |
with gr.Row():
|
|
|
67 |
with gr.Column():
|
68 |
outp_files=gr.Files()
|
69 |
out_json = gr.JSON()
|
70 |
+
#btn.click(dl,inp_url,out_json)
|
71 |
go_btn.click(dl,inp_url,[outp_vid,outp_files,out_json])
|
72 |
|
73 |
app.launch()
|