• Free Python 3 Tutorial
  • Control Flow
  • Exception Handling
  • Python Programs
  • Python Projects
  • Python Interview Questions
  • Python Database
  • Data Science With Python
  • Machine Learning with Python
  • How to Clone webpage Using pywebcopy in Python?
  • Python | Generate QR Code using pyqrcode module
  • How to Execute Shell Commands in a Remote Machine using Python - Paramiko
  • Hiding and encrypting passwords in Python?
  • Generate Captcha Using Python
  • Download Instagram Reel using Python
  • Introduction to Social Networks using NetworkX in Python
  • Pathlib module in Python
  • Perform addition and subtraction using CherryPy
  • Taking Screenshots using pyscreenshot in Python
  • Convert Docx to Pdf using docx2pdf Module in Python
  • How to perform multiplication using CherryPy in Python?
  • Track Covid-19 Vaccine Slots using cowin in Python
  • Generating Word Cloud in Python | Set 2
  • Visual TimeTable using pdfschedule in Python
  • Python | Launch a Web Browser using webbrowser module
  • Hyperlink Induced Topic Search (HITS) Algorithm using Networkx Module | Python
  • Python | Calculate Distance between two places using Geopy
  • Emergence of connectedness in Social Networks

Creating and updating PowerPoint Presentations in Python using python – pptx

python-pptx is library used to create/edit a PowerPoint (.pptx) files. This won’t work on MS office 2003 and previous versions.  We can add shapes, paragraphs, texts and slides and much more thing using this library.

Installation: Open the command prompt on your system and write given below command:

Let’s see some of its usage:

Example 1: Creating new PowerPoint file with title and subtitle slide.

Adding title and subtitle to the powerpoint

Example 2: Adding Text-Box in PowerPoint.

Adding text box to the powerpoint

Example 3: PowerPoint (.pptx) file to Text (.txt) file conversion.

how to create a powerpoint presentation using python

Example 4: Inserting image into the PowerPoint file.

Adding images to the powerpoint

Example 5: Adding Charts to the PowerPoint file.

Adding charts to the powerpoint

Example 6: Adding tables to the PowerPoint file.

Adding table to the powerpoint

Please Login to comment...

  • python-modules
  • python-utility
  • 10 Best HuggingChat Alternatives and Competitors
  • Best Free Android Apps for Podcast Listening
  • Google AI Model: Predicts Floods 7 Days in Advance
  • Who is Devika AI? India's 'AI coder', an alternative to Devin AI
  • 30 OOPs Interview Questions and Answers (2024)

Improve your Coding Skills with Practice

 alt=

What kind of Experience do you want to share?

5 Best Ways to Create PowerPoint Files Using Python

💡 Problem Formulation: Automating the creation of PowerPoint presentations is a common task for those who need to generate reports or summaries regularly. For instance, a user may wish to create a presentation summarizing sales data from a CSV file or visualize a project’s progress in a structured format. The desired output is a fully formatted PowerPoint file (.pptx) with various elements like titles, texts, images, and charts, as specified by the input data or customization requirements.

Method 1: Using python-pptx

The python-pptx library provides a comprehensive set of features for creating PowerPoint files (.pptx) in Python. It allows for adding slides, text, images, charts, and more, with a high level of customization. Manipulate slides at a granular level by accessing placeholders, creating bulleted lists, and setting properties like font size or color programmatically.

Here’s an example:

The code snippet above creates a PowerPoint file named python-pptx-presentation.pptx with one slide that includes a title and a subtitle.

In this overview, we create a presentation object, add a new slide with a predefined layout, set text for the title and subtitle placeholders, and then save the presentation. This method gives users the ability to create detailed, professional presentations through code.

Method 2: Using Pandas with python-pptx

This method combines the data manipulation power of Pandas with the presentation capabilities of python-pptx to create PowerPoint files from DataFrame contents. It’s particularly useful for automating the inclusion of tabular data or creating charts based on the DataFrame’s data.

The output is a PowerPoint file named pandas-python-pptx.pptx containing a bar chart representing the quantity of fruits.

This snippet demonstrates using a Pandas DataFrame to generate chart data, which is then used to create a chart in a PowerPoint slide. It showcases the synergy between Pandas for data handling and python-pptx for presentation creation.

Method 3: Using ReportLab with python-pptx

Those seeking to include complex graphics or generate custom visuals can harness the graphic-drawing capabilities of ReportLab with python-pptx. This method leverages ReportLab to create an image, which can then be inserted into a PowerPoint slide.

The output would be a PowerPoint file named reportlab-pptx.pptx containing a slide with a custom bar chart image.

The code above creates a bar chart using ReportLab, saves the chart as an image, and then inserts the image into a PowerPoint slide. This approach is ideal if you need to include bespoke graphics that are not directly supported by python-pptx itself.

