Official Python SDK for the Todoist API.
Project description
Todoist API Python Client
This is the official Python SDK for the Todoist API.
Installation
pip install todoist-api-python
Or add the project as a dependency in pyproject.toml:
dependencies = [
"todoist-api-python>=3.1.0,<4",
]
Supported Python Versions
Python version 3.9 and above.
Usage
Here's an example of initializing the API client, fetching a task, and paginating through its comments:
from todoist_api_python.api import TodoistAPI
api = TodoistAPI("YOUR_API_TOKEN")
task = api.get_task("6X4Vw2Hfmg73Q2XR")
print(f"Task: {task.content}")
comments_iter = api.get_comments(task_id=task.id)
for comments in comments_iter:
for comment in comments:
print(f"Comment: {comment.content}")
Documentation
For more detailed reference documentation, have a look at the SDK documentation and the API documentation.
Development
To install Python dependencies:
$ uv sync
To install pre-commit:
$ uv run pre-commit install
You can try your changes via REPL by running:
$ uv run python
You can then import the library as described in Usage without having to create a file.
If you decide to use TodoistAPIAsync, please keep in mind that you have to import asyncio
and run asyncio.run(yourmethod()) to make your async methods run as expected.
Releases
This API client is public, and available in a PyPI repository.
A new update is automatically released by GitHub Actions, by creating a release with a tag in the format vX.Y.Z (v<Major>.<Minor>.<Patch>).
Users of the API client can then update to the new version in their pyproject.toml file.
Feedback
Any feedback, bugs, questions, comments, etc., can be reported as Issues in this repository.
Contributions
We would love contributions! Pull requests are welcome.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file todoist_api_python-3.1.0.tar.gz.
File metadata
- Download URL: todoist_api_python-3.1.0.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cad732f58a4bdfbd1c073a1a8be1c1b4e13ae0c8be210bb7840fbba06eb987c
|
|
| MD5 |
ec3f7ba00c670aef51f78dcbcb37e9d2
|
|
| BLAKE2b-256 |
c6db7e31fa6e683cbdc5c823edaddfdb9437b0d37e817c919d0a54ef2a52b1a3
|
File details
Details for the file todoist_api_python-3.1.0-py3-none-any.whl.
File metadata
- Download URL: todoist_api_python-3.1.0-py3-none-any.whl
- Upload date:
- Size: 23.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20ee2445983235566e7f2b2c82f769b9a265bb3fa6d7aad3fa73cf9e2d4cd787
|
|
| MD5 |
52f405deabd0e34af92020f4b2c1c915
|
|
| BLAKE2b-256 |
cc9919c8fcaa0f691d41dc5687cb21432b7ea01175b9e4b4097a6caffedbe6b7
|