I am trying to add a recurring task to todoist using the python api.
- Official API Doc: https://developer.todoist.com/sync/v7/#add-two-new-tasks
- Official Python library: https://github.com/Doist/todoist-python
- Other Python library: https://github.com/Garee/pytodoist
- Other Python library doc: https://media.readthedocs.org/pdf/pytodoist/latest/pytodoist.pdf
I tried this below but don't know how to specify the recurring settings
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')