Method 4: Using Matplotlib with python-pptx

For those familiar with Matplotlib, this method involves creating a visual plot or chart with Matplotlib, saving it as an image, and then embedding the image into a PowerPoint slide using python-pptx.

The outcome is a PowerPoint file matplotlib-pptx.pptx , with a plot on a slide created by Matplotlib.

In this case, we graph a quadratic function using Matplotlib, save it as an image, and then add that image to a slide in our PowerPoint presentation. This method offers a blend of Matplotlib’s sophisticated plotting tools with the simplicity of python-pptx.

Bonus One-Liner Method 5: Using Officegen

The Officegen package allows for rapid PowerPoint creation with simpler syntax, although with less flexibility compared to python-pptx. It provides functions to add slides, titles, and bullet points.

The outcome is a PowerPoint file officegen-presentation.pptx with a single slide containing a large title.

This snippet uses Officegen to initiate a new presentation, adds a text title to a slide, and saves the presentation. While not as detailed as python-pptx, Officegen is quick for simple presentations.

Summary/Discussion

  • Method 1: python-pptx. Full-featured control over presentations. Can be verbose for simple tasks.
  • Method 2: Pandas with python-pptx. Ideal for data-driven presentations. Setup can be complex if unfamiliar with data libraries.
  • Method 3: ReportLab with python-pptx. Powerful combo for custom graphics. Requires separate handling of graphics and presentation stages.
  • Method 4: Matplotlib with python-pptx. Best for users comfortable with Matplotlib. Less direct than using python-pptx alone.
  • Bonus Method 5: Officegen. Quick and easy for simple presentations. Limited customization options.

Emily Rosemary Collins is a tech enthusiast with a strong background in computer science, always staying up-to-date with the latest trends and innovations. Apart from her love for technology, Emily enjoys exploring the great outdoors, participating in local community events, and dedicating her free time to painting and photography. Her interests and passion for personal growth make her an engaging conversationalist and a reliable source of knowledge in the ever-evolving world of technology.

  • Mailing List

Practical Business Python

Taking care of business, one python script at a time

Creating Powerpoint Presentations with Python

Posted by Chris Moffitt in articles   

Introduction

Love it or loathe it, PowerPoint is widely used in most business settings. This article will not debate the merits of PowerPoint but will show you how to use python to remove some of the drudgery of PowerPoint by automating the creation of PowerPoint slides using python.

Fortunately for us, there is an excellent python library for creating and updating PowerPoint files: python-pptx . The API is very well documented so it is pretty easy to use. The only tricky part is understanding the PowerPoint document structure including the various master layouts and elements. Once you understand the basics, it is relatively simple to automate the creation of your own PowerPoint slides. This article will walk through an example of reading in and analyzing some Excel data with pandas, creating tables and building a graph that can be embedded in a PowerPoint file.

PowerPoint File Basics

Python-pptx can create blank PowerPoint files but most people are going to prefer working with a predefined template that you can customize with your own content. Python-pptx’s API supports this process quite simply as long as you know a few things about your template.

Before diving into some code samples, there are two key components you need to understand: Slide Layouts and Placeholders . In the images below you can see an example of two different layouts as well as the template’s placeholders where you can populate your content.

In the image below, you can see that we are using Layout 0 and there is one placeholder on the slide at index 1.

PowerPoint Layout 0

In this image, we use Layout 1 for a completely different look.

PowerPoint Layout 1

In order to make your life easier with your own templates, I created a simple standalone script that takes a template and marks it up with the various elements.

I won’t explain all the code line by line but you can see analyze_ppt.py on github. Here is the function that does the bulk of the work:

The basic flow of this function is to loop through and create an example of every layout included in the source PowerPoint file. Then on each slide, it will populate the title (if it exists). Finally, it will iterate through all of the placeholders included in the template and show the index of the placeholder as well as the type.

If you want to try it yourself:

Refer to the input and output files to see what you get.

Creating your own PowerPoint

For the dataset and analysis, I will be replicating the analysis in Generating Excel Reports from a Pandas Pivot Table . The article explains the pandas data manipulation in more detail so it will be helpful to make sure you are comfortable with it before going too much deeper into the code.

Let’s get things started with the inputs and basic shell of the program:

After we create our command line args, we read the source Excel file into a pandas DataFrame. Next, we use that DataFrame as an input to create the Pivot_table summary of the data:

Consult the Generating Excel Reports from a Pandas Pivot Table if this does not make sense to you.

The next piece of the analysis is creating a simple bar chart of sales performance by account:

Here is a scaled down version of the image:

PowerPoint Graph

We have a chart and a pivot table completed. Now we are going to embed that information into a new PowerPoint file based on a given PowerPoint template file.

