Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active November 29, 2021 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/522bdbe7f6cd96ff224502d787c68590 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/522bdbe7f6cd96ff224502d787c68590 to your computer and use it in GitHub Desktop.
Convert Notepad TXT Files to PDF in Python
import aspose.words as aw
# load TXT document
doc = aw.Document("document.txt")
# save TXT as PDF file
doc.save("txt-to-pdf.pdf", aw.SaveFormat.PDF)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment