
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
aspose-slides
Advanced tools
Aspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint.
Product Page | Docs | Demos | API Reference | Blog | Search | Free Support | Release Notes | Temporary License
Aspose.Slides for Python via .NET is a powerful on-premise class library used for processing and working with presentations. With this API, developers and applications get to generate, modify, convert, render, print, and manipulate presentations without relying on Microsoft PowerPoint or other third-party applications and services.
Without having to install a PowerPoint program or any 3rd party component, you can use Aspose.Slides to build different types applications. For example, Aspose, using its own APIs, developed a free web application that allows people to convert their PDF documents to PowerPoint Presentation online.
Aspose.Slides for Python requires you to use python programming language. For C++, Java and .NET languages, we recommend you get Aspose.Slides for C++, Aspose.Slides for Java and Aspose.Slides for .NET, respectively.
Aspose.Slides for Python via .NET provides these popular features:
With Aspose.Slides for Python via .NET, developers and applications can load presentations in these formats (and also save files in them):
| Microsoft presentation formats | OpenOffice presentation formats | Other file formats |
|---|---|---|
| Microsoft PowerPoint 97 | ODP | |
| Microsoft PowerPoint 2000 | OTP | TIFF |
| Microsoft PowerPoint XP | EMF | |
| Microsoft PowerPoint 2003 | XPS | |
| Microsoft PowerPoint 2007 | JPEG | |
| Microsoft PowerPoint 2010 | PNG | |
| Microsoft PowerPoint 2013 | GIF | |
| Microsoft PowerPoint 2016 | BMP | |
| Microsoft PowerPoint 2019 | SVG | |
| Microsoft PowerPoint for MAC | SWF | |
| Office 365 | XAML | |
| HTML |
Aspose.Slides for Python via .NET can be used to develop 32-bit and 64-bit applications for different operating systems (such as Windows, Linux and macOS) where Python 3.5 or later is installed.
Ready to try Aspose.Slides for Python via .NET?
Fetch the package and install Aspose.Slides. Run this command: pip install aspose-slides
If you already have Aspose.Slides installed and want to get the latest version,
you have to run pip install --upgrade aspose-slides instead.
Check out Aspose.Slides for Python for .NET documentation).
On macOS/Linux, you must install libgdiplus before using this package:
brew install mono-libgdiplussudo apt-get install libgdiplusFor complete setup instructions, see installation guide (https://docs.aspose.com/slides/python-net/installation/)
import aspose.slides as slides
# Instantiate a Presentation object that represents a presentation file
with slides.Presentation() as presentation:
slide = presentation.slides[0]
slide.shapes.add_auto_shape(slides.ShapeType.LINE, 50, 150, 300, 0)
presentation.save("NewPresentation_out.pptx", slides.export.SaveFormat.PPTX)
import aspose.slides as slides
# Instantiate a Presentation object that represents a PPT file
presentation = slides.Presentation("PowerPoint.ppt")
# Save the presentation as PDF
presentation.save("PPT-to-PDF.pdf", slides.export.SaveFormat.PDF)
import aspose.slides as slides
with slides.Presentation() as pres:
pres.slides.remove_at(0)
pres.slides.add_from_pdf("welcome-to-powerpoint.pdf")
pres.save("OutputPresentation.pptx", slides.export.SaveFormat.PPTX)
Product Page | Docs | Demos | API Reference | Blog | Search | Free Support | Release Notes | Temporary License
FAQs
Aspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint.
We found that aspose-slides demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.