Skip to main content

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.10 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}")

Async usage

Always close TodoistAPIAsync explicitly, either via async with (recommended) or by calling await api.close().

from todoist_api_python.api_async import TodoistAPIAsync

async with TodoistAPIAsync("YOUR_API_TOKEN") as api:
    task = await api.get_task("6X4Vw2Hfmg73Q2XR")
    print(task.content)

Documentation

For more detailed reference documentation, have a look at the SDK documentation and the API documentation.

Migrating from 3.x

Version 4.x introduces a breaking HTTP stack migration from requests to httpx.

  • TodoistAPI(..., session=...) is now TodoistAPI(..., client=...) with httpx.Client.
  • TodoistAPIAsync(..., session=...) is now TodoistAPIAsync(..., client=...) with httpx.AsyncClient.
  • Error handling should catch httpx.HTTPStatusError instead of requests.exceptions.HTTPError.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

todoist_api_python-4.0.0.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

todoist_api_python-4.0.0-py3-none-any.whl (28.3 kB view details)

Uploaded Python 3

File details

Details for the file todoist_api_python-4.0.0.tar.gz.

File metadata

  • Download URL: todoist_api_python-4.0.0.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.11

File hashes

Hashes for todoist_api_python-4.0.0.tar.gz
Algorithm Hash digest
SHA256 2e8acbaa4ea7aae05a640bd24690ca020ef8044610b0dcf4df85b8a788a43872
MD5 6628e0ac101c16d3f3e09be4447005f9
BLAKE2b-256 0c43a3dcb178937026abbb8a7d8f7ddd86d8c390f3752766dfc26c072684d5b3

See more details on using hashes here.

File details

Details for the file todoist_api_python-4.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for todoist_api_python-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6b435f5fbf48da2faf7cb846a0de3b6719a33461958512d2adb4546494c195de
MD5 f4890b87af0623617f7d407868700be7
BLAKE2b-256 f0437728ffb2118934a0b356316adfd0bc564400b1844ca804c24ecab2be424e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page