Skip to main content

Unofficial API for TickTick.com

Project description

ci documentation

ticktick-py

Unofficial TickTick API Client for Python 3

Designed for TickTick.com API v2

Full Documentation

https://lazeroffmichael.github.io/ticktick-py/



Description

ticktick-py is an unofficial API library for interacting with TickTick.com. It allows users a way to interact with their TickTick account using Python. Currently, as of 1/14/2021, there is no official API for TickTick.


Features

The API automatically fetches all the tasks, tags, lists, and more linked to your profile and stores them in a dictionary named state.

  • Tasks
    • Batch create, update, and delete tasks
    • Acquire all your uncompleted tasks
    • Move tasks easily between projects
    • Acquire all completed tasks in a certain date range
  • Tags
    • Batch create, update, and delete tags
    • Create tags with parameters that are not usually allowed: \\ / " # : * ? < > | Space
  • Projects
    • Batch create, update, and delete 'lists' (projects)
    • Batch archive projects

Quick Guide

Initializing Your Session

from ticktick import api
client = api.TickTickClient('username', 'password')  # Enter correct username and password

Once you have initialized your session, all interactions will occur through the reference, in this case: client

Example: Creating A Task

Lets create a task in our inbox titled "Get Groceries", with the date as 5/6/2021 at 2:30PM:

from datetime import datetime  # Dates are supported through the datetime module

name = 'Get Groceries'
date = datetime(2021, 5, 6, 14, 30)
groceries = client.task.create(name, start=date)  # Create the task with the parameters.

Result

A dictionary for the newly created task is returned.

print(groceries)
{'id': '5ff24e4b8f08904035b304d9', 'projectId': 'inbox416323287', 'sortOrder': -1099511627776, 
'title': 'Get Groceries', 'content': '', 'startDate': '2021-05-06T21:30:00.000+0000', 
'dueDate': '2021-05-06T21:30:00.000+0000', 'timeZone': 'America/Los_Angeles', 
'isFloating': False, 'isAllDay': False, 'reminders': [], 'priority': 0, 'status': 0, 
'items': [], 'modifiedTime': '2021-01-03T23:07:55.004+0000', 'etag': 'ol2zesef', 'deleted': 0, 
'createdTime': '2021-01-03T23:07:55.011+0000', 'creator': 359368200, 'kind': 'TEXT'}

Created Task In TickTick

image

Most methods will return the object that was changed. Consult the usage documentation for more information on specific methods.


Installation

Note: ticktick-py requires Python 3.6 or above.

pip install ticktick-py

Future Plans

  • General
    • Enhanced Team Support
  • Tasks
    • Notification and Repeats For Tasks
    • Get and Restore From Trash
  • Projects
    • Smart List Support
    • Column Creation For Kanban View
  • Pomo and Focus
    • Getting the focus / pomo statistics for your profile
    • Starting and stopping the focus / pomo timer
  • Habits
    • Get, create, archive, delete, and complete habits

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

ticktick-py-1.0.2.tar.gz (41.7 kB view hashes)

Uploaded Source

Built Distribution

ticktick_py-1.0.2-py3-none-any.whl (43.8 kB view hashes)

Uploaded Python 3

Supported by

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