Pymtodo is an unofficial Microsoft To-Do python library which allows managing your tasks. It can help you to optimize your workflow and create long lists (for example, if you read books and like to check it in your To-Do list).
You can install pymtodo via pip:
$ pip install pymtodo
Pymtodo is very easy to use. First, you need to be authorized in the Microsoft To-Do system:
from pymtodo import ToDoConnection
from getpass import getpass
a = ToDoConnection()
a.connect(email = 'your-email@gmail.com', password = getpass())
Getpass package allows you to write your password in the secure way, so noone will see it. Alternatively, you can just type it directly.
In order to get all your lists you can just type:
a.lists
To get the tasks for the particular list, you can write:
a.lists[0].tasks
You can create lists by using
a.create_list("New list")
and new tasks can be created in the particluar list:
a.lists[0].create_task("New task")
You can delete your lists and tasks by the delete method:
a.lists[0].delete()
a.lists[0].tasks[0].delete()
Be careful, there will not be a warning message.
Detailed documentation will be available soon.
Pymtodo is an unofficial, open source, third-party, free app and is not affiliated in any way with Microsoft.
Pymtodo is distributed under the MIT license.