1

我正在尝试使用 python api 向 todoist 添加重复任务。

我在下面尝试过,但不知道如何指定重复设置

from pytodoist import todoist
user = todoist.login('login', 'pass')
project = user.get_project('my_project')
task = project.add_task('My Recuring task')
task = project.add_task('My Recuring task tomorrow at 2 pm')
4

1 回答 1

2

我建议您使用我们的主库。

这是一个为每天创建一个新任务的单行代码:

python2.7 -c "import todoist; import os; token = os.environ.get('token'); api = todoist.TodoistAPI(token); api.items.add('test', None, date_string='ev day'); api.commit()"

分解它:

# import the library
import todoist

# retrieve the token from my environment variables
import os
token = os.environ.get('token'); 

# initialize the API object
api = todoist.TodoistAPI(token)

# Create a new task called "test", with "None" as the project id and date_string as kwargs for the arguments of the item.
api.items.add('test', None, date_string='ev day')

# commit it! :)
api.commit()"

在最后一个参数中,您可以将文档中可用的所有参数作为命令参数传递

于 2017-11-27T18:01:34.447 回答