PPTX
DOCX
XLSX
PDF
ODP
PDF
PS File Viewer for Python
View PS documents in a browser without needing Adobe Acrobat or Automation with Python.
How to view PS files Using Python for .NET Library
In order to view PS 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.
View PS files via Python
You need Aspose.PDF for .NET to try the code in your environment.
- Load the PS with an instance of Document.
- View resultant File.
System Requirements
Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.PDF for .NET DLL referenced in your project.
Python - example code to view PS file.
# load PS with an instance of Document
document = Document("template.ps", PsLoadOptions())
# save document in HTML format
document.Save("output.html", Aspose.Pdf.SaveFormat.Html)