skillfed

azure-keyvault

Microsoft Azure Key Vault Client Libraries for Python

azure-keyvault v4.2.0 10.0M downloads/30d#1,492 on PyPI5,588
Permissive license MIT License Active released

What it is and what it does

Azure-keyvault is a meta-package that bundles three separate Azure Key Vault client libraries into a single install. It contains no code itself; instead, it pulls in azure-keyvault-keys, azure-keyvault-secrets, and azure-keyvault-certificates as runtime dependencies. This is the recommended entry point for developers who need to work with Azure Key Vault from Python and want a single install command rather than installing each sub-package individually.

The package is maintained by Microsoft as part of the Azure SDK for Python and targets Python 3.6 and later using a permissive MIT License. Since version 4.0, the actual APIs are split across the three sub-packages, so code must import from the specific namespace (e.g., azure.keyvault.keys) rather than a unified azure.keyvault module.

Use it for:

  • Install all three Key Vault client libraries at once for a project that needs to manage keys, secrets, and certificates.
  • Simplify dependency management by declaring a single package in requirements.txt instead of three separate entries.
  • Migrate from older monolithic azure-keyvault versions to the modular 4.x structure without manually tracking sub-package versions.

Worth the install?

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

A bundle package that installs three Azure Key Vault client libraries for managing cryptographic keys, secrets, and certificates in Azure Key Vault.

Yes, if you need to work with Azure Key Vault from Python. It is actively maintained, has no known vulnerabilities, and uses a permissive license. The main caveat is that this is a pure meta-installer—actual functionality and stability depend on the three sub-packages it installs. Verify that those sub-packages meet your needs before committing.

Install

azure-keyvault on PyPI

pip

pip install azure-keyvault

uv

uv add azure-keyvault

poetry

poetry add azure-keyvault

Installing azure-keyvault

Before you install

Low install friction with a pure-Python wheel. Actively maintained with recent commits; however, the package itself contains no code and is a meta-installer for three sub-packages, so actual functionality depends on those dependencies.

License in practice

MIT License permits commercial and private use with minimal restrictions, making it suitable for most projects.

Quickstart

pip install azure-keyvault

from azure.keyvault.keys import KeyClient
from azure.keyvault.secrets import SecretClient
from azure.keyvault.certificates import CertificateClient

Requires Python 3.6 or later; Python 2.7 support ended 01 January 2022.

Verify before relying

  • Whether the three sub-packages are individually stable and well-maintained beyond this meta-package.
  • Specific authentication setup requirements for connecting to Azure Key Vault instances.

Package facts

License MIT License (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 3 — azure-keyvault-certificates, azure-keyvault-secrets, azure-keyvault-keys
Maintenance actively maintained — 1,599 days since the last release
Last repo commit
First released
Downloads 9,999,287/month — #1,492 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: azure_keyvault-4.2.0-py2.py3-none-any.whl

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.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

azure key vault clientmanage azure secrets keys certificatesazure keyvault pythonazure credential storageazure key management
azure-sdkkey-managementmeta-package

More Cryptography packages