Skip to content

Commit cb90cde

Browse files
mario-guerramario-guerra
andauthored
change azure data tables to azure tables (Azure#20637)
Co-authored-by: mario-guerra <[email protected]>
1 parent d1c2808 commit cb90cde

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

sdk/tables/azure-data-tables/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Azure Data Tables client library for Python
1+
# Azure Tables client library for Python
22

3-
Azure Data Tables is a NoSQL data storage service that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS.
3+
Azure Tables is a NoSQL data storage service that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS.
44
Tables scales as needed to support the amount of data inserted, and allow for the storing of data with non-complex accessing.
5-
The Azure Data Tables client can be used to access Azure Storage or Cosmos accounts. This document covers [`azure-data-tables`][Tables_pypi].
5+
The Azure Tables client can be used to access Azure Storage or Cosmos accounts. This document covers [`azure-data-tables`][Tables_pypi].
66

77
Please note, this package is a replacement for [`azure-cosmosdb-tables`](https://github.com/Azure/azure-cosmos-table-python/tree/master/azure-cosmosdb-table) which is now deprecated. See the [migration guide][migration_guide] for more details.
88

99
[Source code][source_code] | [Package (PyPI)][Tables_pypi] | [API reference documentation][Tables_ref_docs] | [Samples][Tables_samples]
1010

1111
## Getting started
12-
The Azure Data Tables SDK can access an Azure Storage or CosmosDB account.
12+
The Azure Tables SDK can access an Azure Storage or CosmosDB account.
1313

1414
### Prerequisites
1515
* Python 2.7, or 3.6 or later is required to use this package.
@@ -22,13 +22,13 @@ The Azure Data Tables SDK can access an Azure Storage or CosmosDB account.
2222
* To create a new cosmos storage account, you can use the [Azure CLI][azure_cli_create_cosmos] or [Azure Portal][azure_portal_create_cosmos].
2323

2424
### Install the package
25-
Install the Azure Data Tables client library for Python with [pip][pip_link]:
25+
Install the Azure Tables client library for Python with [pip][pip_link]:
2626
```bash
2727
pip install azure-data-tables
2828
```
2929

3030
#### Create the client
31-
The Azure Data Tables library allows you to interact with two types of resources:
31+
The Azure Tables library allows you to interact with two types of resources:
3232
* the tables in your account
3333
* the entities within those tables.
3434
Interaction with these resources starts with an instance of a [client](#clients). To create a client object, you will need the account's table service endpoint URL and a credential that allows you to access the account. The `endpoint` can be found on the page for your storage account in the [Azure Portal][azure_portal_account_url] under the "Access Keys" section or by running the following Azure CLI command:
@@ -111,12 +111,12 @@ Common uses of the Table service included:
111111
* Quickly querying data using a clustered index
112112
* Accessing data using the OData protocol and LINQ filter expressions
113113

114-
The following components make up the Azure Data Tables Service:
114+
The following components make up the Azure Tables Service:
115115
* The account
116116
* A table within the account, which contains a set of entities
117117
* An entity within a table, as a dictionary
118118

119-
The Azure Data Tables client library for Python allows you to interact with each of these components through the
119+
The Azure Tables client library for Python allows you to interact with each of these components through the
120120
use of a dedicated client object.
121121

122122
### Clients
@@ -252,7 +252,7 @@ the client level to enable it for all requests.
252252
## Troubleshooting
253253

254254
### General
255-
Azure Data Tables clients raise exceptions defined in [Azure Core][azure_core_readme].
255+
Azure Tables clients raise exceptions defined in [Azure Core][azure_core_readme].
256256
When you interact with the Azure table library using the Python SDK, errors returned by the service respond ot the same HTTP status codes for [REST API][tables_rest] requests. The Table service operations will throw a `HttpResponseError` on failure with helpful [error codes][tables_error_codes].
257257

258258
For examples, if you try to create a table that already exists, a `409` error is returned indicating "Conflict".
@@ -306,10 +306,10 @@ service_client.create_entity(entity=my_entity, logging_enable=True)
306306

307307
Get started with our [Table samples][tables_samples].
308308

309-
Several Azure Data Tables Python SDK samples are available to you in the SDK's GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Tables.
309+
Several Azure Tables Python SDK samples are available to you in the SDK's GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Tables.
310310

311311
### Common Scenarios
312-
These code samples show common scenario operations with the Azure Data tables client library. The async versions of the samples (the python sample files appended with _async) show asynchronous operations with Tables and require Python 3.5 or later.
312+
These code samples show common scenario operations with the Azure Tables client library. The async versions of the samples (the python sample files appended with _async) show asynchronous operations with Tables and require Python 3.5 or later.
313313

314314
* Create and delete tables: [sample_create_delete_table.py](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/sample_create_delete_table.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/async_samples/sample_create_delete_table_async.py))
315315
* List and query tables: [sample_query_tables.py](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/sample_query_tables.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/async_samples/sample_query_tables_async.py))
@@ -319,7 +319,7 @@ These code samples show common scenario operations with the Azure Data tables cl
319319
* Committing many requests in a single transaction: [sample_batching.py](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/sample_batching.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/tables/azure-data-tables/samples/async_samples/sample_batching_async.py))
320320

321321
### Additional documentation
322-
For more extensive documentation on Azure Data Tables, see the [Azure Data Tables documentation][Tables_product_doc] on docs.microsoft.com.
322+
For more extensive documentation on Azure Tables, see the [Azure Tables documentation][Tables_product_doc] on docs.microsoft.com.
323323

324324
## Known Issues
325325
A list of currently known issues relating to Cosmos DB table endpoints can be found [here](https://aka.ms/tablesknownissues).

0 commit comments

Comments
 (0)