Metadata-Version: 2.1
Name: labii-sdk
Version: 1.13.4
Summary: An SDK for the Labii ELN & LIMS platform (https://www.labii.com) that provides interaction with the Labii API.
Home-page: https://gitlab.com/labii-dev/labii-sdk-python
Author: Labii Inc.
Author-email: developer@labii.com
License: GNU GPLv3
Project-URL: Bug Tracker, https://gitlab.com/labii-dev/labii-sdk-python/-/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.27.1
Requires-Dist: boto3>=1.20.38

# Labii SDK

An SDK for the [Labii ELN & LIMS platform](https://www.labii.com) that provides interaction with the [Labii API](https://docs.labii.com/api/overview).

![Labii screenshot](https://www.labii.com/media/screenshots/labii-richtext-editor.webp)

This package contains two modules, __api_client__ and __sdk__.
* Python API clients help you perform Labii API calls, such as authentication, get, patch, post, and delete. Learn more at [https://docs.labii.com/api/sdk/api-client-python](https://docs.labii.com/api/sdk/api-client-python)
* SDK is the toolkit with prebuilt Labii components that developers use to interact with Labii APIs. Learn more at [https://docs.labii.com/api/sdk/sdk-python](https://docs.labii.com/api/sdk/sdk-python)

# Install
```
pip install labii-sdk
```

# Usage
```python
# 1. Install the Labii SDK
pip install labii-sdk

# 2. Import the package
from labii_sdk.sdk import LabiiObject

# 3. Initial the API object
labii = LabiiObject()

# 4. Start querying
labii.api.login()
# get a list of tables
labii.Tables.list()
```

# Documentation
* [Labii API documentation](https://docs.labii.com/api/overview)
* [Labii API Client documentation](https://docs.labii.com/api/sdk/api-client-python)
* [Labii SDK documentation](https://docs.labii.com/api/sdk/sdk-python)

# About Labii
[Labii](https://www.labii.com) facilitates research and development by providing a user-friendly, customizable Electronic Lab Notebook (ELN) and Laboratory Information Management System (LIMS) to document, manage, and interpret data. Labii ELN & LIMS can be configured for any type of data, and the functions can easily be enhanced and expanded by stand-alone applications. We address the unique needs of each of our customers and are the trusted provider of hundreds of biotech companies and academic labs.
