diff --git a/README.md b/README.md index a4904335..10c2b347 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ [![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 +## Microsoft Graph Core Python Client Library(Preview Version) 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. +**Disclaimer**: Please, be aware that preview versions of `msgraph-core` package are for testing purpose only. Do not use them in a production environment. + ## Prerequisites Python 3.5+ (this library doesn't support older versions of Python) @@ -20,8 +22,10 @@ To call Microsoft Graph, your app must acquire an access token from the Microsof ### 2. Install the required packages - `pip install msgraph-core` - `pip install azure-identity` +msgraph-core is available on PyPI. + + `python -m pip install msgraph-core` + `python -m pip install azure-identity` ### 3. Import modules diff --git a/msgraph/__init__.py b/msgraph/__init__.py index cbddafd2..4080dc1f 100644 --- a/msgraph/__init__.py +++ b/msgraph/__init__.py @@ -2,9 +2,11 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. # ----------------------------------- + +# pylint: disable=line-too-long +# This is to allow complete package description on PyPI """ -Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable -middleware pipeline +Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable middleware pipeline (Preview). """ from .core import SDK_VERSION diff --git a/msgraph/core/_constants.py b/msgraph/core/_constants.py index 96cbb799..42d4875d 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.0' +SDK_VERSION = '0.1.1'