Metadata-Version: 2.4
Name: unitelabs-cdk
Version: 0.3.2rc4
Summary: A framework to develop UniteLabs connectors based on the SiLA 2 standard specification.
Project-URL: homepage, https://unitelabs.io
Project-URL: repository, https://gitlab.com/unitelabs/cdk/python-cdk
Project-URL: documentation, https://docs.unitelabs.io/connector-development/overview
Project-URL: Bug Tracker, https://gitlab.com/unitelabs/cdk/python-cdk/-/issues
Author-email: UniteLabs <developers+cdk@unitelabs.io>
License-Expression: MIT
License-File: LICENSE
Keywords: SiLA 2,UniteLabs,automation,connectivity,laboratory
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Software Development :: Libraries
Requires-Python: <4.0,>=3.9
Requires-Dist: click
Requires-Dist: deprecated
Requires-Dist: pydantic-settings
Requires-Dist: python-dotenv
Requires-Dist: pyyaml
Requires-Dist: unitelabs-sila>=0.1.8
Provides-Extra: dev
Requires-Dist: cruft; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: docs
Requires-Dist: unitelabs-jsondocs; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-asyncio; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Description-Content-Type: text/markdown

# UniteLabs Connector Development Framework

The UniteLabs Connector Development Framework (CDK) is a free and open-source framework that enables you to build connectors for
laboratory hard- and software systems with interfaces that are based on industry standards like
[SiLA 2](https://sila-standard.com). If you plan on implementing an interface natively for your device or as wrapper
around an existing proprietary interface, you can use this framework to get it built quickly without deep-diving into
the standard specifications with our intuitive, code-first approach. It provides configurable modules you can use to
quickly integrate the hardware or software you want to connect.

## Installation

[<img src="https://img.shields.io/badge/python-≥3.9.2-0052FF.svg?logo=LOGO&amp;labelColor=090422">](LINK)
[<img src="https://img.shields.io/badge/poetry-≥1.3.1-0052FF.svg?logo=LOGO&amp;labelColor=090422">](LINK)

The UniteLabs CDK requires Python 3.9 or later. To get started quickly, we recommend to get started with out [cookiecutter starter project](https://gitlab.com/unitelabs/cdk/connector-factory):

```
$ cruft create git@gitlab.com:unitelabs/cdk/connector-factory.git
$ cd <my-connector-name>
$ <env-manager> run connector start -vvv
```
where here env-manager would be `poetry`, `hatch`, or `uv`.

You can also manually create a new project from scratch and [install the framework](https://docs.unitelabs.io/connector-development/getting-started/overview) with pip. In this case, of course, you'll be responsible for creating the project boilerplate files yourself.

```
$ pip install unitelabs-cdk
```

## Documentation

Explore the UniteLabs [CDK documentation](https://docs.unitelabs.io/connector-development/getting-started/overview) on our docs page. From there you can find your way to the tutorials and guides.

## Contribute

There are many ways to contribute to this project and our vision of freely and readily available interfaces for laboratory systems.

- Check out our [contribution guidelines](https://docs.unitelabs.io/connector-development/community/contributing) to help us improve this project
- Join the over 400 developers in the [SiLA Slack community](https://sila-standard.org/slack)
- Give back to the community and add your connectors to the [UniteHub](https://hub.unitelabs.io) by sending us an
  [email](mailto:connectors@unitelabs.io)!
- Get in touch with our developers regarding feedback and feature requests at [developers@unitelabs.io](mailto:developers@unitelabs.io)
- Give us a ⭐️ on [GitLab](https://gitlab.com/unitelabs/cdk/python-cdk)

## License

We, UniteLabs, provide and maintain this free and open-source framework with the aim to enable the community to overcome
any barriers in digitalizing their laboratory environment. We highly appreciate, if the users of this framework value
the same principles. Therefore, if you want to make your connectors available for others, we encourage you to share them
on our sharing platform, the [UniteHub](https://hub.unitelabs.io). As we do not want to enforce disclosure of your work,
we distribute this framework under the [MIT license](LICENSE).
