如何使用 Python SDK for Azure 获取存储帐户中文件的 Etag?

How can I obtain Etag of a file in a storage account using Python SDK for Azure?

我想在我的 python 代码中获取与上传到我的存储帐户中的文件关联的 etag。

请使用以下代码:

from azure.storage.blob import BlockBlobService

block_blob_service = BlockBlobService(account_name='xx', account_key='xx')

myetag = block_blob_service.get_blob_properties("your_container","the_blob_name").properties.etag

print(myetag)

测试结果: