Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Garee/pytodoist
Use Todoist with Python ✅
https://github.com/Garee/pytodoist
api python todoist
Last synced: 3 months ago
JSON representation
Use Todoist with Python ✅
- Host: GitHub
- URL: https://github.com/Garee/pytodoist
- Owner: Garee
- License: mit
- Created: 2014-03-13T00:11:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T05:23:50.000Z (almost 2 years ago)
- Last Synced: 2024-07-22T07:09:47.905Z (4 months ago)
- Topics: api, python, todoist
- Language: Python
- Homepage: https://pytodoist.readthedocs.org/
- Size: 894 KB
- Stars: 164
- Watchers: 15
- Forks: 33
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Garee/pytodoist - Use Todoist with Python ✅ (Python)
README
**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