Last active
August 15, 2022 04:42
-
-
Save nadya-p/373e1dc335293e490d89d00c895ea7b3 to your computer and use it in GitHub Desktop.
Extract text contents of PDF files recursively
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tika import parser | |
import os | |
def extract_text_from_pdfs_recursively(dir): | |
for root, dirs, files in os.walk(dir): | |
for file in files: | |
path_to_pdf = os.path.join(root, file) | |
[stem, ext] = os.path.splitext(path_to_pdf) | |
if ext == '.pdf': | |
print("Processing " + path_to_pdf) | |
pdf_contents = parser.from_file(path_to_pdf) | |
path_to_txt = stem + '.txt' | |
with open(path_to_txt, 'w') as txt_file: | |
print("Writing contents to " + path_to_txt) | |
txt_file.write(pdf_contents['content']) | |
if __name__ == "__main__": | |
extract_text_from_pdfs_recursively(os.getcwd()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can I append the text from all
the pdf to a csv