python自动化办公之PyPDF2.errors.DeprecationError

背景:pypdf2库在不断更新换代里面的类,逐渐淘汰一些旧的类

PyPDF2.errors.DeprecationError的意思是我们代码里用到的类计划被淘汰了,系统不推荐使用,解决办法:根据提示use xxx instead使用xxx 替换之前的类

例子1

PyPDF2.errors.DeprecationError: PdfFileReader is deprecated and was removed in PyPDF2 3.0.0. Use PdfReader instead.

原代码

python 复制代码
# 创建pdf文件阅读器对象
reader=PyPDF2.PdfFileWriter(file)

修改后

reader=PyPDF2.PdfReader(file)

例子2

PyPDF2.errors.DeprecationError: reader.numPages is deprecated and was removed in PyPDF2 3.0.0. Use len(reader.pages) instead.

原代码

python 复制代码
# 获取pdf文件的总页数
total_pages=reader.numPages

修改后

total_pages=len(reader.pages)

相关推荐
LitchiCheng21 小时前
Mujoco 基础:获取模型中所有 body 的 name, id 以及位姿
人工智能·python
杨云龙UP1 天前
SQL Server 备份异地同步 + 清理脚本
运维·服务器·数据库·sql·mysql·sqlserver
老鱼说AI1 天前
算法基础教学第一步:数据结构
数据结构·python·算法
2301_795167201 天前
Python 高手编程系列八:缓存
开发语言·python·缓存
闲人编程1 天前
Django测试框架深度使用:Factory Boy与Fixture对比
数据库·python·django·sqlite·钩子·fixture·codecapsule
梅花141 天前
基于Django房屋租赁系统
后端·python·django·bootstrap·django项目·django网站
今天没有盐1 天前
Python数据分析实战:从超市销售到教学评估
python·pycharm·编程语言
q***48411 天前
Nginx中$http_host、$host、$proxy_host的区别
运维·nginx·http
_lst_1 天前
linux进程状态
linux·运维·服务器
white-persist1 天前
【攻防世界】reverse | IgniteMe 详细题解 WP
c语言·汇编·数据结构·c++·python·算法·网络安全