===== Usage ===== To use Microsoft Service Wrapper in a project you first need to instantiate an application instance from `msal `_ lib like the example below .. code-block:: python import msal credentials = { "authority": "", "client_id": "", "client_credential": "" } app = msal.ConfidentialClientApplication(**credentials) Now you just need to pick the service you want and start to use the API .. code-block:: python # MS GRAPH example from microsoft_service_wrapper.ms_graph.client import MsGraphClient graph_client = MsGraphClient(app) # Add user to security group graph_client.add_users_to_group(, []) # Remove user from security group graph_client.remove_users_from_group(, [])