This package contains API wrappers to simplify interaction with Microsoft Graph API through Python functions.
Project description
msgraph-py
Description
This package contains API wrappers to simplify interaction with Microsoft Graph API through Python functions.
Some of the benefits of msgraph-py are:
- Automatic caching and renewal of access tokens, avoiding unnecessary API-calls.
- Sets the correct headers and parameters for you when required (advanced queries).
- Pages results automatically when retrieving large datasets.
- Useful logging and error messages with the Python logging module.
- Optional integration with Django settings.py for reading environment variables.
[!NOTE]
The latest published version of this package can be found at pypi.org/project/msgraph-py
List of available functions
Identity
get_user()get_user_risk()revoke_refresh_tokens()list_auth_methods()delete_auth_method()reset_strong_auth()get_signin()
Groups
get_group()list_group_members()add_group_member()remove_group_member()
Devices
get_device()delete_device()list_owned_devices()get_laps_password()
send_mail()
Getting Started
-
Create an app registration in Entra ID with the necessary Graph application permissions for the functions you intend to use:
Authentication and authorization steps -
Install the latest version of the package:
python3 -m pip install msgraph-py -
Configure environment variables:
-
If used within a Django project,
msgraph-pywill by default first attempt to load the following variables from the project'ssettings.py:# project/settings.py AAD_TENANT_ID = "00000000-0000-0000-0000-000000000000" AAD_CLIENT_ID = "00000000-0000-0000-0000-000000000000" AAD_CLIENT_SECRET = "client-secret-value"
-
Alternatively you will need to set the following key-value pairs in
os.environ:import os os.environ["AAD_TENANT_ID"] = "00000000-0000-0000-0000-000000000000" os.environ["AAD_CLIENT_ID"] = "00000000-0000-0000-0000-000000000000" os.environ["AAD_CLIENT_SECRET"] = "client-secret-value"
-
[!WARNING]
You should never store sensitive credentials or secrets in production code or commit them to your repository. Always load them at runtime from a secure location or from a local file excluded from the repository.
Certificate-based authentication
For improved security, consider migrating to certificate-based authentication instead of a static client secret. The simplest way to do this is using the openssl command to create a self-signed certificate and private key:
hostname=$(hostname -s)
fqdn=$(hostname -f)
openssl req \
-x509 \
-newkey rsa:2048 \
-sha256 \
-days 3650 \
-subj "/CN=${fqdn}" \
-keyout "${hostname}_key.pem" \
-out "${hostname}_cert.pem" \
-noenc \
&> /dev/null
[!NOTE]
Remove the-noencoption if you want to encrypt the private key with a passphrase. Adjust options such as-daysand-subjaccording to your requirements.
Upload the certificate PEM-file to the app registration in Microsoft Entra ID. Make a note of the certificate thumbprint, as we will be needing this in the next step. See Microsofts documentation on adding credentials for more info.
Remove AAD_CLIENT_SECRET from your configuration and set the following environment variables (or settings.py) instead:
os.environ["AAD_PRIVATE_KEY_PATH"] = "path/to/private_key.pem"
# Alternatively pass the key data directly (only PEM-format supported)
os.environ["AAD_PRIVATE_KEY"] = "-----BEGIN PRIVATE KEY-----...-----END PRIVATE KEY-----"
# Required if the private key is password-protected
os.environ["AAD_PRIVATE_KEY_PASSPHRASE"] = "key-passphrase-value"
# Required if the private key does not contain a X.509 certificate
os.environ["AAD_CERT_THUMBPRINT"] = "cert-thumbprint-value"
[!NOTE]
You may omit settingAAD_CERT_THUMBPRINTif the certificate and private key are bundled together, as the required thumbprint will be retrieved from the certificate automatically at runtime.PKCS#12 format (
.pfxor.p12) is also supported in addition to PEM when usingAAD_PRIVATE_KEY_PATH. In order to convert a PEM-formatted private key and certificate to a single PKCS#12-formatted file, you can use the following command:openssl pkcs12 -inkey private-key.pem -in certificate.pem -export -out bundled-key-cert.pfx
Usage examples
Get a single user by objectId or userPrincipalName
from msgraph import get_user
user = get_user("user@example.com")
List of returned properties for user resource type.
Get a list of users using advanced query parameters
from msgraph import get_user
filtered_users = get_user(
filter="startsWith(department, 'sales')",
select=[
"displayName",
"department",
"createdDateTime",
],
orderby="createdDateTime desc",
all=True,
)
List of returned properties for user resource type.
Get a users Entra ID joined devices
from msgraph import list_owned_devices
user_devices = list_owned_devices(
user_id="user@example.com",
filter="isManaged eq true and trustType eq 'AzureAd'",
select=[
"deviceId",
"displayName",
"isCompliant",
"approximateLastSignInDateTime",
],
orderby="approximateLastSignInDateTime desc",
)
List of returned properties for device resource type.
Send an e-mail with attachments
from msgraph import send_mail
send_mail(
sender_id="noreply@example.com",
recipients=[
"john.doe@example.com",
"jane.doe@example.com",
],
subject="Mail from Graph API",
body="<h1>Content of the mail body</h1>",
is_html=True,
priority="high",
attachments=[
"/path/to/file1.txt",
"/path/to/file2.txt",
],
)
API documentation
- Authentication and authorization basics
- Use query parameters to customize responses
- Microsoft Entra authentication methods API overview
Resource types and properties
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file msgraph_py-1.5.0.tar.gz.
File metadata
- Download URL: msgraph_py-1.5.0.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef81c989063a366c59d90b313e3ddb531d6976671ef8281ba543daa4287b05ef
|
|
| MD5 |
91551d91060e678a233c12fdc277e0f8
|
|
| BLAKE2b-256 |
f911c6f2d4937a2dc44f215c9f58be9cc8a0dac2da11d4fa27f20d96bad99cb2
|
Provenance
The following attestation bundles were made for msgraph_py-1.5.0.tar.gz:
Publisher:
release.yml on fedamerd/msgraph-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
msgraph_py-1.5.0.tar.gz -
Subject digest:
ef81c989063a366c59d90b313e3ddb531d6976671ef8281ba543daa4287b05ef - Sigstore transparency entry: 1102018083
- Sigstore integration time:
-
Permalink:
fedamerd/msgraph-py@583b16f649113dc0501b9b2444b0ed3a95833356 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/fedamerd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@583b16f649113dc0501b9b2444b0ed3a95833356 -
Trigger Event:
push
-
Statement type:
File details
Details for the file msgraph_py-1.5.0-py3-none-any.whl.
File metadata
- Download URL: msgraph_py-1.5.0-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46206959e416cc304e6697eb2cddd70d9b52607487ebfc5a46f8a9205f499d4e
|
|
| MD5 |
fcaa2588efa2811d21a8473b17fef338
|
|
| BLAKE2b-256 |
ca8849337fe98b80560feebee0efda02e49877ae2398e7fec323c63fcfafa5be
|
Provenance
The following attestation bundles were made for msgraph_py-1.5.0-py3-none-any.whl:
Publisher:
release.yml on fedamerd/msgraph-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
msgraph_py-1.5.0-py3-none-any.whl -
Subject digest:
46206959e416cc304e6697eb2cddd70d9b52607487ebfc5a46f8a9205f499d4e - Sigstore transparency entry: 1102018087
- Sigstore integration time:
-
Permalink:
fedamerd/msgraph-py@583b16f649113dc0501b9b2444b0ed3a95833356 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/fedamerd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@583b16f649113dc0501b9b2444b0ed3a95833356 -
Trigger Event:
push
-
Statement type: