Code to import data from table and text frame:
pres = Presentation(ppt_file)
for slide in pres.slides:
for shape in slide.shapes:
if(shape.has_text_frame):
for paragraph in shape.text_frame.paragraphs:
for run in paragraph.runs:
print run.text
I've a slide like this:
Output is: Running text
Text is being read from the left frame or the big box but not from the two right frames.