Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created August 24, 2022 07:10
Convert PDF Files to Text (TXT) in Python
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