Skip to content

Commit 7e020dd

Browse files
authored
Merge pull request #94 from microsoftgraph/task/update-preview-info
Update project doctring and Readme with preview disclaimer
2 parents bb080c4 + dd81346 commit 7e020dd

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
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)
22

3-
## Microsoft Graph Core Python Client Library
3+
## Microsoft Graph Core Python Client Library(Preview Version)
44

55
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.
66

7+
**Disclaimer**: Please, be aware that preview versions of `msgraph-core` package are for testing purpose only. Do not use them in a production environment.
8+
79
## Prerequisites
810

911
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
2022

2123
### 2. Install the required packages
2224

23-
`pip install msgraph-core`
24-
`pip install azure-identity`
25+
msgraph-core is available on PyPI.
26+
27+
`python -m pip install msgraph-core`
28+
`python -m pip install azure-identity`
2529

2630
### 3. Import modules
2731

msgraph/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
# Copyright (c) Microsoft Corporation.
33
# Licensed under the MIT License.
44
# -----------------------------------
5+
6+
# pylint: disable=line-too-long
7+
# This is to allow complete package description on PyPI
58
"""
6-
Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable
7-
middleware pipeline
9+
Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable middleware pipeline (Preview).
810
"""
911
from .core import SDK_VERSION
1012

msgraph/core/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"""
99
DEFAULT_REQUEST_TIMEOUT = 100
1010
DEFAULT_CONNECTION_TIMEOUT = 30
11-
SDK_VERSION = '0.1.0'
11+
SDK_VERSION = '0.1.1'

0 commit comments

Comments
 (0)