PyPDF2 是一个功能虽然不是很多,但却非常好用的第三方库,它提供了pdf文件的读写,拆分,合并等功能,使用pip命令进行安装。
pip3 install PyPDF2
下面是一份合并文件的示例代码
import os
from PyPDF2 import PdfFileMerger
path = '/Users/xujun/Desktop/test'
#获取制定目录下的所有pdf文件名称
path_list = [f for f in os.listdir(path) if f.endswith('.pdf')]
#每个文件名将句号前的字符串转化为数字
path_list.sort(key=lambda x:int(x[:-4]))
print(path_list)
#使用os.path.join方法拼接成绝对路径
pdf_lst = [os.path.join(path, filename) for filename in path_list]
#创建PdfFileMerger对象,用来合并pdf文件的对象
file_merger = PdfFileMerger()
for pdf in pdf_lst:
file_merger.append(pdf) # 将所有文件append
#使用write方法将所有pdf文件写入到一个文件
file_merger.write("/Users/xujun/Desktop/merge.pdf")
print('成功了')
原创文章(本站视频密码:66668888),作者:xujunzju,如若转载,请注明出处:https://zyicu.cn/?p=9207