azure-appconfiguration-py

Featured

Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.

AI & Automation 40,440 stars 6528 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Azure App Configuration SDK for Python Centralized configuration management with feature flags and dynamic settings. ## Installation ```bash pip install azure-appconfiguration ``` ## Environment Variables ```bash AZURE_APPCONFIGURATION_CONNECTION_STRING=Endpoint=https://<name>.azconfig.io;Id=...;Secret=... # Or for Entra ID: AZURE_APPCONFIGURATION_ENDPOINT=https://<name>.azconfig.io ``` ## Authentication ### Connection String ```python from azure.appconfiguration import AzureAppConfigurationClient client = AzureAppConfigurationClient.from_connection_string( os.environ["AZURE_APPCONFIGURATION_CONNECTION_STRING"] ) ``` ### Entra ID ```python from azure.appconfiguration import AzureAppConfigurationClient from azure.identity import DefaultAzureCredential client = AzureAppConfigurationClient( base_url=os.environ["AZURE_APPCONFIGURATION_ENDPOINT"], credential=DefaultAzureCredential() ) ``` ## Configuration Settings ### Get Setting ```python setting = client.get_configuration_setting(key="app:settings:message") print(f"{setting.key} = {setting.value}") ``` ### Get with Label ```python # Labels allow environment-specific values setting = client.get_configuration_setting( key="app:settings:message", label="production" ) ``` ### Set Setting ```python from azure.appconfiguration import ConfigurationSetting setting = ConfigurationSetting( key="app:settings:message", value="Hello, World!", label="development", content_type="text/pl...

Details

Author
sickn33
Repository
sickn33/antigravity-awesome-skills
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category