freshcrate
Skin:/
Home > Developer Tools > msgraph-sdk

msgraph-sdk

The Microsoft Graph Python SDK

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

# Microsoft Graph SDK for Python [![PyPI version](https://badge.fury.io/py/msgraph-sdk.svg)](https://badge.fury.io/py/msgraph-sdk) [![Downloads](https://pepy.tech/badge/msgraph-sdk)](https://pepy.tech/project/msgraph-sdk) [![Supported Versions](https://img.shields.io/pypi/pyversions/msgraph-sdk.svg)](https://pypi.org/project/msgraph-sdk) [![Contributors](https://img.shields.io/github/contributors/microsoftgraph/msgraph-sdk-python.svg)](https://github.com/microsoftgraph/msgraph-sdk-python/graphs/contributors) Get started with the Microsoft Graph SDK for Python by integrating the [Microsoft Graph API](https://docs.microsoft.com/graph/overview) into your Python application. > **Note:** > > * This SDK allows you to build applications using the [v1.0](https://docs.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, try the [beta](https://github.com/microsoftgraph/msgraph-beta-sdk-python) SDK. ## 1. Installation ```py pip install msgraph-sdk ``` > **Note:** > > * The Microsoft Graph SDK for Python is a fairly large package. It may take a few minutes for the initial installation to complete. > * Enable long paths in your environment if you receive a `Could not install packages due to an OSError`. For details, see [Enable Long Paths in Windows 10, Version 1607, and Later](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=powershell#enable-long-paths-in-windows-10-version-1607-and-later). ## 2. Getting started with Microsoft Graph ### 2.1 Register your application Register your application by following the steps at [Register your app with the Microsoft Identity Platform](https://docs.microsoft.com/graph/auth-register-app-v2). ### 2.2 Select and create an authentication provider To start writing code and making requests to the Microsoft Graph service, you need to set up an authentication provider. This object will authenticate your requests to Microsoft Graph. For authentication, the Microsoft Graph Python SDK supports both sync and async credential classes from Azure Identity. Which library to choose depends on the type of application you are building. > **Note**: For authentication we support both `sync` and `async` credential classes from `azure.identity`. Please see the azure identity [docs](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity?view=azure-python) for more information. The easiest way to filter this decision is by looking at the permissions set you'd use. Microsoft Graph supports 2 different types of permissions: delegated and application permissions: * Application permissions are used when you donโ€™t need a user to login to your app, but the app will perform tasks on its own and run in the background. * Delegated permissions, also called scopes, are used when your app requires a user to login and interact with data related to this user in a session. The following table lists common libraries by permissions set. | MSAL library | Permissions set | Common use case | |---|---|---| | [ClientSecretCredential](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.aio.clientsecretcredential?view=azure-python&preserve-view=true) | Application permissions | Daemon apps or applications running in the background without a signed-in user. | | [DeviceCodeCredential](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.devicecodecredential?view=azure-python) | Delegated permissions | Enviroments where authentication is triggered in one machine and completed in another e.g in a cloud server. | | [InteractiveBrowserCredentials](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.interactivebrowsercredential?view=azure-python) | Delegated permissions | Environments where a browser is available and the user wants to key in their username/password. | | [AuthorizationCodeCredentials](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.authorizationcodecredential?view=azure-python) | Delegated permissions | Usually for custom customer applications where the frontend calls the backend and waits for the authorization code at a particular url. | You can also use [EnvironmentCredential](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.environmentcredential?view=azure-python), [DefaultAzureCredential](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.defaultazurecredential?view=azure-python), [OnBehalfOfCredential](https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.onbehalfofcredential?view=azure-python), or any other [Azure Identity library](https://learn.microsoft.com/en-us/python/api/overview/azure/identity-readme?view=azure-python#credential-classes). Once you've picked an authentication library, we can initiate the authentication provider in your app. The following example uses ClientSecretCredential with application per

Release History

