Update app.py
Browse files
app.py
CHANGED
|
@@ -26,4 +26,8 @@ with gr.Blocks() as demo:
|
|
| 26 |
text_output = gr.Textbox(
|
| 27 |
label="Verify the status",
|
| 28 |
placeholder="Start Building the Bot to view the content")
|
| 29 |
-
text_button.click(scrap, [input], text_output)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
text_output = gr.Textbox(
|
| 27 |
label="Verify the status",
|
| 28 |
placeholder="Start Building the Bot to view the content")
|
| 29 |
+
text_button.click(scrap, [input], text_output)
|
| 30 |
+
|
| 31 |
+
demo.queue().launch(debug = True,
|
| 32 |
+
auth=("username", "password"),
|
| 33 |
+
)
|