Aspose.Slides


NameAspose.Slides JSON
Version 24.3.0 PyPI version JSON
download
home_pagehttps://products.aspose.com/slides/python-net/
SummaryAspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint.
upload_time2024-03-17 19:51:44
maintainer
docs_urlNone
authorAspose
requires_python>=3.5,<3.12
licensehttps://company.aspose.com/legal/eula
keywords ppt pptx potx pot pps ppsx odt import export convert edit pdf xps swf svg html html5 powerpoint presentation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Presentation Manipulation Python API

[![banner](https://raw.githubusercontent.com/Aspose/aspose.github.io/master/img/banners/aspose_slides-for-python-net-banner.png)](https://releases.aspose.com/slides/python-net/)

[Product Page](https://products.aspose.com/slides/python-net/) | [Docs](https://docs.aspose.com/slides/python-net/) | [Demos](https://products.aspose.app/slides/family) | [API Reference](https://docs.aspose.com/slides/python-net/api-reference/) | [Blog](https://blog.aspose.com/category/slides/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/slides) | [Release Notes](https://releases.aspose.com/slides/python-net/release-notes/2024/aspose-slides-for-python-net-24-3-release-notes/) | [Temporary License](https://purchase.aspose.com/temporary-license)

[Aspose.Slides for Python via .NET](https://products.aspose.com/slides/python-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](https://products.aspose.app/slides/import/pdf-to-powerpoint) 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++](https://products.aspose.com/slides/cpp/), [Aspose.Slides for Java](https://products.aspose.com/slides/java/) and [Aspose.Slides for .NET](https://products.aspose.com/slides/net/), respectively.

## Slides API Features

Aspose.Slides for Python via .NET provides these popular features:
- Loading, opening, and viewing presentations 
- Editing presentations
- Converting presentations to PDF, Word, JPG, HTML, GIF, SVG, and many other formats
- Rendering and printing presentations
- Encrypting and decrypting presentations; password-protecting presentations and removing passwords
- Manipulating presentation entities, such as master slides, shapes, charts, picture frames, audio frames, video frames, OLE, VBA macros, animations, etc.

## Supported File Formats

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|PDF|
|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|


## Platform Independence

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. 

## Get Started

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](http://docs.aspose.com/slides/python-net/)).  

## Create a Presentation (PPTX file) from scratch in Python

```py
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)

```

## Convert a Presentation to PDF

```py
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 PDF and Save it as a Presentation

```py
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](https://products.aspose.com/slides/python-net/) | [Docs](https://docs.aspose.com/slides/python-net/) | [Demos](https://products.aspose.app/slides/family) | [API Reference](https://docs.aspose.com/slides/python-net/api-reference/) | [Blog](https://blog.aspose.com/category/slides/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/slides) | [Release Notes](https://releases.aspose.com/slides/python-net/release-notes/2024/aspose-slides-for-python-net-24-3-release-notes/) | [Temporary License](https://purchase.aspose.com/temporary-license)


            

Raw data

            {
    "_id": null,
    "home_page": "https://products.aspose.com/slides/python-net/",
    "name": "Aspose.Slides",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5,<3.12",
    "maintainer_email": "",
    "keywords": "ppt,pptx,potx,pot,pps,ppsx,odt,import,export,convert,edit,pdf,xps,swf,svg,html,html5,powerpoint,presentation",
    "author": "Aspose",
    "author_email": "",
    "download_url": "",
    "platform": "macos_x86_64",
    "description": "# Presentation Manipulation Python API\n\n[![banner](https://raw.githubusercontent.com/Aspose/aspose.github.io/master/img/banners/aspose_slides-for-python-net-banner.png)](https://releases.aspose.com/slides/python-net/)\n\n[Product Page](https://products.aspose.com/slides/python-net/) | [Docs](https://docs.aspose.com/slides/python-net/) | [Demos](https://products.aspose.app/slides/family) | [API Reference](https://docs.aspose.com/slides/python-net/api-reference/) | [Blog](https://blog.aspose.com/category/slides/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/slides) | [Release Notes](https://releases.aspose.com/slides/python-net/release-notes/2024/aspose-slides-for-python-net-24-3-release-notes/) | [Temporary License](https://purchase.aspose.com/temporary-license)\n\n[Aspose.Slides for Python via .NET](https://products.aspose.com/slides/python-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. \n\nWithout 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](https://products.aspose.app/slides/import/pdf-to-powerpoint) that allows people to convert their PDF documents to PowerPoint Presentation online.\n\n>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++](https://products.aspose.com/slides/cpp/), [Aspose.Slides for Java](https://products.aspose.com/slides/java/) and [Aspose.Slides for .NET](https://products.aspose.com/slides/net/), respectively.\n\n## Slides API Features\n\nAspose.Slides for Python via .NET provides these popular features:\n- Loading, opening, and viewing presentations \n- Editing presentations\n- Converting presentations to PDF, Word, JPG, HTML, GIF, SVG, and many other formats\n- Rendering and printing presentations\n- Encrypting and decrypting presentations; password-protecting presentations and removing passwords\n- Manipulating presentation entities, such as master slides, shapes, charts, picture frames, audio frames, video frames, OLE, VBA macros, animations, etc.\n\n## Supported File Formats\n\nWith Aspose.Slides for Python via .NET, developers and applications can load presentations in these formats (and also save files in them): \n\n\n|**Microsoft presentation formats**|**OpenOffice presentation formats**|**Other file formats**|\n| :- | :- | :- |\n|Microsoft PowerPoint 97|ODP|PDF|\n|Microsoft PowerPoint 2000|OTP|TIFF|\n|Microsoft PowerPoint XP| |EMF|\n|Microsoft PowerPoint 2003| |XPS|\n|Microsoft PowerPoint 2007| |JPEG|\n|Microsoft PowerPoint 2010| |PNG|\n|Microsoft PowerPoint 2013| |GIF|\n|Microsoft PowerPoint 2016| |BMP|\n|Microsoft PowerPoint 2019| |SVG|\n|Microsoft PowerPoint for MAC| |SWF|\n|Office 365| |XAML|\n|||HTML|\n\n\n## Platform Independence\n\nAspose.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. \n\n## Get Started\n\nReady to try Aspose.Slides for Python via .NET?\n\nFetch the package and install **Aspose.Slides**. Run this command: `pip install aspose.slides`\n\nIf you already have **Aspose.Slides** installed and want to get the latest version, \nyou have to run `pip install --upgrade aspose.slides` instead. \n\nCheck out Aspose.Slides for Python for .NET [documentation](http://docs.aspose.com/slides/python-net/)).  \n\n## Create a Presentation (PPTX file) from scratch in Python\n\n```py\nimport aspose.slides as slides\n\n# Instantiate a Presentation object that represents a presentation file\nwith slides.Presentation() as presentation:\n    slide = presentation.slides[0]\n    slide.shapes.add_auto_shape(slides.ShapeType.LINE, 50, 150, 300, 0)\n    presentation.save(\"NewPresentation_out.pptx\", slides.export.SaveFormat.PPTX)\n\n```\n\n## Convert a Presentation to PDF\n\n```py\nimport aspose.slides as slides\n\n# Instantiate a Presentation object that represents a PPT file\npresentation = slides.Presentation(\"PowerPoint.ppt\")\n\n# Save the presentation as PDF\npresentation.save(\"PPT-to-PDF.pdf\", slides.export.SaveFormat.PDF)\n```\n\n## Import PDF and Save it as a Presentation\n\n```py\nimport aspose.slides as slides\n\nwith slides.Presentation() as pres:\n    pres.slides.remove_at(0)\n    pres.slides.add_from_pdf(\"welcome-to-powerpoint.pdf\")\n    pres.save(\"OutputPresentation.pptx\", slides.export.SaveFormat.PPTX)\n```\n\n\n[Product Page](https://products.aspose.com/slides/python-net/) | [Docs](https://docs.aspose.com/slides/python-net/) | [Demos](https://products.aspose.app/slides/family) | [API Reference](https://docs.aspose.com/slides/python-net/api-reference/) | [Blog](https://blog.aspose.com/category/slides/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/slides) | [Release Notes](https://releases.aspose.com/slides/python-net/release-notes/2024/aspose-slides-for-python-net-24-3-release-notes/) | [Temporary License](https://purchase.aspose.com/temporary-license)\n\n",
    "bugtrack_url": null,
    "license": "https://company.aspose.com/legal/eula",
    "summary": "Aspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint.",
    "version": "24.3.0",
    "project_urls": {
        "API Reference": "https://reference.aspose.com/slides/python-net/",
        "Blog": "https://blog.aspose.com/category/slides/",
        "Demos": "https://products.aspose.com/slides/conversion/",
        "Docs": "https://docs.aspose.com/slides/python-net/",
        "Free Support": "https://forum.aspose.com/c/slides",
        "Homepage": "https://products.aspose.com/slides/python-net/",
        "Release Notes": "https://releases.aspose.com/slides/python-net/release-notes/2024/aspose-slides-for-python-net-24-3-release-notes/",
        "Search": "https://search.aspose.com/",
        "Temporary License": "https://purchase.aspose.com/temporary-license"
    },
    "split_keywords": [
        "ppt",
        "pptx",
        "potx",
        "pot",
        "pps",
        "ppsx",
        "odt",
        "import",
        "export",
        "convert",
        "edit",
        "pdf",
        "xps",
        "swf",
        "svg",
        "html",
        "html5",
        "powerpoint",
        "presentation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a569909d048eae80f79f0241e532237eb456a1517123754793df35fd761251a",
                "md5": "a5d7fb9fe3df2bcadfeb5c25d8aa4f08",
                "sha256": "7769fbb6934c39af1597da2e301a0ebdba9de11ad970329ecdb2ddcc3f9a5b9c"
            },
            "downloads": -1,
            "filename": "Aspose.Slides-24.3.0-py3-none-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5d7fb9fe3df2bcadfeb5c25d8aa4f08",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5,<3.12",
            "size": 76941302,
            "upload_time": "2024-03-17T19:51:44",
            "upload_time_iso_8601": "2024-03-17T19:51:44.323127Z",
            "url": "https://files.pythonhosted.org/packages/8a/56/9909d048eae80f79f0241e532237eb456a1517123754793df35fd761251a/Aspose.Slides-24.3.0-py3-none-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c5132793fa1991f5d09362f70deb715ef456857d5f473db0d24e8684caadf0e",
                "md5": "dd2c8c4416ac59e35e0fcf9823d7ddb8",
                "sha256": "968dc6ce8856e5960497b77174bddcbaa83ba5c8776f125c60712f34aee10870"
            },
            "downloads": -1,
            "filename": "Aspose.Slides-24.3.0-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd2c8c4416ac59e35e0fcf9823d7ddb8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5,<3.12",
            "size": 55425957,
            "upload_time": "2024-03-17T19:52:15",
            "upload_time_iso_8601": "2024-03-17T19:52:15.359506Z",
            "url": "https://files.pythonhosted.org/packages/4c/51/32793fa1991f5d09362f70deb715ef456857d5f473db0d24e8684caadf0e/Aspose.Slides-24.3.0-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63004e7b19b0302afb788b827f2324c2c0aadeabb5393b9726cb183ef3b63386",
                "md5": "bf965d43850e3a81c31e6bda9139ad47",
                "sha256": "9b789a34cc969c91ca95ff636d3f6a3fa8b415e2a7205058cfc61b6ec788c8d8"
            },
            "downloads": -1,
            "filename": "Aspose.Slides-24.3.0-py3-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf965d43850e3a81c31e6bda9139ad47",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5,<3.12",
            "size": 88702663,
            "upload_time": "2024-03-17T19:53:02",
            "upload_time_iso_8601": "2024-03-17T19:53:02.847320Z",
            "url": "https://files.pythonhosted.org/packages/63/00/4e7b19b0302afb788b827f2324c2c0aadeabb5393b9726cb183ef3b63386/Aspose.Slides-24.3.0-py3-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a88f05ba5c11499f072a136d7c2c313a82ec10320e204304b0c7c67440892675",
                "md5": "e9abbe71e48e40cdd625fff70d0971b4",
                "sha256": "234f91addef8a6ca173fa485f2a6835a60031e9a42b6a1eebbe3edda121402a0"
            },
            "downloads": -1,
            "filename": "Aspose.Slides-24.3.0-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e9abbe71e48e40cdd625fff70d0971b4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5,<3.12",
            "size": 57543090,
            "upload_time": "2024-03-17T19:53:37",
            "upload_time_iso_8601": "2024-03-17T19:53:37.200986Z",
            "url": "https://files.pythonhosted.org/packages/a8/8f/05ba5c11499f072a136d7c2c313a82ec10320e204304b0c7c67440892675/Aspose.Slides-24.3.0-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bf95c59ff70e6a0e3e6ef3373cf2cb5d809894efcb88b0be332fa31fd1512da",
                "md5": "efc0bddf0a95857d3ee906a1742da20f",
                "sha256": "b116f2896ab30eac78e65e57a15aeed0f81d61d0e44b6c59e9d7753c930a3ab0"
            },
            "downloads": -1,
            "filename": "Aspose.Slides-24.3.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "efc0bddf0a95857d3ee906a1742da20f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5,<3.12",
            "size": 65203814,
            "upload_time": "2024-03-17T19:54:11",
            "upload_time_iso_8601": "2024-03-17T19:54:11.076362Z",
            "url": "https://files.pythonhosted.org/packages/8b/f9/5c59ff70e6a0e3e6ef3373cf2cb5d809894efcb88b0be332fa31fd1512da/Aspose.Slides-24.3.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-17 19:51:44",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "aspose.slides"
}
        
Elapsed time: 0.22719s