Update data pptx file in python using python-pptx lib If anybody have code please share
from pptx import Presentation
import Image
prs = Presentation('SamplePowerpoint.pptx') try: from PIL import Image except ImportError: import Image
Update data pptx file in python using python-pptx lib If anybody have code please share
from pptx import Presentation
prs = Presentation('SamplePowerpoint.pptx') try: from PIL import Image except ImportError: import Image
use xlswriter library in python, use link below to know in details https://xlsxwriter.readthedocs.io/
using this you can insert anything like images, graphs, charts, table data etc, its very easy and straight forward.