Before I go any farther, there are a couple of things to note. You need to know what layout you would like to use as well as where you want to populate your content. In looking at the output of analyze_ppt.py we know that the title slide is layout 0 and that it has a title attribute and a subtitle at placeholder 1.

Here is the start of the function that we use to create our output PowerPoint:

This code creates a new presentation based on our input file, adds a single slide and populates the title and subtitle on the slide. It looks like this:

PowerPoint Title Slide

Pretty cool huh?

The next step is to embed our picture into a slide.

From our previous analysis, we know that the graph slide we want to use is layout index 8, so we create a new slide, add a title then add a picture into placeholder 1. The final step adds a subtitle at placeholder 2.

Here is our masterpiece:

PowerPoint Chart

For the final portion of the presentation, we will create a table for each manager with their sales performance.

Here is an image of what we’re going to achieve:

PowerPoint Table

Creating tables in PowerPoint is a good news / bad news story. The good news is that there is an API to create one. The bad news is that you can’t easily convert a pandas DataFrame to a table using the built in API . However, we are very fortunate that someone has already done all the hard work for us and created PandasToPowerPoint .

This excellent piece of code takes a DataFrame and converts it to a PowerPoint compatible table. I have taken the liberty of including a portion of it in my script. The original has more functionality that I am not using so I encourage you to check out the repo and use it in your own code.

The code takes each manager out of the pivot table and builds a simple DataFrame that contains the summary data. Then uses the df_to_table to convert the DataFrame into a PowerPoint compatible table.

If you want to run this on your own, the full code would look something like this:

All of the relevant files are available in the github repository .

One of the things I really enjoy about using python to solve real world business problems is that I am frequently pleasantly surprised at the rich ecosystem of very well thought out python tools already available to help with my problems. In this specific case, PowerPoint is rarely a joy to use but it is a necessity in many environments.

After reading this article, you should know that there is some hope for you next time you are asked to create a bunch of reports in PowerPoint. Keep this article in mind and see if you can find a way to automate away some of the tedium!

  • ← Best Practices for Managing Your Code Library
  • Adding a Simple GUI to Your Pandas Script →

Subscribe to the mailing list

Submit a topic.

  • Suggest a topic for a post
  • Pandas Pivot Table Explained
  • Common Excel Tasks Demonstrated in Pandas
  • Overview of Python Visualization Tools
  • Guide to Encoding Categorical Values in Python
  • Overview of Pandas Data Types

Article Roadmap

We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.

PSF Supporting Member

How to Create a PowerPoint Presentation Using Python?

how to create a powerpoint presentation using python

You can create a PowerPoint presentation using Python and the python-pptx library. Here’s an example code snippet:

In this example, we first import the Presentation and Inches classes from the pptx.util module. We then create a new Presentation object using prs = Presentation() .

We add a new slide to the presentation using slide = prs.slides.add_slide(prs.slide_layouts[1]) . We use the slide_layouts attribute of the presentation object to choose a slide layout. In this case, we’re using the layout with a title and subtitle.

We add a title and subtitle to the slide using the title and placeholders attributes of the slide object. We set the text of these placeholders using the text attribute.

We add an image to the slide using the add_picture() method of the slide.shapes object. We specify the path to the image file and the position and size of the image on the slide using the Inches() function.

Finally, we save the presentation to a file using the save() method of the Presentation object.

You can customize the presentation further by adding more slides, text boxes, images, charts, and other elements using the methods and properties provided by the python-pptx library.

Avatar for LearnInfinite

You May Also Like

How to Clear the Python Console?

How to Clear the Python Console?

How to Clear the Output Screen in Python?

How to Clear the Output Screen in Python?

How to Clean Your Python Environment?

How to Clean Your Python Environment?

More from author.

How to Remove All Classes from an Element using JavaScript?

How to Remove All Classes from an Element using JavaScript?

How to Set Up Python Virtual Environments?

How to Set Up Python Virtual Environments?

How to Set Up the Default Python Structure?

How to Set Up the Default Python Structure?

+ there are no comments, leave a reply cancel reply.

how to create a powerpoint presentation using python

How to Create a Previous and Next Button in Tkinter with Python?

how to create a powerpoint presentation using python

How to pass props with styled components with React?

You may also like:.

How to Set Up SublimeLinter for Python Coding?

How to Set Up SublimeLinter for Python Coding?

How to Clear the Python Package Cache?

How to Clear the Python Package Cache?

How to Clear the Python IDLE Console?

How to Clear the Python IDLE Console?

Javatpoint Logo

Python Tutorial

Python oops, python mysql, python mongodb, python sqlite, python questions, python tkinter (gui), python web blocker, related tutorials, python programs.

JavaTpoint

  • Send your Feedback to [email protected]

