Skip to main content

Library to interact with Microsoft Planner via API Graph

Project description

MSPlanner Tools Documentation

MSPlanner Tools is a Python library designed to streamline interactions with Microsoft Planner via the Microsoft Graph API. This documentation provides an overview of the library's features, focusing on Authentication and managing OAuth2 tokens using the TokenManager class.

Overview


Authentication

The TokenManager class provides a robust way to handle authentication and token management for accessing the Microsoft Graph API. This is essential for secure and seamless communication with Microsoft Planner.

Features of TokenManager

  • Automatically manages OAuth2 tokens for authentication.
  • Requests new tokens when the current token expires.
  • Supports Azure Active Directory authentication using the Microsoft Authentication Library (MSAL).

Prerequisites

Before using the TokenManager class, ensure you have the following:

  • Client ID: Obtain from your Azure AD app registration.
  • Client Secret: Set up in your Azure AD app registration.
  • Tenant ID: Find this in your Azure Active Directory overview.

Usage

Here's how to use the TokenManager class for authentication:

Import and Initialize

from msplanner_tools.authentication import TokenManager

# Replace with your Azure AD app credentials
client_id = 'your_client_id'
client_secret = 'your_client_secret'
tenant_id = 'your_tenant_id'

If you don't know how to register an Azure app, visit Microsoft how to register an app guide.

Permissions:

  • Group.ReadWrite.All
  • Tasks.ReadWrite.All
  • User.ReadBasic.All

Here is an example on how to use the TokenManager class:

# Initialize the TokenManager
token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)

# Get a valid access token
access_token = token_manager.get_token()
print(f'Access Token: {access_token}')
# The get_token method ensures that a valid token is always returned, automatically handling token expiration.

Token Management Details

  • Request a New Token: If the token has expired or is unavailable, a new token is automatically requested using request_new_token.
  • Expiration Handling: The class keeps track of the token's expiration time and validates it using is_token_expired.

Example Workflow

# Using the token in an API request
import requests

# Get the access token
access_token = token_manager.get_token()

# Set up the headers for Microsoft Graph API requests
headers = {
    'Authorization': f'Bearer {access_token}',
    'Content-Type': 'application/json'
}

Example: Create a new plan

from msplanner_tools.plans import create_plan
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)

plan_id = create_plan("my new plan", "my_group_id", token_manager.get_token())

if plan_id:
    print("Plan successfully created!")

References


Plans

This section focuses on managing Microsoft Planner plans using the functions provided in the msplanner_tools.plans module.
Return to the top

Plans Management

The msplanner_tools.plans module provides functions to create, retrieve, update, and delete plans in Microsoft Planner via the Microsoft Graph API.

Functions Overview

create_plan

Creates a new plan in Microsoft Planner.

Parameters:

  • plan_name (str): Name of the plan to be created.
  • group_id (str): ID of the group to which the plan belongs.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • str: ID of the created plan.

Example:

from msplanner_tools.plans import create_plan
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
plan_id = create_plan("my new plan", "my_group_id", token_manager.get_token())

if plan_id:
    print("Plan successfully created!")

get_plan_by_id

Retrieves a plan based on its ID.

Parameters:

  • plan_id (str): ID of the plan.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • dict: Dictionary containing the plan data.

Example:

from msplanner_tools.plans import get_plan_by_id

plan = get_plan_by_id("plan_id", token_manager.get_token())
print(plan)

update_plan_by_id

Updates a plan based on its ID and name.

Parameters:

  • plan_id (str): ID of the plan.
  • plan_name (str): New name of the plan.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • None

Example:

from msplanner_tools.plans import update_plan_by_id

update_plan_by_id("plan_id", "updated plan name", token_manager.get_token())
print("Plan updated successfully.")

delete_plan_by_id

Deletes a plan based on its ID.

Parameters:

  • plan_id (str): ID of the plan to be deleted.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • None

Example:

from msplanner_tools.plans import delete_plan_by_id

delete_plan_by_id("plan_id", token_manager.get_token())
print("Plan deleted successfully.")

get_plans_by_group_id

Returns a list of all plans in a group.

Parameters:

  • group_id (str): ID of the group.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • list: List of plans in the group.

Example:

from msplanner_tools.plans import get_plans_by_group_id

plans = get_plans_by_group_id("group_id", token_manager.get_token())
print(plans)

list_plan_tasks_by_id

Returns a list of all tasks in a plan.

Parameters:

  • plan_id (str): ID of the plan.
  • access_token: Access token for the Microsoft Graph API.

Returns:

  • list: List of tasks in the plan.

Example:

from msplanner_tools.plans import list_plan_tasks_by_id

tasks = list_plan_tasks_by_id("plan_id", token_manager.get_token())
print(tasks)

References

Next, continue to Tasks and Buckets for interacting with Microsoft Planner resources.

Tasks

This section focuses on managing Microsoft Planner tasks using the functions provided in the msplanner_tools.tasks module.
Return to the top

Tasks Management

The msplanner_tools.tasks module provides functions to create, retrieve, update, and delete tasks in Microsoft Planner via the Microsoft Graph API.

