打开Azure StorageStreamDownloader而不将其另存为文件

打开Azure StorageStreamDownloader而不将其另存为文件,第1张

打开Azure StorageStreamDownloader而不将其另存为文件

download_blob()
将blob下载到一个
StorageStreamDownloader

类中,并且在该类中有个
download_to_stream
,您将获得blob流。

from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClientfrom io import BytesIOimport PyPDF2filename = "test.pdf"container_name="test"blob_service_client = BlobServiceClient.from_connection_string("connection string")container_client=blob_service_client.get_container_client(container_name)blob_client = container_client.get_blob_client(filename)streamdownloader=blob_client.download_blob()stream = BytesIO()streamdownloader.download_to_stream(stream)fileReader = PyPDF2.PdfFileReader(stream)print(fileReader.numPages)

这就是我的结果。它将打印pdf页码



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5106233.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存