Help Others, Please Share

facebook

Learn Latest Tutorials

Splunk tutorial

Transact-SQL

Tumblr tutorial

Reinforcement Learning

R Programming tutorial

R Programming

RxJS tutorial

React Native

Python Design Patterns

Python Design Patterns

Python Pillow tutorial

Python Pillow

Python Turtle tutorial

Python Turtle

Keras tutorial

Preparation

Aptitude

Verbal Ability

Interview Questions

Interview Questions

Company Interview Questions

Company Questions

Trending Technologies

Artificial Intelligence

Artificial Intelligence

AWS Tutorial

Cloud Computing

Hadoop tutorial

Data Science

Angular 7 Tutorial

Machine Learning

DevOps Tutorial

B.Tech / MCA

DBMS tutorial

Data Structures

DAA tutorial

Operating System

Computer Network tutorial

Computer Network

Compiler Design tutorial

Compiler Design

Computer Organization and Architecture

Computer Organization

Discrete Mathematics Tutorial

Discrete Mathematics

Ethical Hacking

Ethical Hacking

Computer Graphics Tutorial

Computer Graphics

Software Engineering

Software Engineering

html tutorial

Web Technology

Cyber Security tutorial

Cyber Security

Automata Tutorial

C Programming

C++ tutorial

Control System

Data Mining Tutorial

Data Mining

Data Warehouse Tutorial

Data Warehouse

RSS Feed

  • Trending Categories

Data Structure

  • Selected Reading
  • UPSC IAS Exams Notes
  • Developer's Best Practices
  • Questions and Answers
  • Effective Resume Writing
  • HR Interview Questions
  • Computer Glossary

How to create powerpoint files using Python

Introduction.

We’ve all had to make PowerPoint presentations at some point in our lives. Most often we’ve used Microsoft’s PowerPoint or Google Slides.

But what if you don’t have membership or access to the internet? Or what if you just wanted to do it the “programmers” way?

Well, worry not for Python’s got your back!

In this article you’ll learn how to create a PowerPoint file and add some content to it with the help of Python. So let’s get started!

Getting Started

Throughout this walkthrough, we’ll be using the python-pptx package. This package supports different python versions ranging from 2.6 to 3.6.

So, make sure you have the right version of Python installed on your computer first.

Next, open your terminal and type −

Once the module is successfully installed, you are all set to start coding!

Importing the Modules

Before we get into the main aspects of it, we must first import the right modules to utilise the various features of the package.

So, let’s import the presentation class that contains all the required methods to create a PowerPoint.

Now, we are all set to create a presentation.

Creating a Presentation

Let us now create an object of the Presentation class to access its various methods.

Next, we need to select a layout for the presentation.

how to create a powerpoint presentation using python

As you can see, there are nine different layouts. In the pptx module, each layout is numbered from 0 to 8. So, “Title Slide” is 0 and the “Picture with Caption” is 8.

So, let us first add a title slide.

Now, we have created a layout and added a slide to our presentation.

Let us now add some content to the first slide.

In the above lines, we first add a title to the “first slide” and a subtitle using the placeholder.

Now, let us save the presentation. We can do this using the save command.

If you run the program, it will save the PowerPoint presentation in the directory where your program is saved.

how to create a powerpoint presentation using python

You have successfully created your PowerPoint presentation.

Creating a second slide and adding some content

Firstly, you’ll need to import additional methods to add content.

Let us first create and add the second slide.

Adding title for the next slide,

Now, we must create a textbox and move its layout to suit our needs.

Let us position it and adjust its margins in inches.

The above line of code will place a textbox 3 Inches from left and 1.5 Inches from the top with a width of 3 Inches and height of 1 Inch.

Once we have the layout and position fixed, time to create a textframe to add content to.

Now to add a paragraph of content,

Finally, save the presentation again using the save method.

how to create a powerpoint presentation using python

That’s it! You can now create your own presentation with the help of Python.

And there are a lot more features within the pptx package that allows you to completely customise your presentation from A-Z just the way you do it in GUI.

You can add images, build charts, display statistics and a lot more.

You can go through python-pptx official documentation for more syntaxes and features.

S Vijay Balaji

Related Articles

  • How to convert PDF files to Excel files using Python?
  • How to remove swap files using Python?
  • How to Create a list of files, folders, and subfolders in Excel using Python?
  • How to rename multiple files recursively using Python?
  • How to add audio files using Python kivy
  • How to close all the opened files using Python?
  • How to touch all the files recursively using Python?
  • How to ignore hidden files using os.listdir() in Python?
  • How to remove hidden files and folders using Python?
  • How to read text files using LINECACHE in Python
  • Tips for Using PowerPoint Presentation More Efficiently
  • PowerPoint Alternatives
  • How to copy files to a new directory using Python?
  • How are files added to a tar file using Python?
  • How are files added to a zip file using Python?

