You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-python-get-started.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,3 +109,21 @@ Each type of resource is represented by one or more associated Python classes. T
109
109
|[BlobServiceClient](/python/api/azure-storage-blob/azure.storage.blob.blobserviceclient)| Represents the Blob Storage endpoint for your storage account. |
110
110
|[ContainerClient](/python/api/azure-storage-blob/azure.storage.blob.containerclient)| Allows you to manipulate Azure Storage containers and their blobs. |
111
111
|[BlobClient](/python/api/azure-storage-blob/azure.storage.blob.blobclient)| Allows you to manipulate Azure Storage blobs.|
112
+
113
+
The following guides show you how to use each of these classes to build your application.
114
+
115
+
| Guide | Description |
116
+
|--|---|
117
+
|[Create a container](storage-blob-container-create-python.md)| Create containers. |
118
+
|[Delete and restore containers](storage-blob-container-delete-python.md)| Delete containers, and if soft-delete is enabled, restore deleted containers. |
119
+
|[List containers](storage-blob-containers-list-python.md)| List containers in an account and the various options available to customize a listing. |
120
+
|[Manage properties and metadata (containers)](storage-blob-container-properties-metadata-python.md)| Get and set properties and metadata for containers. |
121
+
|[Create and manage container leases](storage-blob-container-lease-python.md)| Establish and manage a lock on a container. |
122
+
|[Create and manage blob leases](storage-blob-lease-python.md)| Establish and manage a lock on a blob. |
123
+
|[Upload blobs](storage-blob-upload-python.md)| Learn how to upload blobs by using strings, streams, file paths, and other methods. |
124
+
|[Download blobs](storage-blob-download-python.md)| Download blobs by using strings, streams, and file paths. |
125
+
|[Copy blobs](storage-blob-copy-python.md)| Copy a blob from one location to another. |
126
+
|[List blobs](storage-blobs-list-python.md)| List blobs in different ways. |
127
+
|[Delete and restore](storage-blob-delete-python.md)| Delete blobs, and if soft-delete is enabled, restore deleted blobs. |
128
+
|[Find blobs using tags](storage-blob-tags-python.md)| Set and retrieve tags as well as use tags to find blobs. |
129
+
|[Manage properties and metadata (blobs)](storage-blob-properties-metadata-python.md)| Get and set properties and metadata for blobs. |
0 commit comments