Skip to content

Commit cfb3233

Browse files
Edits
1 parent 8d3e781 commit cfb3233

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

includes/storage-dev-guides/storage-dev-guide-create-client-python.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ ms.date: 08/19/2024
99
ms.author: pauljewell
1010
ms.custom: include file
1111
---
12+
13+
#### Create a client object
14+
1215
To connect an app to Blob Storage, create an instance of [BlobServiceClient](/python/api/azure-storage-blob/azure.storage.blob.blobserviceclient). The following example shows how to create a client object using `DefaultAzureCredential` for authorization:
1316

1417
```python
@@ -20,5 +23,5 @@ credential = DefaultAzureCredential()
2023
blob_service_client = BlobServiceClient(account_url, credential=credential)
2124
```
2225

23-
You can also create client objects for specific [containers](../../articles/storage/blobs/storage-blob-client-management.md#create-a-blobcontainerclient-object) or [blobs](../../articles/storage/blobs/storage-blob-client-management.md#create-a-blobclient-object). To learn more about creating and managing client objects, see [Create and manage client objects that interact with data resources](../../articles/storage/blobs/storage-blob-client-management.md).
26+
You can also create client objects for specific [containers](../../articles/storage/blobs/storage-blob-client-management.md?tabs=python#create-a-blobcontainerclient-object) or [blobs](../../articles/storage/blobs/storage-blob-client-management.md?tabs=python#create-a-blobclient-object). To learn more about creating and managing client objects, see [Create and manage client objects that interact with data resources](../../articles/storage/blobs/storage-blob-client-management.md).
2427

0 commit comments

Comments
 (0)