Move Pages to PDF via Python
Move Pages in PDF document. Use Aspose.PDF for Python for .NET to modify PDF files programmatically
How to Move pages to PDF Using Python
In order to move page in PDF file, we’ll use Aspose.PDF for .NET API which is a feature-rich, powerful and easy to use document manipulation API for python-net platform. Open NuGet package manager, search for Aspose.PDF and install. You may also use the following command from the Package Manager Console.
Move Page to PDF via Python
You need Aspose.PDF for Python to try the code in your environment.
- Create a Document object with the input PDF file.
- Get Page from the the PageCollection collection’s.
- Save the output PDF using the Save method.
- Add page to the destination document. Save output file.
- Delete page in source document.
- Save the source PDF using the Save method.