Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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

Expand Down
6 changes: 4 additions & 2 deletions msgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion msgraph/core/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"""
DEFAULT_REQUEST_TIMEOUT = 100
DEFAULT_CONNECTION_TIMEOUT = 30
SDK_VERSION = '0.1.0'
SDK_VERSION = '0.1.1'