python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
download python-pptx from streamlit
I'm using python-pptx and streamlit. I'm creating a ppt from python like this:
from pptx import Presentation
import streamlit as st
prs = Presentation()
title_slide_layout = prs.slide_layouts[0]
slid...
Tonino Fernandez
Votes: 0
Answers: 1
Python-pptx, find special text and replace with image
I'm trying to replace text in PowerPoint slides with an image. For example, if I find <graph1> I would like to replace that text with the picture "picture2.png".
I found this code on a...
guiguilecodeur
Votes: 0
Answers: 1
How can i import a plotly graph into my ppt file (with pypptx)
I have to do a complicated graph on a ppt. Of course i started with the pyppt library but there is very little documentation and you quickly find yourself stuck/
So i did my graph with plotly.graph (...
guiguilecodeur
Votes: 0
Answers: 0
How to save Xml file to pptx file after editing it in python?
I want to change some values in pptx file. For that I have converted the pptx file into xml file and changed the value using below code. But I don't know how can I save this new file as an pptx file. ...
Battron Swissbutt
Votes: 0
Answers: 1