How to know the size of an Azure blob object via Python Azure SDK
问题 Following the Microsoft Azure documentation for Python developers. The azure.storage.blob.models.Blob class does have a private method called __sizeof__() . But it returns a constant value of 16, whether the blob is empty (0 byte) or 1 GB. Is there any method/attribute of a blob object with which I can dynamically check the size of the object? To be clearer, this is how my source code looks like. for i in blobService.list_blobs(container_name=container, prefix=path): if i.name.endswith('.json