Извлечь таблицу из Powerpoint - PullRequest
0 голосов
/ 29 января 2019

Я пытаюсь извлечь таблицу из PPT, используя python-pptx, но я не уверен, как мне это сделать, используя shape.table.

from pptx import Presentation
prs = Presentation(path_to_presentation)
# text_runs will be populated with a list of strings,
# one for each text run in presentation
text_runs = []
for slide in prs.slides:
  for shape in slide.shapes:
    if shape.has_table:
      tbl = shape.table
      rows = tbl.rows.count
      cols = tbl.columns.count

Я нашел сообщение здесь но принятое решение не работает, сообщая об ошибке, что атрибут count недоступен.

Как изменить приведенный выше код, чтобы я мог получить таблицу в кадре данных?

РЕДАКТИРОВАТЬ

Пожалуйста, смотрите изображение слайда ниже

enter image description here

1 Ответ

0 голосов
/ 06 февраля 2019

Мне кажется, это работает.


prs = Presentation((path_to_presentation))
# text_runs will be populated with a list of strings,
# one for each text run in presentation
text_runs = []
for slide in prs.slides:
    for shape in slide.shapes:
        if not shape.has_table:
            continue    
        tbl = shape.table
        row_count = len(tbl.rows)
        col_count = len(tbl.columns)
        for r in range(0, row_count):
            for c in range(0, col_count):
                cell = tbl.cell(r,c)
                paragraphs = cell.text_frame.paragraphs 
                for paragraph in paragraphs:
                    for run in paragraph.runs:
                        text_runs.append(run.text)

print(text_runs)```





...