Skip to content

Commit 95f1183

Browse files
committed
Apply feeedback from review
1 parent 2f89099 commit 95f1183

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/azure-app-configuration/quickstart-python-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 10/21/2022
1111
ms.author: malev
1212
#Customer intent: As a Python developer, I want to manage all my app settings in one place.
1313
---
14-
# Quickstart: Create a Python app with Azure App Configuration Python provider
14+
# Quickstart: Create a Python app with the Azure App Configuration Python provider
1515

1616
In this quickstart, you will use the Python provider for Azure App Configuration to centralize storage and management of application settings using the [Azure App Configuration Python provider client library](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-appconfiguration-provider).
1717

@@ -20,7 +20,7 @@ The Python App Configuration provider is a library running on top of the Azure S
2020
## Prerequisites
2121

2222
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
23-
- Python 3.6 or later - For information on setting up Python on Windows, see the [Python on Windows documentation](/windows/python/)
23+
- Python 3.6 or later - for information on setting up Python on Windows, see the [Python on Windows documentation](/windows/python/)
2424

2525
## Create an App Configuration store
2626

@@ -95,7 +95,7 @@ The Python App Configuration provider is a library running on top of the Azure S
9595

9696
## Configure your App Configuration connection string
9797

98-
1. Set an environment variable named **AZURE_APP_CONFIG_CONNECTION_STRING**, and set it to the access key to your App Configuration store. At the command line, run the following command:
98+
1. Set an environment variable named **AZURE_APPCONFIG_CONNECTION_STRING**, and set it to the access key to your App Configuration store. At the command line, run the following command:
9999

100100
### [Windows command prompt](#tab/windowscommandprompt)
101101

articles/azure-app-configuration/quickstart-python.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Quickstart for using Azure App Configuration with Python apps using the Python SDK | Microsoft Docs
3-
description: In this quickstart, create a Python app with Azure App Configuration Python SDK to centralize storage and management of application settings separate from your code.
2+
title: Quickstart for using Azure App Configuration with Python apps using the Azure SDK for Python | Microsoft Docs
3+
description: In this quickstart, create a Python app with the Azure SDK for Python to centralize storage and management of application settings separate from your code.
44
services: azure-app-configuration
55
author: maud-lv
66
ms.service: azure-app-configuration
@@ -11,16 +11,16 @@ ms.date: 10/21/2022
1111
ms.author: malev
1212
#Customer intent: As a Python developer, I want to manage all my app settings in one place.
1313
---
14-
# Quickstart: Create a Python app with the Azure App Configuration Python SDK
14+
# Quickstart: Create a Python app with the Azure SDK for Python
1515

16-
In this quickstart, you will use the Azure App Configuration Python SDK to centralize storage and management of application settings using the [Azure App Configuration client library for Python](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-appconfiguration).
16+
In this quickstart, you will use the Azure SDK for Python to centralize storage and management of application settings using the [Azure App Configuration client library for Python](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-appconfiguration).
1717

18-
To use Azure App Configuration with the Python provider instead of the SDK, go to [Python provider](./quickstart-python-provider.md). The Python provider enables loading sets of configurations from an Azure App Configuration store in a managed way.
18+
To use Azure App Configuration with the Python provider instead of the SDK, go to [Python provider](./quickstart-python-provider.md). The Python provider enables loading configuration settings from an Azure App Configuration store in a managed way.
1919

2020
## Prerequisites
2121

2222
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
23-
- Python or 3.6 or later - For information on setting up Python on Windows, see the [Python on Windows documentation](/windows/python/)
23+
- Python 3.6 or later - for information on setting up Python on Windows, see the [Python on Windows documentation](/windows/python/)
2424

2525
## Create an App Configuration store
2626

@@ -75,7 +75,7 @@ To use Azure App Configuration with the Python provider instead of the SDK, go t
7575

7676
## Configure your App Configuration connection string
7777

78-
1. Set an environment variable named **AZURE_APP_CONFIG_CONNECTION_STRING**, and set it to the access key to your App Configuration store. At the command line, run the following command:
78+
1. Set an environment variable named **AZURE_APPCONFIG_CONNECTION_STRING**, and set it to the access key to your App Configuration store. At the command line, run the following command:
7979

8080
### [Windows command prompt](#tab/windowscommandprompt)
8181

@@ -168,7 +168,7 @@ Learn below how to:
168168
The following code snippet creates an instance of **AzureAppConfigurationClient** using the connection string stored in your environment variables.
169169

170170
```python
171-
connection_string = os.getenv('AZURE_APP_CONFIG_CONNECTION_STRING')
171+
connection_string = os.getenv('AZURE_APPCONFIG_CONNECTION_STRING')
172172
app_config_client = AzureAppConfigurationClient.from_connection_string(connection_string)
173173
```
174174

@@ -262,7 +262,7 @@ try:
262262
print("Azure App Configuration - Python Quickstart")
263263
# Quickstart code goes here
264264

265-
connection_string = os.getenv('AZURE_APP_CONFIG_CONNECTION_STRING')
265+
connection_string = os.getenv('AZURE_APPCONFIG_CONNECTION_STRING')
266266
app_config_client = AzureAppConfigurationClient.from_connection_string(connection_string)
267267

268268
retrieved_config_setting = app_config_client.get_configuration_setting(key='TestApp:Settings:Message')

0 commit comments

Comments
 (0)