Microsoft/azure-data-tables-py — Agent Skills | officialskills.sh
Back to skills

azure-data-tables-py

officialdata

Azure Data Tables SDK for Python provides access to Azure Storage Tables and Cosmos DB Table API.

Setup & Installation

npx skills add https://github.com/microsoft/skills --skill azure-data-tables-py
or paste the link and ask your coding assistant to install it
https://github.com/microsoft/skills/tree/main/.github/plugins/azure-sdk-python/skills/azure-data-tables-py
View on GitHub

What This Skill Does

Azure Data Tables SDK for Python provides access to Azure Storage Tables and Cosmos DB Table API. It handles entity CRUD, table management, batch transactions, and OData-style queries using PartitionKey/RowKey addressing.

The SDK handles DefaultAzureCredential auth, parameterized OData filters, and transactional batch submissions in one package, removing the need to hand-roll REST calls or manage ETag concurrency manually.

When to use it

  • Storing IoT sensor readings partitioned by device ID
  • Running batch upserts for order records within a single partition
  • Querying user session data by PartitionKey without a full table scan
  • Migrating relational lookup tables to a low-cost NoSQL key-value store
  • Writing async ingestion pipelines that insert thousands of entities per second