windows下的简单的多线程批量解密PDF程序
- 此程序在windows系统下运行
"""多线程批量解密PDF"""
import os
from time import time
from threading import Thread
from PyPDF3 import PdfFileReader,PdfFileWriter
dir = r'C:\Users\decrypt_file' # 需要解密的pdf文件所在的文件夹
password = 'xxxxxxxx' # pdf文件解密密码
os.chdir(

这是一个适用于Windows系统的Python程序,利用多线程技术实现批量解密PDF文件。用户需预先将待解密的PDF文件集中放置,并在代码中设置相应的文件目录和解密密码。
最低0.47元/天 解锁文章
862

被折叠的 条评论
为什么被折叠?



