Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -87,7 +87,7 @@ with gr.Blocks(title="Instagram Comments Downloader") as demo:
|
|
| 87 |
|
| 88 |
urls_input = gr.Textbox(label="Instagram Post URLs", placeholder="https://www.instagram.com/p/CODE1/\nhttps://www.instagram.com/p/CODE2/", lines=5)
|
| 89 |
max_comments_input = gr.Number(value=200, label="Max comments per post")
|
| 90 |
-
download_files = gr.
|
| 91 |
|
| 92 |
def on_fetch(urls_text, max_comments):
|
| 93 |
return process_instagram_urls(urls_text, int(max_comments))
|
|
|
|
| 87 |
|
| 88 |
urls_input = gr.Textbox(label="Instagram Post URLs", placeholder="https://www.instagram.com/p/CODE1/\nhttps://www.instagram.com/p/CODE2/", lines=5)
|
| 89 |
max_comments_input = gr.Number(value=200, label="Max comments per post")
|
| 90 |
+
download_files = gr.Files(label="Download XLSX files", file_types=[".xlsx"])
|
| 91 |
|
| 92 |
def on_fetch(urls_text, max_comments):
|
| 93 |
return process_instagram_urls(urls_text, int(max_comments))
|