我不想得到任何下载只是得到数据流,我可以阅读使用Pandas后
>! the parameters of BlobServiceClient are correctly provided
BSC= BlobServiceClient()
self.stream = BytesIO()
BSC.get_blob_client(
self.container, self.filename
).download_blob(offset=0).readinto(self.stream)
实际上,我想替换下面的代码,它使用的是旧版本的azure-storage-blob
self.servivce = BlockBLobService()
self.stream = BytesIO()
self.service.get_blob_to_stream(self.container, self.filename, self.stream)
self.stream.seek(0)
wrapper = TextIOWrapper(self.stream, encoding="utf-8")
return wrapper
1条答案
按热度按时间szqfcxe21#
来自文档: