Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Garee/pytodoist

Use Todoist with Python ✅
https://github.com/Garee/pytodoist

api python todoist

Last synced: about 2 months ago
JSON representation

Use Todoist with Python ✅

Awesome Lists containing this project

README

        




PyPI
Python versions
License Build status

**PyTodoist** is a Python package for interacting with [Todoist](http://www.todoist.com). 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:

```sh
$ pip install pytodoist
```

Have fun:

```python
>>> from pytodoist import todoist
>>> user = todoist.login('[email protected]', '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 https://pytodoist.readthedocs.org