Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -139,7 +139,8 @@ with gr.Blocks() as app:
|
|
139 |
input = gr.Textbox(label = "URL")
|
140 |
btn = gr.Button("Preview")
|
141 |
output = gr.HTML("""""")
|
|
|
142 |
|
143 |
search_btn.click(search_fn,[search_box,num_return],output)
|
144 |
-
btn.click(first,None,output).then(test,input,output)
|
145 |
app.launch()
|
|
|
139 |
input = gr.Textbox(label = "URL")
|
140 |
btn = gr.Button("Preview")
|
141 |
output = gr.HTML("""""")
|
142 |
+
details = gr.HTML("""""")
|
143 |
|
144 |
search_btn.click(search_fn,[search_box,num_return],output)
|
145 |
+
btn.click(first,None,output).then(test,input,output).then(details_fn,input,details)
|
146 |
app.launch()
|