Kickstart Your Career

Get certified by completing the course

Samir Saci

Automate PowerPoint Slides Creation with Python

Boost your Productivity with an Automated Tool for the Creation of Supply Chain Operational PowerPoint Reports with Python.

Boost your Productivity with an Automated Tool for the Creation of Supply Chain Operational PowerPoint Reports with Python

Article originally published on Medium .

You are a distribution planning manager in the logistics department of a fashion retail company.

To perform analysis, you connect to the warehouse management system to extract and process data using an automated tool built with Python.

However, you have to spend time manually putting these visuals in slides for your weekly operational reviews.

In this article, we will build a solution to automatically create PowerPoint slides with visuals and comments.

💌 New articles straight in your inbox for free: Newsletter

Have a look at the video version of this article,

Problem Statement

You are part of the distribution planning team of an international clothing retailer with stores on all continents.

how to create a powerpoint presentation using python

Your distribution network includes several local warehouses that replenish the stores.

Monthly Operational Reviews

At the end of the month, you organize an operational review with the store managers to assess the performance of the distribution network.

To animate the discussion you prepare some slides,

  • Extract data from the Warehouse Management System (WMS)
  • Process data and built visuals with Python
  • Prepare a PowerPoint presentation

To be efficient, you would like to automate the process of PowerPoint deck creation.

Your solution will be fully automated

  • Extract order lines of the last month from the WMS SQL database
  • Process the data and compute KPIs with key insights by week
  • Automatically put the visuals and insights in a PowerPoint presentation

how to create a powerpoint presentation using python

The final deck will have slides like the ones below:

  • 5 slides with visuals of the daily workload (left) and 1 slide for the monthly analysis of the order profile (right)
  • A visual generated with Python
  • A comment area will provide insights based on the visual

how to create a powerpoint presentation using python

You can find the source code with dummy data here: Github

Let us explore all the steps to generate your final report with python.

how to create a powerpoint presentation using python

Data Extraction

Connect to your WMS and extract shipment records

  • Create your SQL Query to extract shipment records
  • Use pandas.read_sql_query to do the query
  • Results will be a pandas data frame

If you don’t have access to a WMS database , you can use the dataset shared in the GitHub repo.

Process the data

Add a column that calculates the number of lines per order using pandas.

Create the visuals

Create a simple bar plot chart that shows the number of Lines and Orders prepared per day.

how to create a powerpoint presentation using python

Save the charts

In order to be added to the PowerPoint, you need to save it locally.

Add comments and insights

You can add comments based on the chart you share that will summarize the performance of each week.

Include these comments under the visuals for more clarity.

how to create a powerpoint presentation using python

Create the PowerPoint Decks

We will use the open-source library python-pptx to build our PowerPoint decks.

For more details, have a look at the documentation .

Introduction Slide

We will start with a special introduction slide at the beginning of the presentation.

how to create a powerpoint presentation using python

Daily Analysis Slide by WEEK

The structure of your slide will be always the same

  • A title on top (e.g: Warehouse Workload (WEEK-5))
  • A picture at the centre of the slide
  • A text box for the comment area

how to create a powerpoint presentation using python

💡 TIPS You can change the position of the objects by modifying the parameters of Inches() functions.

Weekly Analysis of Order Profile

In this slide, you will use a stacked bar plot chart and the comments will be based on the full month scope.

how to create a powerpoint presentation using python

💡 TIPS You can change the font size by modifying the parameter of the functions Pt().

Finally, you have a PowerPoint file with 7 slides ready to be used for your meetings.

how to create a powerpoint presentation using python

Conclusion & Next Steps

With this very simple example, you have a template to build your own PowerPoint automation solution.

You can now,

  • Add visuals, tables or smart visuals of PowerPoint (check the documentation)
  • Bring more insights or enrich the text with conditions

This python script can be launched locally on your computer with one click.

You can also automate the report distribution by email using the SMTP library of python.

For more details, you can have a look at this article I published a few weeks ago,

how to create a powerpoint presentation using python

Let’s connect on Linkedin and Twitter , I am a Supply Chain Engineer that is using data analytics to improve logistics operations and reduce costs.

Automate Video Editing with Python

Automate graphic design using python, automate flash cards creation for language learning with python.

Aspose Knowledge Base

Find advice and answers for most commonly faced scenarios.

