Skip to content

Commit 66a3993

Browse files
authored
Updating names to use appropriate casing.
1 parent 920b296 commit 66a3993

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add the following key-values to the App Configuration store. For more informatio
3333
| *test.message* | *Hello test* | Leave empty | Leave empty |
3434
| *my_json* | *{"key":"value"}* | Leave empty | *application/json* |
3535

36-
## Console Applications
36+
## Console applications
3737

3838
### Connect to App Configuration
3939
1. Create a new directory for the project named *app-configuration-quickstart*.
@@ -173,18 +173,18 @@ Add the following key-values to the App Configuration store. For more informatio
173173
test.message found: False
174174
```
175175
176-
## Web Applications
176+
## Web applications
177177
178178
### [Flask](#tab/flask)
179-
You can use Azure App Configuration in your existing Flask web apps by updating its in-built configuration. You can do this by passing your App Configuration Provider object to the `update` function of your flask app instance in `app.py`:
179+
You can use Azure App Configuration in your existing Flask web apps by updating its in-built configuration. You can do this by passing your App Configuration provider object to the `update` function of your Flask app instance in `app.py`:
180180
181181
```python
182182
azure_app_config = load(connection_string=os.environ.get("AZURE_APPCONFIG_CONNECTION_STRING"))
183183
184184
# NOTE: This will override all existing configuration settings with the same key name.
185185
app.config.update(azure_app_config)
186186
187-
# Access a configuration setting directly from within flask configuration
187+
# Access a configuration setting directly from within Flask configuration
188188
message = app.config.get("message")
189189
```
190190

@@ -195,7 +195,7 @@ You can use Azure App Configuration in your existing Django web apps by adding t
195195
CONFIG = load(connection_string=os.environ.get("AZURE_APPCONFIG_CONNECTION_STRING"))
196196
```
197197

198-
To access individual configuration settings in the Django views, you can reference them from the provider object in Django settings. For example, in `views.py`:
198+
To access individual configuration settings in the Django views, you can reference them from the provider object created in Django settings. For example, in `views.py`:
199199
```python
200200
# Import Django settings
201201
from django.conf import settings
@@ -205,7 +205,7 @@ MESSAGE = settings.CONFIG.get("message")
205205
```
206206
---
207207

208-
Full code samples on how to use Azure App Configuration in Python web applications can be found in the [Azure App Configuration](https://github.com/Azure/AppConfiguration/tree/main/examples/Python) repo.
208+
Full code samples on how to use Azure App Configuration in Python web applications can be found in the [Azure App Configuration](https://github.com/Azure/AppConfiguration/tree/main/examples/Python) GitHub repo.
209209

210210
## Clean up resources
211211

0 commit comments

Comments
 (0)