A python wrapper for the Todoist API.
Project description
PyTodoist is a Python package for interacting with Todoist. It hides the underlying API calls with higher-level abstractions that make it easy to use Todoist with Python.
Quick Start
Install the latest version:
$ pip install pytodoist
Have fun:
>>> from pytodoist import todoist
>>> user = todoist.login('gary@garyblackwood.co.uk', 'pa$$w0rd')
>>> projects = user.get_projects()
>>> for project in projects:
... print(project.name)
...
Inbox
Books to read
Movies to watch
Shopping
Work
Personal
Health
>>> inbox = user.get_project('Inbox')
>>> task = inbox.add_task('Install PyTodoist',
... priority=todoist.Priority.VERY_HIGH)
>>> task.complete()
Documentation
Comprehensive online documentation can be found at http://pytodoist.readthedocs.org
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
pytodoist-2.0.3.tar.gz
(17.0 kB
view hashes)
Built Distribution
Close
Hashes for pytodoist-2.0.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b8bf00962f15994dee2e19d0dc0c207ce7c89825a9bc57d3cae69c783417c3e |
|
MD5 | b0cf3ffd45379ccf9886f3251ad88b78 |
|
BLAKE2b-256 | 45b1a79482e8b3bfc1cb1fc28e66192a32f6af29bbf95c3054aa169e98f05fbb |