Functions Overview

create_task

Creates a new task in Microsoft Planner.

Parameters:

  • item_list (dict): Dictionary with the task data:
    • title (str): Task name.
    • assignments (list): List of owners' emails.
    • startDateTime (str): Task start date in the format YYYY-MM-DDTHH:MM:SSZ.
    • dueDateTime (str): Task due date in the format YYYY-MM-DDTHH:MM:SSZ.
    • priority (int): Task priority (1-5).
    • labels_list (list): List of labels in the format ['category1', 'category2', ...].
  • bucket_id (str): ID of the bucket to which the task belongs.
  • plan_id (str): ID of the plan to which the task belongs.
  • access_token (str): Access token for the Microsoft Graph API.
  • group_id (str): ID of the group to which the task belongs.

Returns:

  • str: ID of the created task.

Example:

from msplanner_tools.tasks import create_task
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
item_list = {
        "title": "New Task",
        "assignments": ["owner@example.com"],
        "startDateTime": "2023-01-01T00:00:00Z",
        "dueDateTime": "2023-01-10T00:00:00Z",
        "priority": 1,
        "labels_list": ["category1", "category2"]
}
task_id = create_task(item_list, "bucket_id", "plan_id", token_manager.get_token(), "group_id")
if task_id:
        print("Task successfully created!")

update_task_details

Updates a task based on its ID, task data, ETag, and access token.

Parameters:

  • task_id (str): ID of the task to be updated.
  • item_list (dict): Dictionary with the task data to be updated.
  • etag (str): ETag value of the task, obtained with the get_task_etag function.
  • access_token (str): Access token for the Microsoft Graph API.

Returns:

  • None

Example:

from msplanner_tools.tasks import update_task_details
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
item_list = {
        "description": "Updated task description",
        "checklist": ["item1", "item2"]
}
etag = "etag_value"
update_task_details("task_id", item_list, etag, token_manager.get_token())
print("Task updated successfully.")

References

Next, continue to Buckets for interacting with Microsoft Planner resources.


Buckets

The msplanner_tools.buckets module provides functions to create, retrieve, and delete buckets in Microsoft Planner via the Microsoft Graph API.
Return to the top

Functions Overview

create_bucket

Creates a new bucket in Microsoft Planner.

Parameters:

  • bucket_name (str): Name of the bucket to be created.
  • plan_id (str): ID of the plan to which the bucket belongs.
  • access_token (str): Access token for the Microsoft Graph API.
  • bucket_num (int): Number of the bucket to be created (starts at 0).

Returns:

  • str: ID of the created bucket.

Example:

from msplanner_tools.buckets import create_bucket
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
bucket_id = create_bucket("New Bucket", "plan_id", token_manager.get_token(), 0)
if bucket_id:
    print("Bucket successfully created!")

delete_bucket_by_id

Deletes a bucket based on its ID.

Parameters:

  • bucket_id (str): ID of the bucket to be deleted.
  • access_token (str): Access token for the Microsoft Graph API.

Returns:

  • None

Example:

from msplanner_tools.buckets import delete_bucket_by_id
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
delete_bucket_by_id("bucket_id", token_manager.get_token())
print("Bucket deleted successfully.")

References


Users

This section focuses on managing Microsoft Planner users using the functions provided in the msplanner_tools.users module.
Return to the top

Users Management

The msplanner_tools.users module provides functions to retrieve user information from Microsoft Planner via the Microsoft Graph API.

Functions Overview

find_user_id_by_email

Finds a user ID based on their email address.

Parameters:

  • email (str): Email address of the user.
  • group_id (str): ID of the group to which the user belongs.
  • access_token (str): Access token for the Microsoft Graph API.

Returns:

  • str: ID of the user.

Example:

from msplanner_tools.users import find_user_id_by_email
from msplanner_tools.auth import TokenManager

token_manager = TokenManager(client_id=client_id, client_secret=client_secret, tenant_id=tenant_id)
user_id = find_user_id_by_email("user@example.com", "group_id", token_manager.get_token())
print(f'User ID: {user_id}')

References

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

msplanner-tools-0.1.9.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

msplanner_tools-0.1.9-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file msplanner-tools-0.1.9.tar.gz.

File metadata

  • Download URL: msplanner-tools-0.1.9.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.10

File hashes

Hashes for msplanner-tools-0.1.9.tar.gz
Algorithm Hash digest
SHA256 a0fb8c0366ff4e62afa84861943a983dcc85d1328528cdd72c98fa4b6ab34d52
MD5 e8173db83ec8ddb5bc00beff7381b002
BLAKE2b-256 440616ed377e51ce7c1a3bcaa8495ef2011eaf019bed90695939c2df24831616

See more details on using hashes here.

File details

Details for the file msplanner_tools-0.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for msplanner_tools-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 210c5e06f384a0227c37fe74b46bddf1f75578f646c4d52013c5ddbc739f2d7e
MD5 63352538ac05f5e7f4659a4f6d07cd2e
BLAKE2b-256 2d44664b7a4f2b80ef04af40909da276378b73bbd0629274fefd73c386c7bda7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page