All Projects → jpetrucciani → pyclickup

jpetrucciani / pyclickup

Licence: MIT License
a python library for accessing the ClickUp api

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to pyclickup

clickrup
Interacting with the ClickUp v2 API from R
Stars: ✭ 13 (-60.61%)
Mutual labels:  clickup

pyclickup

PyPI version Build Status Coverage Status Code style: black Documentation Status Python 3.6+ supported

A python wrapper for the ClickUp API

Quick start

Installation

# install pyclickup
pip install pyclickup

Basic Usage

from pyclickup import ClickUp


clickup = ClickUp("$ACCESS_TOKEN")

main_team = clickup.teams[0]
main_space = main_team.spaces[0]
members = main_space.members

main_project = main_space.projects[0]
main_list = main_project.lists[0]

tasks = main_list.get_all_tasks(include_closed=True)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].