0

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

Community
  • 1
  • 1
Anil Yadav
  • 241
  • 4
  • 15

1 Answers1

0

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.

DirtyHands
  • 149
  • 2
  • 10