Posts

Showing posts with the label Azure Table Storage

Azure Table Storage Vs CosmosDB With Python

Answer : The Azure CosmosDB Table SDK IS Azure Storage Tables SDK. Re-branding is part of some re-org inside Microsoft, but this is the same code and same endpoint, same everything. Storage SDK was one big client, it was split into Table/Queue/Blog/Files packages, in order to give ownership of Table to CosmosDB team. https://docs.microsoft.com/en-us/azure/cosmos-db/table-support The new Azure Cosmos DB Python SDK is the only SDK that supports Azure Table storage in Python. This SDK connects with both Azure Table storage and Azure Cosmos DB Table API. You can also compare the code, you'll see: https://github.com/Azure/azure-storage-python/tree/v0.36.0/azure/storage/table https://github.com/Azure/azure-cosmosdb-python/tree/master/azure-cosmosdb-table/azure/cosmosdb/table (I work at MS in the Azure SDK for Python team) Azure Table Storage has a new python library in preview release that is available for installation via pip. To install use the following pip...