Use our document conversion API to develop high-level, platform independent software in Python. This is a powerful software solution to import and export Word, PDF, Web documents using Python.
Need to convert a document from one format to another programmatically? With Aspose.Words for Python via .NET any developer can convert files with just a few lines of Python code.
Powerful Python library allows converting documents to many popular formats with professional quality:
The following example demonstrates how to convert a document in Python. Load a file from the local drive, then simply save it, specifying the required file format in extension. For both input and output files you can use fully qualified filenames. The output content and formatting will be identical to the original document.
pip install aspose-words
Copy
import aspose.words as aw
doc = aw.Document("Input.docx")
doc.save("Output.pdf")
import aspose.words as aw
doc = aw.Document("Input.docx")
doc.save("Output.pdf")
import aspose.words as aw
doc = aw.Document("Input.docx")
save_options = aw.saving.ImageSaveOptions(aw.SaveFormat.pdf)
for page in range(doc.page_count):
save_options.page_set = aw.saving.PageSet(page)
doc.save(f"Output_{page + 1}.pdf", save_options)
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.docx")
doc.save("Output.pdf")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.docx")
shape.get_shape_renderer().save("Output.pdf", aw.saving.ImageSaveOptions(aw.SaveFormat.pdf))
We host our Python packages in PyPi repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Python via .NET" to your developer environment.
This package is compatible with Python ≥3.5 and <3.12. If you develop software for Linux, please have a look at additional requirements for gcc and libpython in Product Documentation.