C2MV commited on
Commit
a600bee
verified
1 Parent(s): db19829

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +66 -70
app.py CHANGED
@@ -68,6 +68,7 @@ class PaperDownloader:
68
  retry_count = 0
69
 
70
  while redirect_count <= max_redirects:
 
71
  try:
72
  while retry_count <= max_retries:
73
  try:
@@ -330,14 +331,13 @@ class PaperDownloader:
330
  # Si se agotan todos los reintentos
331
  return None
332
 
333
- async def _download_single_doi(self, doi, cancel_event): # removed async keyword
334
  """Descargar un 煤nico DOI con retroalimentaci贸n de progreso"""
335
  if not doi:
336
  return None, "Error: DOI no proporcionado", "Error: DOI no proporcionado"
337
  logger.info(f"Starting download process for DOI: {doi}")
338
 
339
  try:
340
-
341
  pdf_content = await self.download_with_retry_async(doi)
342
  if pdf_content:
343
  logger.info(f"Downloaded PDF for DOI: {doi}")
@@ -346,27 +346,27 @@ class PaperDownloader:
346
 
347
  # Escribir contenido del PDF
348
 
349
- with open(filepath, 'wb') as f: # added context for handling resource and also made sync the file method
350
- f.write(pdf_content)
351
-
352
  logger.info(f"Saved PDF to file: {filepath}")
353
 
354
  logger.info(f"Descarga exitosa: {filename}")
355
 
356
  return filepath, f"Descargado exitosamente: <a href='https://doi.org/{doi}'>{doi}</a>", ""
357
- else:
 
358
  logger.warning(f"No se pudo descargar: {doi}")
359
  return None, f"No se pudo descargar {doi}", f'<a href="https://doi.org/{doi}">{doi}</a>'
360
-
361
  except CancelledError:
362
  logger.info(f"Download Cancelled DOI: {doi}")
363
- return None, f"Download cancelled {doi}","Download Cancelled"
364
-
365
  except Exception as e:
366
  logger.error(f"Error processing {doi}: {e}")
367
  return None, f"Error processing {doi}: {e}", f"Error processing {doi}: {e}"
368
-
369
-
370
  async def download_multiple_dois(self, dois_text, cancel_event):
371
  """Download multiple DOIs"""
372
  if not dois_text:
@@ -386,29 +386,30 @@ class PaperDownloader:
386
  downloaded_links = [] # Links de DOIs descargados
387
 
388
  for doi in dois:
 
389
  result = await self._download_single_doi(doi,cancel_event)
390
 
391
  if cancel_event.is_set():
392
- logger.info("Downloads cancelled on multiple dois download")
393
- return None,"Downloads cancelled","Downloads cancelled", ""# early return on cancelled
394
 
395
  if result is None:
396
  continue
397
 
398
  if isinstance(result, Exception):
399
- # Excepci贸n inesperada
400
- error_msg = f"Unexpected error: {str(result)}"
401
- logger.error(f"Error downloading {doi}: {error_msg}")
402
- failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
403
 
404
  elif result[0] is None:
405
- # Descarga fallida (resultado de download_single_doi_async)
406
- error_msg = result[1]
407
- logger.warning(f"Failed to download {doi}: {error_msg}")
408
- failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
409
 
410
  else:
411
- # Descarga exitosa
412
  filepath = result[0]
413
 
414
  # Generar nombre de archivo 煤nico
@@ -416,17 +417,19 @@ class PaperDownloader:
416
  filepath_unique = os.path.join(self.output_dir, filename)
417
 
418
  try:
419
- # Renombrar archivo
420
  os.rename(filepath, filepath_unique)
421
-
422
- # A帽adir a lista de archivos descargados
423
  downloaded_files.append(filepath_unique)
424
  downloaded_links.append(f'<a href="https://doi.org/{doi}">{doi}</a>')
425
 
426
  except Exception as rename_error:
427
- logger.error(f"Error renaming file for {doi}: {rename_error}")
428
- failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - Error saving file')
429
-
 
 
430
  # Crear archivo ZIP si hay archivos descargados
431
  zip_filename = None
432
  if downloaded_files:
@@ -439,9 +442,8 @@ class PaperDownloader:
439
  lambda: self.create_zip(zip_filename, downloaded_files)
440
  )
441
  logger.info(f"ZIP file created: {zip_filename}")
442
-
443
  return zip_filename if downloaded_files else None, "\n".join(downloaded_links),"\n".join(failed_dois), ""
444
-
445
  async def process_bibtex(self, bib_file, cancel_event):# removed async here
