You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Azure Cosmos DB is Microsoft’s globally distributed multi-model database service. One of the supported APIs is the SQL API, which provides a JSON document model with SQL querying and JavaScript procedural logic. This sample shows you how to use the Azure Cosmos DB with the SQL API to store and access data from a Python application.
14
14
15
+
> You will find a detailed Quickstart here: [Build a Python application using an Azure Cosmos DB SQL API account](https://docs.microsoft.com/azure/cosmos-db/create-sql-api-python)
16
+
15
17
## Running this sample
16
18
17
19
* Before you can run this sample, you must have the following prerequisites:
18
-
*[Azure CLI](https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest) or [Azure Cloud Shell](https://shell.azure.com) - Install if you want to execute commands via the CLI instead of the Azure portal.
19
-
*[Azure Cosmos DB Account](https://docs.microsoft.com/en-us/azure/cosmos-db/) using the Azure portal or the Azure CLI.
20
+
*[Azure CLI](https://docs.microsoft.com/cli/azure/?view=azure-cli-latest) or [Azure Cloud Shell](https://shell.azure.com) - Install if you want to execute commands via the CLI instead of the Azure portal.
21
+
*[Azure Cosmos DB Account](https://docs.microsoft.com/azure/cosmos-db/) using the Azure portal or the Azure CLI.
20
22
* Create with [Azure portal](https://portal.azure.com) and select 'Core (SQL) API'.
21
-
* Create with [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest) with this command: `az cosmosdb create --name <account-name> --resource-group <resource-group-name>`. Note that the default API is Core (SQL) when creating a Cosmos DB account with the CLI.
23
+
* Create with [Azure CLI](https://docs.microsoft.com/cli/azure/?view=azure-cli-latest) with this command: `az cosmosdb create --name <account-name> --resource-group <resource-group-name>`. Note that the default API is Core (SQL) when creating a Cosmos DB account with the CLI.
22
24
*[Visual Studio Code](https://code.visualstudio.com/)
23
25
*[Python extention for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-python.python#overview)
24
26
*[Python 3.6+](https://www.python.org/downloads/) with \<install location\>\Python36 and \<install location>\Python36\Scripts added to your PATH.
@@ -59,7 +61,7 @@ Azure Cosmos DB is Microsoft’s globally distributed multi-model database servi
59
61
The code included in this sample is intended to get you quickly started with a Python application that connects to Azure Cosmos DB with the SQL API.
60
62
61
63
## More information
62
-
64
+
- [Quickstart: Build a Python application using an Azure Cosmos DB SQL API account](https://docs.microsoft.com/azure/cosmos-db/create-sql-api-python)
0 commit comments