skillfed

azure-appconfiguration-provider

Microsoft App Configuration Provider Library for Python

azure-appconfiguration-provider v2.5.0 819.9K downloads/30d#4,976 on PyPI5,588
Permissive license MIT License Active released

What it is and what it does

This package extends the base Azure SDK to provide a higher-level provider for loading application configurations from Azure App Configuration stores. It wraps azure-appconfiguration and adds features like dynamic refresh on a schedule, feature flag loading, Key Vault secret resolution, and multi-selector filtering by key patterns, labels, tags, or snapshots. You connect using either a connection string or Entra ID credentials, then call load() to populate a dictionary of settings that your application can access immediately.

The provider handles common configuration management patterns: filtering which settings to load, trimming key prefixes, resolving secrets stored in Key Vault, and periodically checking for changes to refresh your in-memory config. It supports both synchronous and async workflows. Dependencies include azure-core, azure-appconfiguration, azure-keyvault-secrets, and dnspython; all are standard Azure SDK components with low install friction.

Use it for:

  • Centralize application settings across multiple environments (dev, staging, prod) in a single Azure App Configuration store.
  • Load feature flags from Azure and toggle features dynamically without redeploying code.
  • Resolve secrets stored in Azure Key Vault and inject them into your application configuration at startup.
  • Periodically refresh configuration values on a schedule and react to changes via callbacks.
  • Filter and load only relevant configuration subsets using key patterns, labels, or tags.
  • Support multi-region deployments with geo-replication and automatic replica discovery.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Loads application configurations from Azure App Configuration stores into Python applications, with support for dynamic refresh, feature flags, Key Vault secret resolution, and multi-selector filtering.

Yes. The package is actively maintained, has no known vulnerabilities, uses a permissive MIT license, and provides a mature abstraction over Azure's configuration and secrets services. Install it if you are building on Azure and need centralized, dynamic configuration management with feature flags and secret resolution. The low install friction and standard Azure SDK dependencies make adoption straightforward.

Install

azure-appconfiguration-provider on PyPI

pip

pip install azure-appconfiguration-provider

uv

uv add azure-appconfiguration-provider

poetry

poetry add azure-appconfiguration-provider

Installing azure-appconfiguration-provider

Before you install

Low install friction with a pure Python wheel. Maintained actively with recent releases; last commit 2026-08-14. Depends on four Azure SDK packages (azure-core, azure-appconfiguration, azure-keyvault-secrets, dnspython), all standard Azure ecosystem components.

License in practice

MIT License permits commercial use, modification, and distribution with minimal restrictions. Suitable for most projects including proprietary applications.

Quickstart

import os
from azure.appconfiguration.provider import load

connection_string = os.environ["APPCONFIGURATION_CONNECTION_STRING"]
config = load(connection_string=connection_string)
# Access config as a dictionary of key/value pairs

Requires Azure App Configuration store credentials (connection string or Entra ID endpoint) and appropriate Azure permissions to read configurations.

Verify before relying

  • Whether async support via azure.appconfiguration.provider.aio is production-ready and what its performance characteristics are.
  • Behavior and performance of geo-replication load balancing under various failure scenarios.
  • Whether secret refresh via secret_refresh_interval works without active Key Vault connectivity.

Package facts

License MIT License (permissive)
Python support supports the current Python release (>=3.6)
Install friction low — pure-Python wheel
Runtime dependencies 4 — azure-core, azure-appconfiguration, azure-keyvault-secrets, dnspython
Maintenance actively maintained — 80 days since the last release
Last repo commit
First released
Downloads 819,884/month — #4,976 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: azure_appconfiguration_provider-2.5.0-py3-none-any.whl

Keywords: azure, azure sdk

Development Status :: 5 - Production/StableLicense :: OSI Approved :: MIT LicenseProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

azure app configuration providerload azure config pythonazure configuration managementfeature flags azuredynamic configuration refreshkey vault secrets resolverazure settings loader
azure-sdkconfiguration-managementsecrets-handling

More Software Development packages

typing-extensions

Provides backported and experimental type hints…

permissive · top 100 on PyPI

numpy

NumPy provides an N-dimensional array object…

permissive · top 100 on PyPI

fastapi

FastAPI is a Python web framework for building…

permissive · top 100 on PyPI

annotated-doc

Provides a way to document function parameters,…

permissive · top 100 on PyPI

typer

Typer builds command-line applications from…

permissive · top 1,000 on PyPI

distlib

Distlib provides low-level packaging utilities…

permissive · top 1,000 on PyPI

azure-appconfiguration

Provides a Python client to create, retrieve,…

permissive · top 5,000 on PyPI

sample-helper-aws-appconfig

Fetches and caches configuration from AWS…

permissive · top 15,000 on PyPI

pydantic-settings-azure-app-configuration

Loads application configuration and secrets…

unclear · top 15,000 on PyPI

azure-keyvault-secrets

Securely store, retrieve, and manage secrets…

permissive · top 1,000 on PyPI

azure-keyvault-keys

Manages cryptographic keys in Azure Key…

unclear · top 1,000 on PyPI

azure-keyvault-certificates

Manages SSL/TLS certificates stored in Azure…

permissive · top 5,000 on PyPI

azure-keyvault-administration

Manages role-based access control, backup,…

permissive · top 5,000 on PyPI

azure-keyvault-securitydomain

Manages security domains for Azure Key Vault…

permissive · top 5,000 on PyPI

FeatureManagement

Enables runtime control of application features…

permissive · top 15,000 on PyPI

azure-keyvault

A bundle package that installs three Azure Key…

permissive · top 5,000 on PyPI