| title | Use Python to manage properties and metadata for a blob container |
|---|---|
| titleSuffix | Azure Storage |
| description | Learn how to set and retrieve system properties and store custom metadata on blob containers in your Azure Storage account using the Python client library. |
| services | storage |
| author | stevenmatthew |
| ms.service | azure-blob-storage |
| ms.topic | how-to |
| ms.date | 08/05/2024 |
| ms.author | shaas |
| ms.devlang | python |
| ms.custom | devx-track-python, devguide-python |
[!INCLUDE storage-dev-guide-selector-manage-properties-container]
Blob containers support system properties and user-defined metadata, in addition to the data they contain. This article shows how to manage system properties and user-defined metadata with the Azure Storage client library for Python.
To learn about managing properties and metadata using asynchronous APIs, see Set container metadata asynchronously.
[!INCLUDE storage-dev-guide-prereqs-python]
[!INCLUDE storage-dev-guide-project-setup-python]
Add the following import statements:
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob_devguide_container_properties_metadata.py" id="Snippet_imports":::
The authorization mechanism must have the necessary permissions to work with container properties or metadata. For authorization with Microsoft Entra ID (recommended), you need Azure RBAC built-in role Storage Blob Data Reader or higher for the get operations, and Storage Blob Data Contributor or higher for the set operations. To learn more, see the authorization guidance for Get Container Properties (REST API), Set Container Metadata (REST API), or Get Container Metadata (REST API).
[!INCLUDE storage-dev-guide-create-client-python]
-
System properties: System properties exist on each Blob Storage resource. Some of them can be read or set, while others are read-only. Behind the scenes, some system properties correspond to certain standard HTTP headers. The Azure Storage client library for Python maintains these properties for you.
-
User-defined metadata: User-defined metadata consists of one or more name-value pairs that you specify for a Blob storage resource. You can use metadata to store additional values with the resource. Metadata values are for your own purposes only, and don't affect how the resource behaves.
Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see Metadata names.
To retrieve container properties, use the following method:
The following code example fetches a container's system properties and writes the property values to a console window:
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob_devguide_container_properties_metadata.py" id="Snippet_get_container_properties":::
You can specify metadata as one or more name-value pairs on a blob or container resource. To set metadata, use the following method:
Setting container metadata overwrites all existing metadata associated with the container. It's not possible to modify an individual name-value pair.
The following code example sets metadata on a container:
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob_devguide_container_properties_metadata.py" id="Snippet_set_container_metadata":::
To retrieve metadata, call the following method:
The following example reads in metadata values:
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob_devguide_container_properties_metadata.py" id="Snippet_get_container_metadata":::
The Azure Blob Storage client library for Python supports managing container properties and metadata asynchronously. To learn more about project setup requirements, see Asynchronous programming.
Follow these steps to set container metadata using asynchronous APIs:
-
Add the following import statements:
import asyncio from azure.identity.aio import DefaultAzureCredential from azure.storage.blob.aio import BlobServiceClient
-
Add code to run the program using
asyncio.run. This function runs the passed coroutine,main()in our example, and manages theasyncioevent loop. Coroutines are declared with the async/await syntax. In this example, themain()coroutine first creates the top levelBlobServiceClientusingasync with, then calls the method that sets the container metadata. Note that only the top level client needs to useasync with, as other clients created from it share the same connection pool.async def main(): sample = ContainerSamples() # TODO: Replace <storage-account-name> with your actual storage account name account_url = "https://<storage-account-name>.blob.core.windows.net" credential = DefaultAzureCredential() async with BlobServiceClient(account_url, credential=credential) as blob_service_client: await sample.set_metadata(blob_service_client, "sample-container") if __name__ == '__main__': asyncio.run(main())
-
Add code to set the container metadata. The code is the same as the synchronous example, except that the method is declared with the
asynckeyword and theawaitkeyword is used when calling theget_container_propertiesandset_container_metadatamethods.:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob_devguide_container_properties_metadata_async.py" id="Snippet_set_container_metadata":::
With this basic setup in place, you can implement other examples in this article as coroutines using async/await syntax.
To learn more about setting and retrieving container properties and metadata using the Azure Blob Storage client library for Python, see the following resources.
- View synchronous or asynchronous code samples from this article (GitHub)
The Azure SDK for Python contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Python paradigms. The client library methods for setting and retrieving properties and metadata use the following REST API operations:
- Get Container Properties (REST API)
- Set Container Metadata (REST API)
- Get Container Metadata (REST API)
The get_container_properties method retrieves container properties and metadata by calling both the Get Container Properties operation and the Get Container Metadata operation.
[!INCLUDE storage-dev-guide-resources-python]
[!INCLUDE storage-dev-guide-next-steps-python]