pyclickup
pyclickup copied to clipboard
a python library for accessing the ClickUp api
As per Issue https://github.com/jpetrucciani/pyclickup/issues/23 EDIT: I see now this library is using API V2, while latest is V3. There are some differences (including this one), along with some other namings...
On ClickUp API docs, there is no field "content" when updating a task. I assume they have changed `content` with `description`, and when updating the library in that fashion updating...
Please, is there any way I can filter tasks by, some example, date_closed, instead of getting all tasks?
Thanks for sharing pyclickup! I would like to get to tasks (with features) to pandas dataframe. Any idea how I can do this with pyclickup. Data frame Columns I would...
I managed to get subtasks `tasks = main_list.get_all_tasks(include_closed=True,subtasks=True)` Any idea how to get tasks/subtasks start and due dates and status(open /close)? Thanks in advance PS: I found some usefull links...
It seems that changing the tags of tasks is not supported with the client. Missing from `Task.update`: https://github.com/jpetrucciani/pyclickup/blob/f58a5c1717d671363a32273ec88c62f720dc2f67/pyclickup/models/__init__.py#L311-L320 API reference: https://clickup.com/api/clickupreference/operation/AddTagToTask/ https://clickup.com/api/clickupreference/operation/RemoveTagFromTask/ The same is true for custom fields: https://clickup.com/api/clickupreference/operation/SetCustomFieldValue/
The new API has been released! It would be great if this module supported it. Reference: https://clickup.com/api
Not sure how it all works ATM but decided to give it a try anyway and see what breaks.
We had the requirement to use the `custom-fields` and `parent` fields in the `create_task` method. For some reason, the `data` pass-through wasn't working, so I changed it to `json`.