Skip to content

Commit c4a2e22

Browse files
Add next steps to dev guide articles
1 parent 6b0d9b4 commit c4a2e22

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

articles/storage/blobs/storage-blob-python-get-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Follow these steps to use the asynchronous APIs in your project:
6868
from azure.storage.blob.aio import BlobServiceClient, BlobClient, ContainerClient
6969
```
7070

71-
The `import asyncio` statement is only required if you're using the library in your code. It's added here for clarity, as the examples in the [developer guide articles](#build-your-application) use the `asyncio` library.
71+
The `import asyncio` statement is only required if you're using the library in your code. It's added here for clarity, as the examples in the [developer guide articles](#build-your-app) use the `asyncio` library.
7272

7373
- Create a client object using `async with` to begin working with data resources. Only the top level client needs to use `async with`, as other clients created from it share the same connection pool. In this example, we create a `BlobServiceClient` object using `async with`, and then create a `ContainerClient` object:
7474

@@ -85,7 +85,7 @@ Blob async client library information:
8585

8686
## Authorize access and connect to Blob Storage
8787

88-
To connect an application to Blob Storage, create an instance of the [BlobServiceClient](/python/api/azure-storage-blob/azure.storage.blob.blobserviceclient) class. This object is your starting point to interact with data resources at the storage account level. You can use it to operate on the storage account and its containers. You can also use the service client to create container clients or blob clients, depending on the resource you need to work with.
88+
To connect an app to Blob Storage, create an instance of the [BlobServiceClient](/python/api/azure-storage-blob/azure.storage.blob.blobserviceclient) class. This object is your starting point to interact with data resources at the storage account level. You can use it to operate on the storage account and its containers. You can also use the service client to create container clients or blob clients, depending on the resource you need to work with.
8989

9090
To learn more about creating and managing client objects, including best practices, see [Create and manage client objects that interact with data resources](storage-blob-client-management.md).
9191

@@ -95,9 +95,9 @@ You can authorize a `BlobServiceClient` object by using a Microsoft Entra author
9595

9696
## [Microsoft Entra ID (recommended)](#tab/azure-ad)
9797

98-
To authorize with Microsoft Entra ID, you need to use a [security principal](../../active-directory/develop/app-objects-and-service-principals.md). Which type of security principal you need depends on where your application runs. Use the following table as a guide:
98+
To authorize with Microsoft Entra ID, you need to use a [security principal](../../active-directory/develop/app-objects-and-service-principals.md). Which type of security principal you need depends on where your app runs. Use the following table as a guide:
9999

100-
| Where the application runs | Security principal | Guidance |
100+
| Where the app runs | Security principal | Guidance |
101101
| --- | --- | --- |
102102
| Local machine (developing and testing) | Service principal | To learn how to register the app, set up a Microsoft Entra group, assign roles, and configure environment variables, see [Authorize access using developer service principals](/azure/developer/python/sdk/authentication-local-development-service-principal?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json) |
103103
| Local machine (developing and testing) | User identity | To learn how to set up a Microsoft Entra group, assign roles, and sign in to Azure, see [Authorize access using developer credentials](/azure/developer/python/sdk/authentication-local-development-dev-accounts?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json) |
@@ -183,11 +183,11 @@ For information about how to obtain account keys and best practice guidelines fo
183183
184184
---
185185

186-
## Build your application
186+
## Build your app
187187

188-
As you build applications to work with data resources in Azure Blob Storage, your code primarily interacts with three resource types: storage accounts, containers, and blobs. To learn more about these resource types, how they relate to one another, and how apps interact with resources, see [Understand how apps interact with Blob Storage data resources](storage-blob-object-model.md).
188+
As you build apps to work with data resources in Azure Blob Storage, your code primarily interacts with three resource types: storage accounts, containers, and blobs. To learn more about these resource types, how they relate to one another, and how apps interact with resources, see [Understand how apps interact with Blob Storage data resources](storage-blob-object-model.md).
189189

190-
The following guides show you how to work with data resources and perform specific actions using the Azure Storage client library for Python:
190+
The following guides show you how to access data and perform specific actions using the Azure Storage client library for Python:
191191

192192
| Guide | Description |
193193
|--|---|

articles/storage/blobs/storage-blob-tags-python.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,6 @@ The Azure SDK for Python contains libraries that build on top of the Azure REST
143143
### See also
144144

145145
- [Manage and find Azure Blob data with blob index tags](storage-manage-find-blobs.md)
146-
- [Use blob index tags to manage and find data on Azure Blob Storage](storage-blob-index-how-to.md)
146+
- [Use blob index tags to manage and find data on Azure Blob Storage](storage-blob-index-how-to.md)
147+
148+
[!INCLUDE [storage-dev-guide-next-steps-python](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-python.md)]
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "include file"
3+
description: "include file"
4+
services: storage
5+
author: pauljewellmsft
6+
ms.service: azure-blob-storage
7+
ms.topic: include
8+
ms.date: 08/21/2024
9+
ms.author: pauljewell
10+
ms.custom: include file
11+
---
12+
13+
## Next steps
14+
15+
- This article is part of the Blob Storage developer guide for Python. To learn more about other articles in the series, see [Build your app](storage-blob-python-get-started.md#build-your-application).

0 commit comments

Comments
 (0)