446
  """Process BibTeX file and download papers with multiple strategies and reports UI updates using a callback"""
447
  # Read BibTeX file content from the uploaded object
@@ -450,7 +452,7 @@ class PaperDownloader:
450
  bib_content = f.read()
451
  except Exception as e:
452
  logger.error(f"Error reading uploaded file {bib_file.name}: {e}")
453
- return None, f"Error reading uploaded file {bib_file.name}: {e}", f"Error reading uploaded file {bib_file.name}: {e}",""
454
 
455
  # Parse BibTeX data
456
  try:
@@ -469,30 +471,30 @@ class PaperDownloader:
469
  downloaded_links = []
470
 
471
  for doi in dois:
472
- result = await self._download_single_doi(doi,cancel_event)
473
 
474
  if cancel_event.is_set():
475
- logger.info("Download Cancelled in bibtex mode")
476
- return None, "Download Cancelled", "Download Cancelled", ""#cancel if requested
477
-
478
  if result is None:
479
- continue;
480
-
481
  if isinstance(result, Exception):
482
- # Excepci贸n inesperada
483
- error_msg = f"Unexpected error: {str(result)}"
484
- logger.error(f"Error downloading {doi}: {error_msg}")
485
- failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
486
-
487
  elif result[0] is None:
488
- # Descarga fallida (resultado de download_single_doi_async)
489
  error_msg = result[1]
490
  logger.warning(f"Failed to download {doi}: {error_msg}")
491
  failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
492
 
493
  else:
494
- # Descarga exitosa
495
- filepath = result[0]
496
 
497
  # Unique filename for zip
498
  filename = f"{str(doi).replace('/', '_').replace('.', '_')}_{i}.pdf"
@@ -506,9 +508,8 @@ class PaperDownloader:
506
  loop = asyncio.get_running_loop()
507
  loop.run_in_executor(self.executor, lambda: self.create_zip(zip_filename,downloaded_files))
508
  logger.info(f"ZIP file created: {zip_filename}")
509
-
510
- return zip_filename, "\n".join(downloaded_links), "\n".join(failed_dois), ""
511
-
512
 
513
  def create_zip(self, zip_filename, files):
514
  """Crea un archivo zip con los pdfs descargados"""
@@ -525,35 +526,33 @@ class PaperDownloader:
525
  def create_gradio_interface():
526
  """Create Gradio interface for Paper Downloader"""
527
  downloader = PaperDownloader()
528
-
529
  def update_progress( message="", logs=""):
530
- return gr.Textbox.update(value=f"{message}"),gr.Textbox.update(value=f"<pre>{logs}</pre>")
531
 
532
 
533
  async def download_papers(bib_file, doi_input, dois_input, output_file, downloaded_dois_textbox,failed_dois_textbox,logs, single_file):
534
  cancel_event = asyncio.Event() # Create cancellation event for every submission.
535
  downloader.cancel_event = cancel_event # store the event so that it is available to stop the process
536
-
537
  if bib_file:
538
- # Check file type
539
  if not bib_file.name.lower().endswith('.bib'):
540
- return None, "Error: Please upload a .bib file", "Error: Please upload a .bib file","", None
541
-
542
- zip_file, downloaded_dois, failed_dois, logs_text = await downloader.process_bibtex(bib_file, cancel_event)
543
- return zip_file, downloaded_dois, failed_dois, logs_text, None# we use variables to keep consistent return with correct info.
544
 
 
 
 
545
  elif doi_input:
546
- filepath, message, error= await downloader._download_single_doi(doi_input,cancel_event)
547
- return None, message, error,"",filepath# correct return
548
-
549
- elif dois_input:
550
 
551
- zip_file, downloaded_dois, failed_dois, logs_text= await downloader.download_multiple_dois(dois_input,cancel_event)
552
 
553
- return zip_file, downloaded_dois, failed_dois, logs_text, None # correct return
554
-
 
 
 
 
555
  else:
556
- return None, "Please provide a .bib file, a single DOI, or a list of DOIs", "Please provide a .bib file, a single DOI, or a list of DOIs","", None # direct return values, no callbacks
557
 
558
 
