1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
---
page_type: sample
languages:
- python
products:
- azure
- azure-app-configuration
---
# Azure App Configuration Data Library Python Samples
## Prerequisites
* Python 3.7 or later is required to use this package.
* You must have an [Azure subscription][azure_sub], and a [Configuration Store][configuration_store] to use this package.
To create a Configuration Store, you can either use [Azure Portal](https://ms.portal.azure.com/#create/Microsoft.Azconfig) or if you are using [Azure CLI][azure_cli] you can simply run the following snippet in your console:
```Powershell
az appconfig create --name <config-store-name> --resource-group <resource-group-name> --location eastus
```
## Setup
Install the Azure App Configuration client library for Python with pip:
```commandline
pip install azure-appconfiguration
```
## Contents
| File | Description |
|-------------|-------------|
| hello_world_sample.py / hello_world_sample_async.py | demos set/get/delete operations |
| hello_world_advanced_sample.py / hello_world_advanced_sample_async.py | demos add/set with label/list operations |
| conditional_operation_sample.py / conditional_operation_sample_async.py | demos conditional set/get/delete operations |
| read_only_sample.py / read_only_sample_async.py | demos set_read_only operations |
| list_revision_sample.py / list_revision_sample_async.py | demos list revision operations |
| sync_token_samples.py / sync_token_sample_asyncs.py | demos the `update_sync_token` method |
<!-- LINKS -->
[azure_sub]: https://azure.microsoft.com/free/
[azure_cli]: https://docs.microsoft.com/cli/azure
[configuration_store]: https://azure.microsoft.com/services/app-configuration/
|