我有一个下载的档案,我想从中读取一个 pdf 文件。
with zipfile.ZipFile(BytesIO(response_content), 'r') as zip_ref:
for file in zip_ref.infolist():
if file.filename.lower().split('.')[-1] == 'pdf':
test = fitz.open(BytesIO(file)) # This results in a type error
如何在内存中读取 PDF 文件?