pptx 文件版面分析-- python-pptx(python 文档解析提取)

安装

sql 复制代码
pip install python-pptx -i https://pypi.tuna.tsinghua.edu.cn/simple --ignore-installed

pptx 解析代码实现

python 复制代码
from pptx import Presentation
file_name = "rag_pptx/test1.pptx"
# 打开.pptx文件
ppt = Presentation(file_name)
for slide in ppt.slides:
	#print(slide)
	for shape in slide.shapes:
		if shape.has_text_frame:
			text_frame = shape.text_frame
			print(text_frame.text)

参考
【非一般程序员训练营 第二季 ------ RAG 潘多拉宝盒 任务二 版面分析模块】
python-pptx库中文文档及使用样例
pypi/python-pptx/
英文文档
中文文档

相关推荐
杨丰玮4182 分钟前
从零手写Java飞机躲障碍游戏|Swing绘图、鼠标跟随、计时器碰撞检测实战(五)
java·python·游戏·游戏引擎·图形渲染·动画·贴图
frjc3 分钟前
阿里云 ACK 环境 Arthas 在线调试指南
开发语言·python
Python私教15 分钟前
如意智影:如何让同一个人物在多个镜头里保持身份一致
人工智能·python·架构
高洁0142 分钟前
智能体的“记忆”难题
python·深度学习·机器学习·transformer
三十岁老牛再出发1 小时前
8月21日总结
c++·python
草莓熊Lotso1 小时前
【Linux网络加餐】手动部署:SSH 与 Web 服务实战 + 底层原理全解析
linux·运维·网络·人工智能·python·langchain·ssh
weixin_440730501 小时前
python+request实现接口-参数化小结
开发语言·python
Logintern092 小时前
Celery 死信队列 Dead‑Letter Queue(DLQ)
python
Python私教2 小时前
四个入口,一条流水线:如意智影的多入口架构取舍
人工智能·python·架构
weixin_BYSJ19872 小时前
springboot智慧公共交通系统---附源码51123
java·javascript·spring boot·python·django·flask·php