Find Answers by API

  • Aspose.Total Product Family
  • Aspose.Words Product Family
  • Aspose.PDF Product Family
  • Aspose.Cells Product Family
  • Aspose.Email Product Family
  • Aspose.Slides Product Family
  • Aspose.BarCode Product Family
  • Aspose.Diagram Product Family
  • Aspose.Tasks Product Family
  • Aspose.OCR Product Family
  • Aspose.Note Product Family
  • Aspose.CAD Product Family
  • Aspose.3D Product Family
  • Aspose.HTML Product Family
  • Aspose.GIS Product Family
  • Aspose.ZIP Product Family
  • Aspose.Page Product Family
  • Aspose.PSD Product Family
  • Aspose.OMR Product Family
  • Aspose.PUB Product Family
  • Aspose.SVG Product Family
  • Aspose.Finance Product Family
  • Aspose.Drawing Product Family
  • Aspose.Font Product Family
  • Aspose.TeX Product Family

How to Create PowerPoint Presentation using Python

In this simple article, we will exhibit how to create PowerPoint Presentation using Python by following the detailed steps to set up the environment and run the example on your end. You can create PowerPoint with Python and can view that in any of the presentation viewers including the MS PowerPoint. The example code can be used inside any of .NET Core supported platforms configured with Python.

Steps to Create PowerPoint Presentation using C#

  • Configure the environment to set up Aspose.Slides for Python via .NET in your application
  • Import aspose.pydrawing and aspose.slides in your Python file
  • Generate an empty presentation using the Presentation class object
  • Add a blank Slide in the slides collection using the add_empty_slide method
  • Insert a Rectangle shape inside the slide using the add_auto_shape method
  • Add a text frame using the add_text_frame method and apply different textual properties
  • Using the Save method in Python Powerpoint presentation is generated and saved on the disk

In order to generate a customized PPTX Python API is used by adhering to the aforementioned steps. The process involves creating an empty presentation using the Presentation class and then adding a blank slide inside the slides collection. A Rectangle autoshape is created which is filled with some text by adding a text frame to the shape and setting the textual properties before saving the generated presentation on the disk.

Code to Create PowerPoint With Python

By using the above example in Python Presentation in PPTX format has been created on the disk. The SaveFormat enumerator provides options to save the presentation in PPT, PPS, PPSX, ODP, POT and POTX formats as well. The text inside the slide shape can be further customized by using different properties available in the PortionFormat and the ParagraphFormat classes, including setting the paragraphs bullets, text indentations, margins, underlining and highlighting the text.

In this example, we have seen that in order to create a PPTX presentation Python based API can be used with no reliance on MS PowerPoint. If you are interested in converting a presentation to a PDF, refer to the article on how to convert Presentation to PDF using Python .

Updated on 11 May 2022

  •   Aspose.Slides
  •   Python via Java

Python PowerPoint API for Presentations

Create, read, modify and convert powerpoint and openoffice presentations using python without any external software., aspose.slides for python via java, download from nuget.

Open NuGet package manager, search for and install. You may also use the following command from the Package Manager Console.

Aspose.Slides for Python via Java is a Python library that lets you create, modify, and convert PowerPoint presentations in Python. It supports all presentation elements such as slides, shapes, text, charts, tables, images, and more. It also offers many advanced features such as merging, cloning, splitting, comparing, and printing presentations. It works without any dependencies and can process thousands of presentations in a short time.

Why Choose Aspose.Slides for Python via Java?

Aspose.Slides for Python via Java offers many advantages over other solutions for PowerPoint automation, such as:

  • Cross-platform compatibility : Aspose.Slides for Python via Java supports multiple platforms. You can use Aspose.Slides for Python via Java on Windows, Linux, macOS, and other operating systems.
  • Easy integration and deployment : Aspose.Slides for Python via Java is a standalone library that does not require Microsoft Office or any other software to be installed on your system. You can easily integrate Aspose.Slides for Python via Java with your existing applications and deploy it on any server or cloud environment.
  • Powerful features and functionality : Aspose.Slides for Python via Java provides a rich set of features and functionality for working with PowerPoint presentations, such as creating and modifying slides, adding and editing shapes, text, images, animations, transitions, charts, tables, and other elements, applying themes and layouts, inserting audio and video, exporting and printing presentations, export to video, and much more.
  • High performance and quality : Aspose.Slides for Python via Java delivers high performance and quality results for processing PowerPoint presentations. You can process thousands of presentations in minutes, without compromising the fidelity and accuracy of the output.
  • Free trial and licensing options : Aspose.Slides for Python via Java offers a free trial version that you can download and use for 30 days, without any limitations. You can also choose from various licensing options that suit your needs and budget, such as developer, site, OEM, and cloud licenses.

Advanced Python PowerPoint API Features

Create or clone existing slides from templates

Work with PowerPoint tables via API

Apply or remove the protection on shapes

Add Excel charts as OleObjects to slides

Create shapes and add text to shapes on slides

Handle text & shape formatting

Generate presentations from database

Protect presentations & resultant PDF

Print presentations on a physical printer

