Read the complete article on how to convert a PDF file to plain text (TXT) in Python: https://blog.aspose.com/convert-pdf-to-text-in-python/
Created
August 24, 2022 07:10
Convert PDF Files to Text (TXT) in Python
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
import aspose.words as aw | |
# Load PDF file | |
doc = aw.Document("document.pdf") | |
# Save PDF as TXT | |
doc.save("pdf-to-text.txt") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment