From 860217d1d5e64fb4f5f429ef3cbbfbab501087a1 Mon Sep 17 00:00:00 2001 From: samwelkanda Date: Thu, 10 Jun 2021 20:38:35 +0300 Subject: [PATCH 1/2] Fix typos in the README --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 10c2b347..39905d1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![CI Actions Status](https://github.com/microsoftgraph/msgraph-sdk-python-core/workflows/msgraph-sdk-python-core/badge.svg)](https://github.com/microsoftgraph/msgraph-sdk-python-core/actions) -## Microsoft Graph Core Python Client Library(Preview Version) +## Microsoft Graph Core Python Client Library (preview). The Microsoft Graph Core Python client library is a lightweight wrapper around the Microsoft Graph API. It provides functionality to create clients with desired configuration and middleware. @@ -17,15 +17,17 @@ The Microsoft Graph Core Python client library is a lightweight wrapper around t To call Microsoft Graph, your app must acquire an access token from the Microsoft identity platform. Learn more about this - - [Authentication and authorization basics for Microsoft Graph](https://docs.microsoft.com/en-us/graph/auth/auth-concepts) -- [Register your app with the Microsoft identity platform](https://docs.microsoft.com/en-us/graph/auth/auth-concepts) +- [Register your app with the Microsoft identity platform](https://docs.microsoft.com/en-us/graph/auth-register-app-v2) ### 2. Install the required packages msgraph-core is available on PyPI. - `python -m pip install msgraph-core` - `python -m pip install azure-identity` +```cmd +python -m pip install msgraph-core +python -m pip install azure-identity +``` ### 3. Import modules @@ -57,7 +59,7 @@ result = client.get('/me') print(result.json()) ``` -For more information on how to use the package, refer to the [samples](https://github.com/microsoftgraph/msgraph-sdk-python-core/tree/dev/samples) +For more information on how to use the package, refer to the [samples](https://github.com/microsoftgraph/msgraph-sdk-python-core/tree/dev/samples). ## Issues @@ -65,7 +67,7 @@ View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-sdk ## Contributing -Please see the [contributing guidelines](CONTRIBUTING.rst) +Please see the [contributing guidelines](CONTRIBUTING.rst). ## Copyright and license From 7aa445981f9c494f2504f3bf2fdf29086688c683 Mon Sep 17 00:00:00 2001 From: samwelkanda Date: Thu, 10 Jun 2021 20:40:22 +0300 Subject: [PATCH 2/2] Bump version to 0.1.2 --- msgraph/core/_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msgraph/core/_constants.py b/msgraph/core/_constants.py index 42d4875d..8c4fde0e 100644 --- a/msgraph/core/_constants.py +++ b/msgraph/core/_constants.py @@ -8,4 +8,4 @@ """ DEFAULT_REQUEST_TIMEOUT = 100 DEFAULT_CONNECTION_TIMEOUT = 30 -SDK_VERSION = '0.1.1' +SDK_VERSION = '0.1.2'