System Requirements

  • JDK 1.8 or above
  • Python 3.7 or above
  • JPype1 1.5.0 or above (JPype has been tested on Java versions from 1.8 to 11)

How to Install

Use PyPI to install our Python library for Presentation processing from the PyPI repository:

How to Create New PowerPoint Presentation in Python

In the example given below, we have added a rectangle to the first slide of the presentation.

How to Merge Presentations in Python

This Python code shows you how to merge presentations:

How to Import Presentation From PDF in Python. Convert PDF to PPT, Convert PDF to PPTX, Convert PDF to ODP

This Python code demonstrates the PDF to PowerPoint conversion process:

How to Convert PowerPoint to PDF in Python

This Python code shows you how to convert a PowerPoint PPT, PPTX, and OpenOffice ODP document to a PDF document using the default options. The resulting file is a PDF document at the maximum quality levels

How to Convert PowerPoint to JPG in Python. Convert PPT to JPG, Convert PPTX to JPG, Convert ODP to JPG

The following example shows you how to convert a PowerPoint PPT, PPTX, and OpenOffice ODP document into a set of JPEG images.

Support and Learning Resources

  • Learning Resources
  • Documentation
  • Source Code
  • API References
  • Tutorial Videos
  • Product Support
  • Free Support
  • Paid Support
  • Release Notes
  • Why Aspose.Slides for Python via Java?
  • Customers List
  • Success Stories

Aspose.Slides offers individual PowerPoint APIs for other popular development environments as listed below:

Aspose.Slides for .NET

Aspose.slides for java, aspose.slides for c++, aspose.slides for python via .net, aspose.slides for android via java, aspose.slides for php via java, aspose.slides for node.js via .net, aspose.slides for node.js via java, aspose.slides for sharepoint, aspose.slides for reporting services, aspose.slides for jasperreports.

IMAGES

  1. Create a PowerPoint Presentation Using Python

    how to create a powerpoint presentation using python

  2. Hướng dẫn chi tiết 2021 how to edit powerpoint background Nhanh chóng

    how to create a powerpoint presentation using python

  3. create powerpoint slides python

    how to create a powerpoint presentation using python

  4. Create PowerPoint Presentations with Python

    how to create a powerpoint presentation using python

  5. How to use AI for powerpoint presentation?

    how to create a powerpoint presentation using python

  6. powerpoint

    how to create a powerpoint presentation using python

VIDEO

  1. How to create PowerPoint presentations using chatGPT

  2. 3D points (PLY file) visualization using Python Point Processing Toolkit (PPTK)

  3. Data Visualization in PowerPoint with Python by Anand S

  4. "tutorial on how to create PowerPoint presentation using canva"

  5. Python + OpenAI + Dezgo

  6. How to Create Wonderful Ai PowerPoint Presentation with Chat GPT