559
  with gr.Blocks(theme="Hev832/Applio", css="""
@@ -614,15 +613,12 @@ def create_gradio_interface():
614
 
615
  submit_button.click(
616
  download_papers,
617
- inputs=[bib_file, doi_input, dois_input],
618
- outputs=[output_file, downloaded_dois_textbox, failed_dois_textbox,logs, single_file ] # the new output should be a tuple and we output logs too for debugging.
619
-
620
  )
621
-
622
-
623
  interface.title="馃敩 Academic Paper Batch Downloader"
624
  interface.description="Upload a BibTeX file or enter DOIs to download PDFs. We'll attempt to fetch PDFs from multiple sources like Sci-Hub, Libgen, Google Scholar and Crossref. You can use any of the three inputs at any moment."
625
-
626
  return interface
627
 
628
  def main():
 
68
  retry_count = 0
69
 
70
  while redirect_count <= max_redirects:
71
+
72
  try:
73
  while retry_count <= max_retries:
74
  try:
 
331
  # Si se agotan todos los reintentos
332
  return None
333
 
334
+ async def _download_single_doi(self, doi, cancel_event):
335
  """Descargar un 煤nico DOI con retroalimentaci贸n de progreso"""
336
  if not doi:
337
  return None, "Error: DOI no proporcionado", "Error: DOI no proporcionado"
338
  logger.info(f"Starting download process for DOI: {doi}")
339
 
340
  try:
 
341
  pdf_content = await self.download_with_retry_async(doi)
342
  if pdf_content:
343
  logger.info(f"Downloaded PDF for DOI: {doi}")
 
346
 
347
  # Escribir contenido del PDF
348
 
349
+ with open(filepath, 'wb') as f: # context is useful here
350
+ f.write(pdf_content)
351
+
352
  logger.info(f"Saved PDF to file: {filepath}")
353
 
354
  logger.info(f"Descarga exitosa: {filename}")
355
 
356
  return filepath, f"Descargado exitosamente: <a href='https://doi.org/{doi}'>{doi}</a>", ""
357
+
358
+ else:
359
  logger.warning(f"No se pudo descargar: {doi}")
360
  return None, f"No se pudo descargar {doi}", f'<a href="https://doi.org/{doi}">{doi}</a>'
361
+
362
  except CancelledError:
363
  logger.info(f"Download Cancelled DOI: {doi}")
364
+ return None, f"Download cancelled {doi}","Download Cancelled"
365
+
366
  except Exception as e:
367
  logger.error(f"Error processing {doi}: {e}")
368
  return None, f"Error processing {doi}: {e}", f"Error processing {doi}: {e}"
369
+
 
370
  async def download_multiple_dois(self, dois_text, cancel_event):
371
  """Download multiple DOIs"""
372
  if not dois_text:
 
386
  downloaded_links = [] # Links de DOIs descargados
387
 
388
  for doi in dois:
389
+
390
  result = await self._download_single_doi(doi,cancel_event)
391
 
392
  if cancel_event.is_set():
393
+ logger.info("Downloads cancelled on multiple dois download")
394
+ return None, "Downloads cancelled","Downloads cancelled","" # early return on cancelled
395
 
396
  if result is None:
397
  continue
398
 
399
  if isinstance(result, Exception):
400
+ # Excepci贸n inesperada
401
+ error_msg = f"Unexpected error: {str(result)}"
402
+ logger.error(f"Error downloading {doi}: {error_msg}")
403
+ failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
404
 
405
  elif result[0] is None:
406
+ # Descarga fallida (resultado de download_single_doi_async)
407
+ error_msg = result[1]
408
+ logger.warning(f"Failed to download {doi}: {error_msg}")
409
+ failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
410
 
411
  else:
412
+ # Descarga exitosa
413
  filepath = result[0]
414
 
415
  # Generar nombre de archivo 煤nico
 
417
  filepath_unique = os.path.join(self.output_dir, filename)
418
 
419
  try:
420
+ # Renombrar archivo
421
  os.rename(filepath, filepath_unique)
422
+
423
+ # A帽adir a lista de archivos descargados
424
  downloaded_files.append(filepath_unique)
425
  downloaded_links.append(f'<a href="https://doi.org/{doi}">{doi}</a>')
426
 
427
  except Exception as rename_error:
428
+ logger.error(f"Error renaming file for {doi}: {rename_error}")
429
+ failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - Error saving file')
430
+
431
+
432
+
433
  # Crear archivo ZIP si hay archivos descargados
434
  zip_filename = None
435
  if downloaded_files:
 
442
  lambda: self.create_zip(zip_filename, downloaded_files)
443
  )
444
  logger.info(f"ZIP file created: {zip_filename}")
 
445
  return zip_filename if downloaded_files else None, "\n".join(downloaded_links),"\n".join(failed_dois), ""
446
+
447
  async def process_bibtex(self, bib_file, cancel_event):# removed async here
448
  """Process BibTeX file and download papers with multiple strategies and reports UI updates using a callback"""
449
  # Read BibTeX file content from the uploaded object
 
452
  bib_content = f.read()
453
  except Exception as e:
454
  logger.error(f"Error reading uploaded file {bib_file.name}: {e}")
455
+ return None, f"Error reading uploaded file {bib_file.name}: {e}", f"Error reading uploaded file {bib_file.name}: {e}", ""
456
 
457
  # Parse BibTeX data
458
  try:
 
471
  downloaded_links = []
472
 
473
  for doi in dois:
474
+ result = await self._download_single_doi(doi, cancel_event)
475
 
476
  if cancel_event.is_set():
477
+ logger.info("Download Cancelled in bibtex mode")
478
+ return None, "Download Cancelled", "Download Cancelled", ""#cancel if requested
479
+
480
  if result is None:
481
+ continue
482
+
483
  if isinstance(result, Exception):
484
+ # Excepci贸n inesperada
485
+ error_msg = f"Unexpected error: {str(result)}"
486
+ logger.error(f"Error downloading {doi}: {error_msg}")
487
+ failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
488
+
489
  elif result[0] is None:
490
+ # Descarga fallida (resultado de download_single_doi_async)
491
  error_msg = result[1]
492
  logger.warning(f"Failed to download {doi}: {error_msg}")
493
  failed_dois.append(f'<a href="https://doi.org/{doi}">{doi}</a> - {error_msg}')
494
 
495
  else:
496
+ # Descarga exitosa
497
+ filepath = result[0]
498
 
499
  # Unique filename for zip
500
  filename = f"{str(doi).replace('/', '_').replace('.', '_')}_{i}.pdf"
 
508
  loop = asyncio.get_running_loop()
509
  loop.run_in_executor(self.executor, lambda: self.create_zip(zip_filename,downloaded_files))
510
  logger.info(f"ZIP file created: {zip_filename}")
511
+
512
+ return zip_filename, "\n".join(downloaded_links), "\n".join(failed_dois), ""
 
513
 
514
  def create_zip(self, zip_filename, files):
515
  """Crea un archivo zip con los pdfs descargados"""
 
526
  def create_gradio_interface():
527
  """Create Gradio interface for Paper Downloader"""
528
  downloader = PaperDownloader()
 
529
  def update_progress( message="", logs=""):
530
+ return gr.Textbox.update(value=f"{message}"),gr.Textbox.update(value=f"<pre>{logs}</pre>")
531
 
532
 
533
  async def download_papers(bib_file, doi_input, dois_input, output_file, downloaded_dois_textbox,failed_dois_textbox,logs, single_file):
534
  cancel_event = asyncio.Event() # Create cancellation event for every submission.
535
  downloader.cancel_event = cancel_event # store the event so that it is available to stop the process
 
536
  if bib_file:
537
+ # Check file type
538
  if not bib_file.name.lower().endswith('.bib'):
539
+ return None, "Error: Please upload a .bib file", "Error: Please upload a .bib file","", None
 
 
 
540
 
541
+ zip_file, downloaded_dois, failed_dois, logs_text = await downloader.process_bibtex(bib_file, cancel_event)
542
+
543
+ return zip_file, downloaded_dois, failed_dois, logs_text, None
544
  elif doi_input:
 
 
 
 
545
 
546
+ filepath, message, error = await downloader._download_single_doi(doi_input,cancel_event)
547
 
548
+ return None, message, error,"",filepath
549
+
550
+ elif dois_input:
551
+ zip_file, downloaded_dois, failed_dois, logs_text= await downloader.download_multiple_dois(dois_input, cancel_event)
552
+ return zip_file, downloaded_dois, failed_dois, logs_text, None
553
+
554
  else:
555
+ return None, "Please provide a .bib file, a single DOI, or a list of DOIs", "Please provide a .bib file, a single DOI, or a list of DOIs", "", None # direct return values, no callbacks
556
 
557
 
558
  with gr.Blocks(theme="Hev832/Applio", css="""
 
613
 
614
  submit_button.click(
615
  download_papers,
616
+ inputs=[bib_file, doi_input, dois_input],
617
+ outputs=[output_file, downloaded_dois_textbox, failed_dois_textbox,logs, single_file ] # the new output should be a tuple and we output logs too for debugging.
 
618
  )
 
 
619
  interface.title="馃敩 Academic Paper Batch Downloader"
620
  interface.description="Upload a BibTeX file or enter DOIs to download PDFs. We'll attempt to fetch PDFs from multiple sources like Sci-Hub, Libgen, Google Scholar and Crossref. You can use any of the three inputs at any moment."
621
+
622
  return interface
623
 
624
  def main():