Metadata-Version: 2.1
Name: clink
Version: 0.35.0
Summary: Component Link.
Author-email: Matt Austin <matt.austin@csiro.au>
License: Apache-2.0
Project-URL: Homepage, https://bitbucket.csiro.au/projects/ASKAPSDP/repos/clink/
Project-URL: Documentation, https://askapsdp.gitlab.io/clink/
Project-URL: Changelog, https://askapsdp.gitlab.io/clink/changelog.html
Project-URL: Issues, https://jira.csiro.au/projects/ASKAPSDP/issues
Project-URL: Source, https://bitbucket.csiro.au/projects/ASKAPSDP/repos/clink/browse
Project-URL: Coverage, https://askapsdp.gitlab.io/clink/coverage/
Keywords: clink,amqp,cloudevent,messaging,producer,consumer,queue,event
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Topic :: System
Classifier: Typing :: Typed
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE-cloudevents
License-File: LICENSE-django
License-File: LICENSE-kombu
License-File: LICENSE-w3c
License-File: AUTHORS.rst
Requires-Dist: kombu>=5
Requires-Dist: marshmallow>=3
Requires-Dist: rich>=10
Requires-Dist: sentry-sdk>=1
Requires-Dist: setuptools>8.3
Requires-Dist: pyyaml>=5
Requires-Dist: typing-extensions>=4.1.1; python_version < "3.10"
Requires-Dist: click<8,>=7; python_version < "3.6.5"
Requires-Dist: dataclasses; python_version < "3.7"
Requires-Dist: backports.zoneinfo; python_version < "3.9"
Requires-Dist: click>=7; python_version >= "3.6.5"
Requires-Dist: importlib-metadata<5.0.0; python_version >= "3.7" and python_version < "3.8"
Provides-Extra: docs
Requires-Dist: sphinx~=8.1; extra == "docs"
Requires-Dist: sphinx-rtd-theme~=3.0; extra == "docs"
Requires-Dist: sphinxcontrib-spelling~=8.0; extra == "docs"
Provides-Extra: redis
Requires-Dist: kombu[redis]>=5; extra == "redis"
Provides-Extra: tests
Requires-Dist: coverage[toml]~=6.2; extra == "tests"
Requires-Dist: freezegun~=1.2; extra == "tests"
Requires-Dist: unittest-xml-reporting~=3.1; extra == "tests"
Requires-Dist: asynctest==0.13.0; python_version < "3.8" and extra == "tests"
Provides-Extra: types
Requires-Dist: mypy~=1.14; extra == "types"
Requires-Dist: types-attrs==19.1.0; extra == "types"
Requires-Dist: types-backports==0.1.3; extra == "types"
Requires-Dist: types-certifi==2021.10.8.3; extra == "types"
Requires-Dist: types-dataclasses==0.6.6; extra == "types"
Requires-Dist: types-pyyaml==6.0.12.20241230; extra == "types"
Requires-Dist: types-setuptools==75.8.0.20250110; extra == "types"
Requires-Dist: types-click==7.1.8; python_version < "3.6.5" and extra == "types"
Provides-Extra: tzdata
Requires-Dist: tzdata; extra == "tzdata"

# Component Link

[![pipeline status](https://gitlab.com/ASKAPSDP/clink/badges/develop/pipeline.svg)](https://gitlab.com/ASKAPSDP/clink/commits/develop) [![coverage](https://gitlab.com/ASKAPSDP/clink/badges/develop/coverage.svg)](https://askapsdp.gitlab.io/clink/coverage/)


Documentation: <https://askapsdp.gitlab.io/clink/>


CLINK is a Python library designed to make it easy to build
[CloudEvent](https://cloudevents.io/) consumers and producers (CLINK
participants). It uses [Kombu](https://kombu.readthedocs.io/) and
[AMQP](https://amqp.org/) for messaging.


CLINK supports Python 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11.


## Installation

Install from the
[Python Package Index, (pypi)](https://pypi.org/project/clink/), using
[pip](https://pip.pypa.io/en/stable/):

```bash
python -m pip install clink
```
