This package is used to interact with the microsoft graph API
Project description
Microsoft Python client
Microsoft graph API Python client with support for Device Flow Oauth tokens with deleguated access.
Install
This package is available on Pypi
pip install ms-python-client
Requirements
- Python >= 3.9
How to configure the client variables to make API calls
Defining your env variables
Define the following variables in your env
or your .env
file:
- AZURE_AUTHORITY
- AZURE_CLIENT_ID
- AZURE_SCOPE
For testing purposes
For testing purposes, you can use the following value:
- MS_ACCESS_TOKEN
This token could be obtained from the Microsoft Graph Explorer by clicking on the Sign in with Microsoft
button and then clicking on the Access Token
tab.
Usage
Initialize the MSApiClient from environment variables
from ms_python_client import MSApiClient
ms_client = MSApiClient.init_from_env()
Initialize the MSApiClient from .env
from ms_python_client import MSApiClient
ms_client = MSApiClient.init_from_dotenv()
Initialize the MSApiClient manually
from ms_python_client import MSApiClient, Config
config = Config(
azure_authority="<YOUR AZURE AUTHORITY>",
azure_client_id="<YOUR AZURE CLIENT ID>",
azure_scope="<YOUR AZURE SCOPE>" # Ex. [User.Read, Calendars.ReadWrite, etc.]
)
ms_client = MSApiClient(
config=config,
)
Store of the cache token
By default the token is stored in a file called token_cache.bin
in the current directory. You can change this behavior by passing the token_cache_file
parameter to the Config
constructor.
from ms_python_client import MSApiClient, Config
config = Config(
azure_authority="<YOUR AZURE AUTHORITY>",
azure_client_id="<YOUR AZURE CLIENT ID>",
azure_scope="<YOUR AZURE SCOPE>", # Ex. [User.Read, Calendars.ReadWrite, etc.]
token_cache_file="/path/to/token_cache.bin"
)
ms_client = MSApiClient(
config=config,
)
This will allow you to reuse the token in the next executions of your script and even in different scripts.
How to make API calls
USER_ID = "12345"
SUBJECT = "Test meeting"
query = {"$count": "true", "$filter": f"contains(subject,'{SUBJECT}')"}
result = cern_ms_client.events.list_events(USER_ID, query)
Optional: How to configure the logging
from ms_python_client import setup_logs
setup_logs(log_level=logging.DEBUG)
Available endpoints
events:
- get all events
- get a single event
- create an event
- update an event
- delete an event
users:
- get all users
CERN specific usage
Instead of using the MSApiClient
class, you can use the CERNMSApiClient
class, which is a subclass of the MSApiClient
class.
This class will provide you some more utilities but it will only work for CERN users (obviously).
This will be used in the context of synchronizing the events between the CERN Indico system and the calendars of the Zoom Rooms.
How to initialize the CERNMSApiClient
Follow the How to configure the client variables to make API calls section and then:
from ms_python_client import CERNMSApiClient
cern_ms_client = CERNMSApiClient.init_from_dotenv()
Available endpoints
events:
- get all events
- get a single event using zoom id
- create an event
- update an event using zoom id
- delete an event using zoom id
- get the zoom id of an event
You will find useful the EventParameters
and PartialEventParameters
classes, which will help you to create the events.
The EventParameters
class is used to create an event, while the PartialEventParameters
class is used to update an event.
ZOOM_ID
is the id of the zoom meeting, which can be found inside the url of a meeting link. This is mandatory to create an event.USER_ID
is the email of the Zoom Room.
from ms_python_client import CERNMSApiClient, EventParameters, PartialEventParameters
cern_ms_client = CERNMSApiClient.init_from_dotenv()
USER_ID = os.getenv("USER_ID") # Which is the email of the Zoom Room
ZOOM_ID = os.getenv("ZOOM_ID")
event_parameters = EventParameters(
subject="Test meeting",
start_time="2021-10-01T12:00:00",
end_time="2021-10-01T13:00:00",
timezone="Europe/Zurich",
zoom_url="https://cern.zoom.us/******",
)
partial_event_parameters = PartialEventParameters(
end_time="2021-10-01T14:00:00",
) # You can update only the end_time of the event for example
cern_ms_client.events.create_event(USER_ID, ZOOM_ID, event_parameters)
cern_ms_client.events.update_event_by_zoom_id(USER_ID, ZOOM_ID, partial_event_parameters)
cern_ms_client.events.delete_event_by_zoom_id(USER_ID, ZOOM_ID)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file ms_python_client-2.0.3.tar.gz
.
File metadata
- Download URL: ms_python_client-2.0.3.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07414061b1cc9dee8b463ae46a818109e47333db78ab75f362b7ef3f3a158548 |
|
MD5 | 706c13de67fdc521dea6e51179c93e08 |
|
BLAKE2b-256 | 341eb7741ece1e783a4f18653a83d7d7d6e300affd3f2817a8af275c3af451fe |
File details
Details for the file ms_python_client-2.0.3-py3-none-any.whl
.
File metadata
- Download URL: ms_python_client-2.0.3-py3-none-any.whl
- Upload date:
- Size: 17.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3ef8861167b2d0bc422f9a59b87649de70f9f965e13d50405d9d182f4a9ced9 |
|
MD5 | 816ed98a757a1b4ac6e89023969c82d8 |
|
BLAKE2b-256 | 3d6610831f62d90ec446d1c249353a1f8ac7ce7d222aea39fc23f4d89887f6ac |