--- id: azure-data-tables version: "12.7.0" license: MIT License license_treatment: permissive maintenance: active --- # azure-data-tables — Microsoft Azure Azure Data Tables Client Library for Python License: permissive · Maintenance: active · Downloads: 14.4M/mo ## 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 above — 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 pip install azure-data-tables uv add azure-data-tables poetry add azure-data-tables ## Installing 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://.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_current - Install friction: low - Maintenance: active - Downloads: 14.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags azure tables client, nosql data storage python, azure storage tables, cosmos db tables access, table service client, azure data tables sdk, azure-sdk, nosql, cloud-storage [View on SkillFed](https://skillfed.io/packages/azure-data-tables) · [View on PyPI](https://pypi.org/project/azure-data-tables/)