COMMENTS

  1. Creating and updating PowerPoint Presentations in Python using python

    Installation: Open the command prompt on your system and write given below command: Let's see some of its usage: Example 1: Creating new PowerPoint file with title and subtitle slide. Output: Example 2: Adding Text-Box in PowerPoint. Output: Example 3: PowerPoint (.pptx) file to Text (.txt) file conversion. Output:

  2. 5 Best Ways to Create PowerPoint Files Using Python

    Method 4: Using Matplotlib with python-pptx. For those familiar with Matplotlib, this method involves creating a visual plot or chart with Matplotlib, saving it as an image, and then embedding the image into a PowerPoint slide using python-pptx. Here's an example: import matplotlib.pyplot as plt.

  3. Creating Powerpoint Presentations with Python

    Here is the start of the function that we use to create our output PowerPoint: def create_ppt(input, output, report_data, chart): """ Take the input powerpoint file and use it as the template for the output file. """ prs = Presentation(input) # Use the output from analyze_ppt to understand which layouts and placeholders # to use # Create a ...

  4. Automate PowerPoint Slides Creation with Python

    II. Create the PowerPoint Decks with Python-pptx. We will use the open-source library python-pptx to build our PowerPoint decks. For more details, have a look at the documentation. 1. Introduction Slide. We will start with a special introduction slide at the beginning of the presentation.

  5. Create PowerPoint Presentations With Python

    In this tutorial I will be showing you how to create POWERPOINT PRESENTATIONS using only Python. This tutorial provides a step-by-step walk-through made to h...

  6. Creating Presentations with Python

    At the end of the article, I am going to build a basic PowerPoint presentation page by page. Let's start with the adding slide. To do this first we need to import the pptx package. from pptx import Presentation. We are going to use Presentation() to open or create a presentation. Let's assign it to a variable.

  7. Working with Presentations

    Opening a presentation ¶. The simplest way to get started is to open a new presentation without specifying a file to open: from pptx import Presentation prs = Presentation() prs.save('test.pptx') This creates a new presentation from the built-in default template and saves it unchanged to a file named 'test.pptx'. A couple things to note:

  8. Using 'python-pptx' To Programmatically Create PowerPoint Slides

    The Basic Structure of python-pptx. After installing the package, using python-pptx is the same as any other library. At the top of the file, import the dependencies you will need: Besides the ...

  9. Create PowerPoint Presentations With Python

    In this tutorial I will be showing you how to create amazing POWERPOINT PRESENTATIONS using only Python. This tutorial provides a step-by-step walk-through m...

  10. Creating Dynamic Presentations with Python

    To use a template in Python, you'll need to load an existing presentation as a template. You can do this using the following code: template = Presentation('template.pptx') presentation = Presentation(template) This code loads the presentation template.pptx and creates a new presentation based on that template.

  11. How to Create a PowerPoint Presentation Using Python?

    In this example, we first import the Presentation and Inches classes from the pptx.util module. We then create a new Presentation object using prs = Presentation().. We add a new slide to the presentation using slide = prs.slides.add_slide(prs.slide_layouts[1]).We use the slide_layouts attribute of the presentation object to choose a slide layout. In this case, we're using the layout with a ...

  12. Creating and Updating PowerPoint Presentation using Python

    Verifying the Installation. Once the module is installed, we can verify it by creating an empty Python program file and writing an import statement as follows: File: verify.py. import python-pptx. Now, save the above file and execute it using the following command in a terminal: Syntax: $ python verify.py.

  13. How to create powerpoint files using Python

    Layout = X.slide_layouts[0] first_slide = X.slides.add_slide(Layout) # Adding first slide. Now, we have created a layout and added a slide to our presentation. Let us now add some content to the first slide. first_slide.shapes.title.text = "Creating a powerpoint using Python". first_slide.placeholders[1].text = "Created by Tutorialpoints".

  14. Create a PowerPoint Presentation Using Python

    For this example, I created a simple bar chart in Python using a public Airbnb dataset for Asheville, NC. The python-pptx can control almost every element in PowerPoint that is available when working with PowerPoint directly. It is possible to start with a PowerPoint template, an existing presentation, or create the entire presentation.

  15. Automate PowerPoint Presentation Report with Python

    Using python-pptx. To help us automate the PowerPoint presentation report, we would use the Python package called python-pptx. It is a Python package developed to create and update PowerPoint files. To start using the package, we need to install it first with the following code. pip install python-pptx.

  16. Automate PowerPoint Slides Creation with Python

    Create the PowerPoint Decks. We will use the open-source library python-pptx to build our PowerPoint decks. For more details, have a look at the documentation. Introduction Slide. We will start with a special introduction slide at the beginning of the presentation. First Slide — (Image by Author) Code. Daily Analysis Slide by WEEK

  17. Parse PowerPoint Documents using Python: "The Easy Way!"

    Here is a list of features provided by the python-pptx library: Create Presentations: Generate new PowerPoint presentations or modify existing ones. Slide Layouts: Choose from a variety of predefined slide layouts to structure your presentation. Text Handling: Add titles, subtitles, bullet points, and various text elements to slides.

  18. How can I automate the generation of a powerpoint with python

    3. You can use python-pptx library. It is a Python library for creating and updating PowerPoint (.pptx) files. This includes: Round-trip any Open XML presentation (.pptx file) including all its elements Add slides Populate text placeholders, for example to create a bullet slide Add image to slide at arbitrary position and size Add textbox to a ...

  19. How to Create PowerPoint Presentation using Python

    Steps to Create PowerPoint Presentation using C#. Configure the environment to set up Aspose.Slides for Python via .NET in your application. Import aspose.pydrawing and aspose.slides in your Python file. Generate an empty presentation using the Presentation class object. Add a blank Slide in the slides collection using the add_empty_slide method.

  20. python

    One solution for you would be to use the PowerPoint Viewer program instead. PPT Viewer is set to open a PowerPoint file straight away in Presentation mode. Alternatively, you can use the argument /s to start Powerpoint. "powerpoint.exe /s <filename>.ppt". This will be equivalent to telling PowerPoint to straight away open up in Presentation mode.

  21. Python PowerPoint API by Aspose.Slides

    Aspose.Slides for Python via Java is a Python library that lets you create, modify, and convert PowerPoint presentations in Python. It supports all presentation elements such as slides, shapes, text, charts, tables, images, and more. It also offers many advanced features such as merging, cloning, splitting, comparing, and printing presentations.

  22. How to make impressive PowerPoint presentations using AI

    Large Language Models (LLMs) such as ChatGPT-4, Claude 3 Opus, and Google Gemini 1.5 Pro has introduced a transformative approach to creating PowerPoint presentations, a task once exclusive to ...