Get started with the Microsoft Graph SDK for Python by integrating the Microsoft Graph API into your Python application.
Note: this SDK allows you to build applications using the v1.0 of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, try the Beta SDK.
Note: the Microsoft Graph Python SDK is currently in public preview.
pip install msgraph-sdkRegister your application by following the steps at Register your app with the Microsoft Identity Platform.
An instance of the GraphServiceClient class handles building client. To create a new instance of this class, you need to provide an instance of AuthenticationProvider, which can authenticate requests to Microsoft Graph.
Note: This SDK offers an asynchronous API by default. Async is a concurrency model that is far more efficient than multi-threading, and can provide significant performance benefits and enable the use of long-lived network connections such as WebSockets. We support popular python async envronments such as
asyncio,anyioortrio. For authentication you need to use one of the async credential classes fromazure.identity.
from azure.identity.aio import EnvironmentCredential
from kiota_authentication_azure.azure_identity_authentication_provider import AzureIdentityAuthenticationProvider
credential=EnvironmentCredential()
auth_provider = AzureIdentityAuthenticationProvider(credential)The SDK uses an adapter object that handles the HTTP concerns. This HTTP adapter object is used to build the Graph client for making requests.
To initialise one using the authentication provider created in the previous step:
from msgraph import GraphRequestAdapter
adapter = GraphRequestAdapter(auth_provider)We currently use HTTPX as our HTTP client. You can pass your custom configured httpx.AsyncClient using:
from msgraph import GraphRequestAdapter
from msgraph_core import GraphClientFactory
http_Client = GraphClientFactory.create_with_default_middleware(client=httpx.AsyncClient())
request_adapter = GraphRequestAdapter(auth_Provider, http_client)You must get a GraphServiceClient object to make requests against the service.
from msgraph import GraphServiceClient
client = GraphServiceClient(request_adapter)After you have a GraphServiceClient that is authenticated, you can begin making calls against the service. The requests against the service look like our REST API.
The following is a complete example that shows how to fetch a user from Microsoft Graph.
import asyncio
from azure.identity.aio import ClientSecretCredential
from kiota_authentication_azure.azure_identity_authentication_provider import AzureIdentityAuthenticationProvider
from msgraph import GraphRequestAdapter
from msgraph import GraphServiceClient
credential = ClientSecretCredential(
'tenant_id',
'client_id',
'client_secret'
)
auth_provider = AzureIdentityAuthenticationProvider(credential)
request_adapter = GraphRequestAdapter(auth_provider)
client = GraphServiceClient(request_adapter)
user = asyncio.run(client.users_by_id('userPrincipalName').get())
print(user.display_name)Note that to calling me() requires a signed-in user and therefore delegated permissions (obtained using the authorization_code flow):
import asyncio
from azure.identity.aio import AuthorizationCodeCredential
from kiota_authentication_azure.azure_identity_authentication_provider import AzureIdentityAuthenticationProvider
from msgraph import GraphRequestAdapter
from msgraph import GraphServiceClient
credential = AuthorizationCodeCredential(
'tenant_id',
'client_id',
'authorization_code',
'redirect_uri',
)
auth_provider = AzureIdentityAuthenticationProvider(credential)
request_adapter = GraphRequestAdapter(auth_provider)
client = GraphServiceClient(request_adapter)
user = asyncio.run(client.me().get())
print(user.display_name)Failed requests raise APIError exceptions. You can handle these exceptions using try catch statements.
try:
user = asyncio.run(client.users_by_id('userID').get())
print(user.user_principal_name, user.display_name, user.id)
except Exception as e:
print(f'Error: {e.error.message}')For detailed information on breaking changes, bug fixes and new functionality introduced during major upgrades, check out our Upgrade Guide
View or log issues on the Issues tab in the repo.
Please read our Contributing guidelines carefully for advice on how to contribute to this repo.
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.