Metadata-Version: 2.0
Name: clickup
Version: 0.0.4
Summary: A Python library for the ClickUp API
Home-page: https://github.com/secdevopsai/clickup
Author: Ronald Eddings
Author-email: ron@secdevops.ai
License: UNKNOWN
Description-Content-Type: text/x-rst
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent

ClickUp Python Library
=========


A Python library for the ClickUp API

Quick start
-----------

Installation
^^^^^^^^^^^^

.. code-block:: bash

   # install clickup
   pip install clickup

Basic Usage
^^^^^^^^^^^

.. code-block:: python

    from clickup import Client
    click_client = Client(EMAIL, PASS, PERSONAL_API_KEY)
    for team_id, team_name in click_client.teams.items():
        print(team_id, team_name)


