A Python API wrapper for Godspeed.
Use the package manager pip to install Godspeed-API.
pip install godspeed-api- Task creation (
create_task) - Task modification (
update_task) - Paginated task query (
list_tasks)
from godspeed_api import API
api = API("your-username", "your-password")
# to create a task
api.create_task(
title='Your Task Title',
list_id='list_id',
location='location',
notes='notes',
due_at=datetime.datetime.now(),
# Note that current godspeed api will fail to add a task with new label_names, however it will not throw an error
label_names=['label1', 'label2']
)Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.