Skip to content

Commit 535fe3d

Browse files
authored
Add recommended flags to Python article
1 parent 89f150e commit 535fe3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/nosql/how-to-python-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ The preceding code imports modules that you'll use in the rest of the article.
7070

7171
To connect to the API for NoSQL of Azure Cosmos DB, create an instance of the [CosmosClient](/python/api/azure-cosmos/azure.cosmos.cosmosclient) class. This class is the starting point to perform all operations against databases. There are three ways to connect to an API for NoSQL account using the **CosmosClient** class:
7272

73+
- [Connect with Microsoft Entra ID (recommended)](#connect-using-the-microsoft-identity-platform)
7374
- [Connect with an API for NoSQL endpoint and read/write key](#connect-with-an-endpoint-and-key)
7475
- [Connect with an API for NoSQL connection string](#connect-with-a-connection-string)
75-
- [Connect with Microsoft Entra ID](#connect-using-the-microsoft-identity-platform)
7676

7777
### Connect with an endpoint and key
7878

@@ -316,7 +316,7 @@ Create a new instance of the **CosmosClient** class with the ``COSMOS_CONNECTION
316316

317317
:::code language="python" source="~/cosmos-db-nosql-python-samples/003-how-to/app_connection_string.py" id="connection_string":::
318318

319-
### Connect using the Microsoft identity platform
319+
### Connect using the Microsoft identity platform (recommended)
320320

321321
To connect to your API for NoSQL account using the Microsoft identity platform and Microsoft Entra ID, use a security principal. The exact type of principal will depend on where you host your application code. The table below serves as a quick reference guide.
322322

0 commit comments

Comments
 (0)