VersionChangesUrgencyDate
v1.58.0## [1.58.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.57.0...v1.58.0) (2026-05-20) ### Features * drop Python 3.9 and add Python 3.14 support across packaging, CI, and docs ([#1481](https://github.com/microsoftgraph/msgraph-sdk-python/issues/1481)) ([9d3a8c8](https://github.com/microsoftgraph/msgraph-sdk-python/commit/9d3a8c83e6ffc44ae44b0131de212b47b7980809)) * **generation:** update request builders and models ([#1483](https://github.com/microsoftgraph/msgraph-sdk-pythHigh5/20/2026
v1.57.0## [1.57.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.56.0...v1.57.0) (2026-05-05) ### Features * **generation:** update request builders and models ([8f65301](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8f65301f1e27eb54922fb3be4568b78c4c605ecd)) * **generation:** update request builders and models ([54ae3ef](https://github.com/microsoftgraph/msgraph-sdk-python/commit/54ae3effa844bae1a27b3184e58fec9808317f81))High5/7/2026
1.56.0Imported from PyPI (1.56.0)Low4/21/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))High4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))High4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.56.0## [1.56.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.55.0...v1.56.0) (2026-04-16) ### Features * **generation:** update request builders and models ([8b6bb43](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b6bb4360cf4aeeb4e6972906b8fd58126734ffd))Medium4/17/2026
v1.55.0## [1.55.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.54.0...v1.55.0) (2026-02-19) ### Features * **generation:** update request builders and models ([84a81bf](https://github.com/microsoftgraph/msgraph-sdk-python/commit/84a81bf6658351f193b840483bb5f11152752114))Low2/20/2026
v1.54.0## [1.54.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.53.0...v1.54.0) (2026-02-06) ### Features * **generation:** update request builders and models ([be82df2](https://github.com/microsoftgraph/msgraph-sdk-python/commit/be82df2af81ca08c53c7c82855fe8ca7d68fc065))Low2/6/2026
v1.53.0## [1.53.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.52.0...v1.53.0) (2026-01-22) ### Features * **generation:** update request builders and models ([#1411](https://github.com/microsoftgraph/msgraph-sdk-python/issues/1411)) ([1d9707e](https://github.com/microsoftgraph/msgraph-sdk-python/commit/1d9707ebef71dbfd88ecd151c83d0ebaccc05dfb))Low1/22/2026
v1.52.0## [1.52.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.51.0...v1.52.0) (2026-01-07) ### Features * **generation:** update request builders and models ([43b4806](https://github.com/microsoftgraph/msgraph-sdk-python/commit/43b4806a29e644ea775d408605cf7f4c8ffbab71))Low1/7/2026
v1.51.0## [1.51.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.50.0...v1.51.0) (2025-12-17) ### Features * **generation:** update request builders and models ([9e98567](https://github.com/microsoftgraph/msgraph-sdk-python/commit/9e985678bfbef8866547fd610edb4f320d98fc04))Low12/18/2025
v1.50.0## [1.50.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.49.0...v1.50.0) (2025-12-03) ### Features * **generation:** update request builders and models ([#1394](https://github.com/microsoftgraph/msgraph-sdk-python/issues/1394)) ([dca4692](https://github.com/microsoftgraph/msgraph-sdk-python/commit/dca4692b455abafb21bc7d93855f478394004ae1))Low12/4/2025
v1.49.0## [1.49.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.48.0...v1.49.0) (2025-11-18) ### Features * **generation:** update request builders and models ([c596dca](https://github.com/microsoftgraph/msgraph-sdk-python/commit/c596dcad1ebc1d36f27312b30f82b14789ef3cd1))Low11/19/2025
v1.48.0## [1.48.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.47.0...v1.48.0) (2025-11-06) ### Features * **generation:** update request builders and models ([#1377](https://github.com/microsoftgraph/msgraph-sdk-python/issues/1377)) ([1b88faa](https://github.com/microsoftgraph/msgraph-sdk-python/commit/1b88faaf3623b82171081878ac1ab1c6dd977c1f))Low11/6/2025
v1.47.0## [1.47.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.46.0...v1.47.0) (2025-10-21) ### Features * **generation:** update request builders and models ([2772eb5](https://github.com/microsoftgraph/msgraph-sdk-python/commit/2772eb5015f8ac39583fbc6b7eca46c3ae9830f5)) * **generation:** update request builders and models ([6fc8672](https://github.com/microsoftgraph/msgraph-sdk-python/commit/6fc86725afa9f859c595734953a4566f862adf01))Low10/23/2025
v1.46.0## [1.46.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.45.0...v1.46.0) (2025-10-03) ### Features * **generation:** update request builders and models ([8ace06e](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8ace06e617652faeed0a931e39604f84b465f768))Low10/6/2025
v1.45.0## [1.45.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.44.0...v1.45.0) (2025-09-16) ### Features * **generation:** update request builders and models ([9b00d33](https://github.com/microsoftgraph/msgraph-sdk-python/commit/9b00d333741e3e566ca9fc0fb3b5c5b9928b5e9a))Low9/16/2025
v1.44.0## [1.44.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.43.0...v1.44.0) (2025-09-11) ### Features * **generation:** update request builders and models ([c73f3af](https://github.com/microsoftgraph/msgraph-sdk-python/commit/c73f3afa74cad9b3c0eac4ef0359690ac9c0c554))Low9/11/2025
v1.43.0## [1.43.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.42.0...v1.43.0) (2025-08-20) ### Features * **generation:** update request builders and models ([c61dccc](https://github.com/microsoftgraph/msgraph-sdk-python/commit/c61dccc8228d873e3eb8f302e641139845d2dc58))Low8/20/2025
v1.42.0## [1.42.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.41.0...v1.42.0) (2025-08-12) ### Features * **generation:** update request builders and models ([6d2d907](https://github.com/microsoftgraph/msgraph-sdk-python/commit/6d2d90792917e9920c2503c4adb4f539454ff199))Low8/12/2025
v1.41.0## [1.41.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.40.0...v1.41.0) (2025-08-05) ### Features * **generation:** update request builders and models ([c2d45c8](https://github.com/microsoftgraph/msgraph-sdk-python/commit/c2d45c848133aa3cdb5d9e93bafef50a064b6524)) ### Bug Fixes * Update license field to use proper SPDX identifier ([aab1c9e](https://github.com/microsoftgraph/msgraph-sdk-python/commit/aab1c9e4e7da347c867480bbc510a5723761e8fa))Low8/5/2025
v1.40.0## [1.40.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.39.0...v1.40.0) (2025-07-30) ### Features * **generation:** update request builders and models ([15c9742](https://github.com/microsoftgraph/msgraph-sdk-python/commit/15c9742ea4757b3cea00384ec82afa2efaf799c4))Low7/30/2025
v1.39.0## [1.39.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.38.0...v1.39.0) (2025-07-22) ### Features * **generation:** update request builders and models ([cd04cfb](https://github.com/microsoftgraph/msgraph-sdk-python/commit/cd04cfb6088769a15dfa09cab8f93028c91f6685))Low7/22/2025
v1.38.0## [1.38.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.37.0...v1.38.0) (2025-07-16) ### Features * **generation:** update request builders and models ([47a564d](https://github.com/microsoftgraph/msgraph-sdk-python/commit/47a564de63e4dd6e5074032e8a4a26e43bfc7a27)) * **generation:** update request builders and models ([b35949b](https://github.com/microsoftgraph/msgraph-sdk-python/commit/b35949bd9150b77858f3047adafcd1753f4c69aa))Low7/17/2025
v1.37.0## [1.37.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.36.0...v1.37.0) (2025-07-08) ### Features * **generation:** update request builders and models ([f7de565](https://github.com/microsoftgraph/msgraph-sdk-python/commit/f7de56502970c7e4f011965264e010dd1df67abd))Low7/8/2025
v1.36.0## [1.36.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.35.0...v1.36.0) (2025-07-01) ### Features * **generation:** update request builders and models ([7f49d36](https://github.com/microsoftgraph/msgraph-sdk-python/commit/7f49d3654ffb554624fee4f62822fd7f19f64d4e))Low7/2/2025
v1.35.0## [1.35.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.34.0...v1.35.0) (2025-06-24) ### Features * **generation:** update request builders and models ([5a3dc37](https://github.com/microsoftgraph/msgraph-sdk-python/commit/5a3dc371f35c3fe4feb16fa9622c631585834e03))Low6/25/2025
v1.34.0## [1.34.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.33.0...v1.34.0) (2025-06-17) ### Features * **generation:** update request builders and models ([49dbc7e](https://github.com/microsoftgraph/msgraph-sdk-python/commit/49dbc7eb8ba2d2df16a0464e86f9b878a252773f))Low6/18/2025
v1.33.0## [1.33.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.32.0...v1.33.0) (2025-06-10) ### Features * **generation:** update request builders and models ([2cb94a6](https://github.com/microsoftgraph/msgraph-sdk-python/commit/2cb94a6e5c48aa92bc03242f2e5b2e6987b258b9))Low6/10/2025
v1.32.0## [1.32.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.31.0...v1.32.0) (2025-06-03) ### Features * **generation:** update request builders and models ([48cf860](https://github.com/microsoftgraph/msgraph-sdk-python/commit/48cf8606a62c9502a59a6406f4dc197a31e1e853))Low6/3/2025
v1.31.0## [1.31.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.30.0...v1.31.0) (2025-05-20) ### Features * **generation:** update request builders and models ([f445a90](https://github.com/microsoftgraph/msgraph-sdk-python/commit/f445a90996c93433e0f9866678832f59ab49fd2b))Low5/20/2025
v1.30.0## [1.30.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.29.0...v1.30.0) (2025-05-13) ### Features * **generation:** update request builders and models ([303fb7d](https://github.com/microsoftgraph/msgraph-sdk-python/commit/303fb7d54fc64b2850c6af9b6fee33f246032925))Low5/13/2025
v1.29.0## [1.29.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.28.0...v1.29.0) (2025-05-08) ### Features * **generation:** update request builders and models ([#1210](https://github.com/microsoftgraph/msgraph-sdk-python/issues/1210)) ([cc4f2ed](https://github.com/microsoftgraph/msgraph-sdk-python/commit/cc4f2ed44dd66fd751ba3eda1ab401cd161dd3e4))Low5/8/2025
v1.28.0## [1.28.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.27.0...v1.28.0) (2025-04-15) ### Features * **generation:** update request builders and models ([6e73ddc](https://github.com/microsoftgraph/msgraph-sdk-python/commit/6e73ddc917a36802155620fc8741e50b8a7461b9))Low4/15/2025
v1.27.0## [1.27.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.26.0...v1.27.0) (2025-04-09) ### Features * **generation:** update request builders and models ([f8b86ce](https://github.com/microsoftgraph/msgraph-sdk-python/commit/f8b86ce6e495cc58c068eb825016a659a5f630e6))Low4/9/2025
v1.26.0## [1.26.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.25.0...v1.26.0) (2025-03-25) ### Features * **generation:** update request builders and models ([05e81d8](https://github.com/microsoftgraph/msgraph-sdk-python/commit/05e81d8bd644f7599d28d0a9e36ce4b538aea793))Low3/25/2025
v1.25.0## [1.25.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.24.0...v1.25.0) (2025-03-18) ### Features * **generation:** update request builders and models ([557d006](https://github.com/microsoftgraph/msgraph-sdk-python/commit/557d006a0d43a504f1bf662f6139f5f10ad82025))Low3/18/2025
v1.24.0## [1.24.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.23.0...v1.24.0) (2025-03-12) ### Features * **generation:** update request builders and models ([06409ab](https://github.com/microsoftgraph/msgraph-sdk-python/commit/06409abd2ca95a82abbc1c4d6a5e135d8ac3b373))Low3/12/2025
v1.23.0## [1.23.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.22.0...v1.23.0) (2025-03-05) ### Features * **generation:** update request builders and models ([b483797](https://github.com/microsoftgraph/msgraph-sdk-python/commit/b4837970984f8825e6efd2907a0c1e7dbaeb89e3))Low3/5/2025
v1.22.0## [1.22.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.21.0...v1.22.0) (2025-02-25) ### Features * **generation:** update request builders and models ([61c8bfc](https://github.com/microsoftgraph/msgraph-sdk-python/commit/61c8bfcf7f0eac98dd8b3afec9e07f1aaeeaa75b))Low2/25/2025
v1.21.0## [1.21.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.20.0...v1.21.0) (2025-02-13) ### Features * **generation:** update request builders and models ([3b01033](https://github.com/microsoftgraph/msgraph-sdk-python/commit/3b01033255528b97eb91ec81fdb9c08676fad0b9))Low2/13/2025
v1.20.0## [1.20.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.19.0...v1.20.0) (2025-02-06) ### Features * Python 3.13 support ([fac3184](https://github.com/microsoftgraph/msgraph-sdk-python/commit/fac3184cea86487b305d6bbadad084534944866f)) * Python 3.13 support ([8605f62](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8605f6238407d94f8d49aed782b97e48b179e304)) ### Bug Fixes * bump kiota and graph core dependencies ([499783f](https://github.com/microsoftgraph/msgrLow2/6/2025
v1.19.0## [1.19.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.18.0...v1.19.0) (2025-02-06) ### Features * **generation:** update request builders and models ([58739cd](https://github.com/microsoftgraph/msgraph-sdk-python/commit/58739cd7c82ba16719502af7fbe095ecfa1f507f))Low2/6/2025
v1.18.0## [1.18.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.17.0...v1.18.0) (2025-01-23) ### Features * **generation:** update request builders and models ([cb03d0d](https://github.com/microsoftgraph/msgraph-sdk-python/commit/cb03d0d1e76cf1d0df83c52292fade76e95067de))Low1/23/2025
v1.17.0## [1.17.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.16.0...v1.17.0) (2025-01-15) ### Features * drops support for python 3.8 ([179d6ea](https://github.com/microsoftgraph/msgraph-sdk-python/commit/179d6ea5f1eb4e296d282f7241478ba8297d84af)) * drops support for python 3.8 ([889aa2d](https://github.com/microsoftgraph/msgraph-sdk-python/commit/889aa2ddfe5d6006b41428e4db771d8a33bda3e3)) * **generation:** update request builders and models ([90c21f0](https://github.com/microsLow1/15/2025
v1.16.0## [1.16.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.15.0...v1.16.0) (2025-01-02) ### Features * **generation:** update request builders and models ([22cb5fd](https://github.com/microsoftgraph/msgraph-sdk-python/commit/22cb5fdb003bb3ab8989980c9fc65feb5d4f38fd))Low1/2/2025
v1.15.0## [1.15.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.14.0...v1.15.0) (2024-12-18) ### Features * **generation:** update request builders and models ([8b8b0ff](https://github.com/microsoftgraph/msgraph-sdk-python/commit/8b8b0ff890146b37359f2a7149c647a8a4e69e62)) * **generation:** update request builders and models ([00bc442](https://github.com/microsoftgraph/msgraph-sdk-python/commit/00bc442445a1fe68d3933a224d6563d500f386d6)) * **generation:** update request builders andLow12/18/2024
v1.14.0## [1.14.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.13.0...v1.14.0) (2024-11-28) ### Features * **generation:** update request builders and models ([54879e5](https://github.com/microsoftgraph/msgraph-sdk-python/commit/54879e51fe4fb10df9405bd71f56a3b573b8db31))Low11/28/2024
v1.13.0## [1.13.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.12.0...v1.13.0) (2024-11-23) ### Features * **generation:** update request builders and models ([6e4a0f8](https://github.com/microsoftgraph/msgraph-sdk-python/commit/6e4a0f8c185e21c83b099c07082b19032baf72c1))Low11/23/2024
v1.12.0## [1.12.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.11.0...v1.12.0) (2024-11-07) ### Features * **generation:** update request builders and models ([fc6678b](https://github.com/microsoftgraph/msgraph-sdk-python/commit/fc6678b6935bdc55d8de5325b56e22f36bf36ccb))Low11/9/2024
v1.11.0## [1.11.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.10.0...v1.11.0) (2024-10-17) ### Features * **generation:** update request builders and models ([03b3c7a](https://github.com/microsoftgraph/msgraph-sdk-python/commit/03b3c7aa39012744f776fa2a15691456a8d0f1d6))Low10/17/2024
v1.10.0## [1.10.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.9.0...v1.10.0) (2024-10-09) ### Features * **generation:** update request builders and models ([adec9b5](https://github.com/microsoftgraph/msgraph-sdk-python/commit/adec9b501a94052e6a1ab3995ee8e9867a27b094))Low10/9/2024
v1.9.0## [1.9.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.8.0...v1.9.0) (2024-10-03) ### Features * **generation:** update request builders and models ([9914367](https://github.com/microsoftgraph/msgraph-sdk-python/commit/99143673f50ae9773594269c2c7d1f4c0368f182))Low10/3/2024
v1.8.0## [1.8.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.7.0...v1.8.0) (2024-09-18) ### Features * **generation:** update request builders and models ([af495fe](https://github.com/microsoftgraph/msgraph-sdk-python/commit/af495fee44944fd5eccc53957ba57e8ab7f7f102))Low9/18/2024
v1.7.0## [1.7.0](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.6.0...v1.7.0) (2024-09-11) ### Features * **generation:** update request builders and models ([c72f8e5](https://github.com/microsoftgraph/msgraph-sdk-python/commit/c72f8e52a57dc14100893f55b93b74748da0d524))Low9/11/2024

Dependencies & License Audit

Loading dependencies...

Similar Packages

msgraph-coreCore component of the Microsoft Graph Python SDKv1.4.0
alibabacloud-tea-openapiAlibaba Cloud openapi SDK Library for Pythonmaster@2026-06-01
azure-devopsPython wrapper around the Azure DevOps 7.x APIs7.1.0b4
opsgenie-sdkPython SDK for Opsgenie REST API2.1.5
modalPython client library for Modalmain@2026-06-05

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in Developer Tools

mypyOptional static typing for Python
pipThe PyPA recommended tool for installing Python packages.
anthropicThe official Python library for the anthropic API
openinference-instrumentationOpenInference instrumentation utilities