def _download_to_stream(self, blobname: str, container: str,
stream: TextIOBase) -> bool:
try:
self._azure_client.get_blob_to_stream(container, blobname, stream)
except AzureMissingResourceHttpError:
return False
else:
return True
评论列表
文章目录