import pdfplumber
import pandas as pd
def extract_tables_to_excel(pdf_path, excel_path):
# 打开PDF文件
with pdfplumber.open(pdf_path) as pdf:
# 创建一个空的DataFrame列表,用于存储所有表格数据
all_tables = []
# 遍历PDF的每一页
for page in pdf.pages:
# 提取当前页的表格
tables = page.extract_tables()
# 将每页的表格转换为DataFrame,并添加到all_tables列表中
for table in tables:
df = pd.DataFrame(table)
all_tables.append(df)
# 将所有表格数据合并为一个DataFrame
combined_tables = pd.concat(all_tables, ignore_index=True)
# 将合并后的表格数据保存到Excel文件中
combined_tables.to_excel(excel_path, index=False)
# PDF文件路径
pdf_path = '1.pdf'
# Excel文件路径
excel_path = 'output_tables.xlsx'
# 调用函数
extract_tables_to_excel(pdf_path, excel_path)
Python应用—从pdf文件中提取表格,并且保存在excel中
翻车吧奥斯卡2024-07-21 21:45
相关推荐
最爱番茄味12 分钟前
Python实例之函数基础打卡篇程序猿000001号33 分钟前
探索Python的pytest库:简化单元测试的艺术engchina1 小时前
如何在 Python 中忽略烦人的警告?Dream_Snowar2 小时前
速通Python 第四节——函数西猫雷婶2 小时前
python学opencv|读取图像(十四)BGR图像和HSV图像通道拆分汪洪墩3 小时前
【Mars3d】设置backgroundImage、map.scene.skyBox、backgroundImage来回切换程序员shen1616114 小时前
抖音短视频saas矩阵源码系统开发所需掌握的技术人人人人一样一样4 小时前
作业Python四口鲸鱼爱吃盐4 小时前
Pytorch | 利用VMI-FGSM针对CIFAR10上的ResNet分类器进行对抗攻击