Metadata-Version: 2.1
Name: clickup
Version: 0.0.7
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
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/x-rst

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.client 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)


