azure-data-tables
Microsoft Azure Azure Data Tables Client Library for Python
What it is and what it does
Azure Tables is a NoSQL storage service that scales to accommodate variable data volumes and supports non-complex data access patterns. The azure-data-tables package is the official Python client library for interacting with Azure Tables, replacing the deprecated azure-cosmosdb-tables package. It allows you to create and manage tables, insert, update, delete, and query entities, and supports multiple authentication methods including shared keys, connection strings, SAS tokens, and Microsoft Entra ID (for Storage endpoints).
The library works with both Azure Storage accounts and Cosmos DB accounts, providing a unified interface for table operations. It requires Python 3.9 or later and depends on azure-core for common Azure SDK functionality, along with yarl, isodate, and typing-extensions for URL handling, ISO date parsing, and type hints. The package is actively maintained, production-stable, and carries no known security vulnerabilities.
Use it for:
- Store and retrieve semi-structured data (entities with flexible schemas) at scale in Azure.
- Build applications that need fast key-value lookups or range queries on partition and row keys.
- Migrate from the deprecated azure-cosmosdb-tables package to the current supported client.
- Implement audit logs or time-series data storage with automatic partitioning by date or tenant.
- Access table data from Python applications running on-premises or in cloud environments via HTTP/HTTPS.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a Python client for reading, writing, and querying data in Azure Tables (a NoSQL storage service accessible via HTTP/HTTPS), supporting both Azure Storage and Cosmos DB accounts.
Yes. This is the official, actively maintained Python client for Azure Tables. It has low install friction, permissive licensing, no known vulnerabilities, and is production-stable. Install it if you need to read, write, or query data in Azure Storage or Cosmos DB tables from Python.
Install
azure-data-tables on PyPI
pip
pip install azure-data-tablesuv
uv add azure-data-tablespoetry
poetry add azure-data-tablesInstalling azure-data-tables
Before you install
Low install friction with a pure-Python wheel. Actively maintained with recent releases; last commit 2026-08-14. Requires Python 3.9 or later and four lightweight runtime dependencies (azure-core, yarl, isodate, typing-extensions).
License in practice
MIT License (permissive). No restrictions on commercial or private use; you may modify and redistribute as long as you include the license notice.
Quickstart
pip install azure-data-tables
from azure.data.tables import TableServiceClient
from azure.core.credentials import AzureNamedKeyCredential
credential = AzureNamedKeyCredential("account_name", "access_key")
with TableServiceClient(
endpoint="https://<account_name>.table.core.windows.net",
credential=credential
) as client:
properties = client.get_service_properties()
Requires an Azure Storage or Cosmos DB account with valid credentials (shared key, connection string, SAS token, or TokenCredential).
Verify before relying
- Performance characteristics and throughput limits for large-scale operations.
- Whether all Azure Tables features are fully supported or if some are limited.
- Exact behavior differences between Storage Tables and Cosmos DB Tables endpoints.
Package facts
| License | MIT License (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — azure-core, yarl, isodate, typing-extensions |
| Maintenance | actively maintained — 465 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 14,434,698/month — #1,230 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: azure_data_tables-12.7.0-py3-none-any.whl
Keywords: azure, azure sdk
Tags
More Database packages
psycopg2-binary is a PostgreSQL database…
copyleft · top 1,000 on PyPI
redisPython client library for connecting to and…
permissive · top 1,000 on PyPI
ydbYDB Python SDK is the official client library…
permissive · top 1,000 on PyPI
snowflake-connector-pythonConnects Python applications to Snowflake data…
permissive · top 1,000 on PyPI
sqlparsesqlparse tokenizes SQL text into a tree of…
permissive · top 1,000 on PyPI
dbt-adaptersProvides base adapter protocols and shared…
permissive · top 1,000 on PyPI
azure-storage-blobClient library for uploading, downloading, and…
permissive · top 1,000 on PyPI
PowerPlatform-Dataverse-ClientA Python client library for Microsoft Dataverse…
unclear · top 15,000 on PyPI
azure-cosmosdb-tableClient library for reading, writing, and…
permissive · top 5,000 on PyPI
azure-storage-queueClient library for interacting with Azure Queue…
permissive · top 1,000 on PyPI
azure-cosmosPython client library for Azure Cosmos DB SQL…
permissive · top 1,000 on PyPI
azure-mgmt-cosmosdbProvides programmatic management of Azure…
permissive · top 5,000 on PyPI
pydocumentdbPython client library for interacting with…
permissive · top 15,000 on PyPI
azure-storage-file-shareInteract with Azure File Share storage—create,…
permissive · top 5,000 on PyPI
agent-framework-azure-cosmosProvides Azure Cosmos DB integration for the…
permissive · top 15,000 on PyPI
azure-maps-searchProvides a Python client for Azure Maps Search…
permissive · top 15,000 on PyPI