clementBE commited on
Commit
9572f33
·
verified ·
1 Parent(s): 6a9e71a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.File(label="Download XLSX files", file_types=[".xlsx"], type="file", file_types_allow_multiple=True)
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))