python-pptx从幻灯片标题中提取文本

时间:2017-04-12 10:01:18

标签: python python-pptx

我正在python中构建一个文档检索引擎,它返回根据用户提交的查询的相关性排序的文档。我有一组文件,其中也包括PowerPoint文件。对于PPT,在结果页面上,我想向用户显示前几个幻灯片标题,以便为他/她提供更清晰的图片(有点像我们在Google搜索中看到的)。

基本上,我想使用python从PPT文件中提取幻灯片标题中的文本。我正在使用 python-pptx 包。目前我的实现看起来像这样

from pptx import Presentation
prs = Presentation(filepath) # load the ppt
slide_titles = [] # container foe slide titles
for slide in prs.slides: # iterate over each slide
        title_shape =  slide.shapes[0] # consider the zeroth indexed shape as the title
        if title_shape.has_text_frame: # is this shape has textframe attribute true then
            # check if the slide title already exists in the slide_title container
            if title_shape.text.strip(""" !@#$%^&*)(_-+=}{][:;<,>.?"'/<,""")+ '. ' not in slide_titles: 
                slide_titles.append(title_shape.text.strip(""" !@#$%^&*)(_-+=}{][:;<,>.?"'/<,""")+ '. ')  

但是你可以看到我假设每张幻灯片上的零索引形状都是幻灯片标题,这显然不是每次都是这样。有关如何实现这一目标的任何想法?

提前致谢。

3 个答案:

答案 0 :(得分:1)

Slide.shapes(一个SlideShapes对象)具有属性.title,当有一个(通常是)时返回标题形状,如果没有标题则返回None。
http://python-pptx.readthedocs.io/en/latest/api/shapes.html#slideshapes-objects

这是访问标题形状的首选方式。

请注意,并非所有幻灯片都有标题形状,因此您必须测试None结果,以避免在这种情况下出现错误。

另请注意,用户有时会为标题使用不同的形状,例如可能会添加单独的新文本框。因此,您无法保证将“显示”的文本作为幻灯片中的标题。但是,您将获得与PowerPoint认为标题相匹配的文本,例如,它在“大纲”视图中显示为该幻灯片的标题的文本。

答案 1 :(得分:1)

local_pptxFileList = ["abc.pptx"]


for i in local_pptxFileList:
            ppt = Presentation(i)
            for slide in ppt.slides:
                for shape in slide.shapes:
                    if shape.has_text_frame:
                        print(shape.text)
                       

答案 2 :(得分:0)

如何从目录中的pptx中提取所有文本(来自this blog

from pptx import Presentation
import glob

for eachfile in glob.glob("*.pptx"):
    prs = Presentation(eachfile)
    print(eachfile)
    print("----------------------")
    for slide in prs.slides:
        for shape in slide.shapes:
            if hasattr(shape, "text"):
                print(shape.text)