clickup-api-client: A Python client for the ClickUp API
Project description
Update: I just want to clarify that I do not activley maintain this code and am not associated with Clickup. Things may change over time but this should cover all the main endpoints. Feel free to clone and change this code in any way, shape or form.
clickupython
A client for working with the ClickUp API V2. It can be used to interact with the ClickUp API in your projects.
Documentation (WIP) and examples can be found here: clickupython documentation
Instructions
1) Installing
pip install clickupython
2) Library Usage
Using clickupython in your application takes just a couple quick steps.
To use the client for a personal account context (no actions on behalf of another user)
from clickupython import client
API_KEY = 'YOUR API KEY'
c = client.ClickUpClient(API_KEY)
# Example request
c = client.ClickUpClient(API_KEY)
t = c.create_task("list_id", name="Test task", due_date="march 2 2021")
print(t.name)
For more examples, please refer to the Documentation
Current ClickUpClient Functions
Task
get_task(task_id)get_tasks(list_id, archived, page, order_by, reverse, subtasks, statuses, include_closed, assignees, due_date_gt, due_date_lt, date_created_gt, date_created_lt, date_updated_gt, date_updated_lt)create_task(list_id, name, description, priority, assignees, tags, status, due_date, start_date, notify_all)update_task(task_id, name, description, status, priority, time_estimate, archived, add_assignees,remove_assignees
List
get_list(list_id)get_lists(folder_id)create_list(folder_id, name, content, due_date, priority, status)create_folderless_list(space_id, name, content, due_date, priority, assignee, status)update_list(list_id, name, content, due_date, due_date_time, priority, assignee, unset_status)delete_list(list_id)add_task_to_list(task_id, list_id)remove_task_from_list(task_id, list_id)
Folder
get_folder(folder_id)get_folders(space_id)create_folder(space_id, name)update_folder(folder_id, name)delete_folder(folder_id)
Attachments
upload_attachment(task_id, file_path)
Comments
get_task_comments(task_id)get_list_comments(list_id)get_chat_comments(view_id)update_comment(comment_id)delete_comment(comment_id)create_task_comment(task_id)
Teams
get_teams()
Checklists
create_checklist(task_id, name)create_checklist_item(checklist_id, name, assignee)delete_checklist_item(checklist_id, checklist_item_id)update_checklist_item(checklist_id, checklist_item_id, name, resolved, parent)
Goals
create_goal(team_id, name, due_date, description, multiple_owners, owners, color)update_goal(goal_id, name, due_date, description, rem_owners, add_owners, color)delete_goal(goal_id)get_goal(goal_id)get_goals(team_id, include_completed)
Members
get_task_members(task_id)get_list_members(list_id)
Tags
get_space_tags(space_id)create_space_tag(space_id, name)update_tag(space_id, name, new_name)tag_task(task_id, tag_name)untag_task(task_id, tag_name)
Spaces
create_space(team_id, name, features)delete_space(space_id)get_space(space_id)get_spaces( team_id, archived)
Time Tracking
get_time_entries_in_range(team_id, start_date, end_date, assignees)get_single_time_entry(team_id, timer_id)start_timer(team_id, timer_id)stop_timer(team_id)
Contact
Zach Johnson & Robert Mullis
Email: imzachjohnson@gmail.com, phoenix.scooter@gmail.com
Acknowledgements
License
Distributed under the GNU General Public License v3.0. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clickup_api_client-1.0.4.tar.gz.
File metadata
- Download URL: clickup_api_client-1.0.4.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eb2f645fd50366fc2612ff2989e5bac742b28c4a4181328806e68c2085a36ac
|
|
| MD5 |
dbc1c182837b5c5745f8a9d1c4b0dce1
|
|
| BLAKE2b-256 |
340c511ff56a3b84cff00a27835f80acbe10087e361c734bd92751c5a837cde8
|
File details
Details for the file clickup_api_client-1.0.4-py3-none-any.whl.
File metadata
- Download URL: clickup_api_client-1.0.4-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c353c300efb9b0fda3172624dcc35449e9bc1e9d7c6de540a85a7d68a626505a
|
|
| MD5 |
b7d9c9341e3b5f824cd1f57ca0a77fd7
|
|
| BLAKE2b-256 |
0f372b92d902c6b12b3e1e988019fe24909dac7c80e32deb1338a4f63b752a16
|