Skip to content

Commit f54c92f

Browse files
Edits
1 parent 805bf9c commit f54c92f

5 files changed

+11
-7
lines changed

articles/storage/blobs/storage-blob-container-create-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: pauljewellmsft
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 01/10/2023
10+
ms.date: 01/24/2023
1111
ms.author: pauljewell
1212
ms.subservice: blobs
1313
ms.devlang: python

articles/storage/blobs/storage-blob-container-delete-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: pauljewellmsft
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 01/10/2023
10+
ms.date: 01/24/2023
1111
ms.author: pauljewell
1212
ms.subservice: blobs
1313
ms.devlang: python

articles/storage/blobs/storage-blob-container-lease-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: pauljewell
88

99
ms.service: storage
1010
ms.topic: how-to
11-
ms.date: 01/10/2023
11+
ms.date: 01/24/2023
1212
ms.subservice: blobs
1313
ms.devlang: python
1414
ms.custom: devx-track-python, devguide-python

articles/storage/blobs/storage-blob-container-properties-metadata-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: pauljewellmsft
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 01/10/2023
10+
ms.date: 01/24/2023
1111
ms.author: pauljewell
1212
ms.devlang: python
1313
ms.custom: devx-track-python, devguide-pythons

articles/storage/blobs/storage-blob-containers-list-python.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: pauljewellmsft
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 01/10/2023
10+
ms.date: 01/24/2023
1111
ms.author: pauljewell
1212
ms.subservice: blobs
1313
ms.devlang: python
@@ -34,14 +34,18 @@ To filter the list of containers, specify a string or character for the `name_st
3434

3535
## Code examples
3636

37-
The following example lists all containers, including metadata, and specifies a limit for the number of results per page:
37+
The following example lists all containers names and any associated metadata:
3838

3939
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_list_containers":::
4040

41-
The following example lists all containers that begin with the specified prefix:
41+
The following example lists only containers that begin with a specified prefix:
4242

4343
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_list_containers_prefix":::
4444

45+
You can also specify a limit for the number of results per page:
46+
47+
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_list_containers_pages":::
48+
4549
## Resources
4650

4751
To learn more about listing containers using the Azure Blob Storage client library for Python, see the following resources.

0 commit comments

Comments
 (0)