Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.51 KB

File metadata and controls

43 lines (32 loc) · 1.51 KB
page_type languages products
sample
python
azure
azure-app-configuration

Azure App Configuration Data Library Python Samples

Prerequisites

You must have an Azure subscription, and a Configuration Store to use this package.

To create a Configuration Store, you can either use Azure Portal or if you are using Azure CLI you can simply run the following snippet in your console:

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:

pip install azure-appconfiguration

Contents

File Description
hello_world_sample.py / hello_world_async_sample.py demos set/get/delete operations
hello_world_advanced_sample.py / hello_world_advanced_async_sample.py demos add/set with label/list operations
conditional_operation_sample.py / conditional_operation_async_sample.py demos conditional set/get/delete operations
read_only_sample.py / read_only_async_sample.py demos set_read_only operations
list_revision_sample.py / list_revision_async_sample.py demos list revision operations