feature: delete a slide
See original GitHub issueIn order to modify an existing presentation to suit a new purpose As a developer using python-pptx I need the ability to delete a slide
API perhaps:
slides.remove(slide)
# OR
slides.remove(slide_a, slide_b, ...)
# alternately
slides.remove(*slides[2:4])
# OR
slide.delete()
Issue Analytics
- State:
- Created 10 years ago
- Reactions:6
- Comments:35 (7 by maintainers)
Top Results From Across the Web
Add and delete slides in PowerPoint - Microsoft Support
Single slide - Right-click and select Delete Slide. · Multiple slides - Hold Ctrl and select the slides you want then right-click and...
Read more >How to delete a slide in PowerPoint - Adobe
To delete a slide, simply highlight the slide you want to delete by clicking it in the left slide list and pressing either...
Read more >How To Delete A Slide On Google Slides - TechNewsToday
Navigate to the slide you want to delete. Right-click on it and select delete from the list of options. The slide will automatically...
Read more >How to delete a slide in Microsoft PowerPoint - PresenterMedia
Using your mouse, click on the preview of the slide you wish to delete. Next, right-click on the slide and select "Delete" from...
Read more >Method to Delete a Slide in PowerPoint
Select the slide to be deleted and hit the "Delete" key on your keyboard; you can also right-click on a slide and choose...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thank you for the info as I also needed to delete some slides. based on @krzys-andrei work I made this function that deletes a slide object from a prs object.
thank you @jdgodchaux ! this successfully remove slides #22 to #118 from the pptx file :