raannakasturi commited on
Commit
8f9eff9
·
verified ·
1 Parent(s): c7bd06b

Update extract_text.py

Browse files
Files changed (1) hide show
  1. extract_text.py +1 -0
extract_text.py CHANGED
@@ -12,6 +12,7 @@ def download_pdf(url, id):
12
  response.raise_for_status()
13
  with open(file_path, "wb") as file:
14
  file.write(response.content)
 
15
  except Exception as e:
16
  print(f"Error downloading PDF: {e}")
17
  return None
 
12
  response.raise_for_status()
13
  with open(file_path, "wb") as file:
14
  file.write(response.content)
15
+ print(f"Saving PDF to: {file_path}")
16
  except Exception as e:
17
  print(f"Error downloading PDF: {e}")
18
  return None