hari-client is the official open source API client package for HARI (Highly Actionable Real-Time Insights) by Quality Match GmbH. This package allows you to interact with the HARI backend, enabling you to create datasets and upload your data with ease.
Minimum python version: 3.11
To install the hari-client package, use pip with the following command:
python -m pip install "hari_client @ git+https://github.com/quality-match/hari-client@v3.0.0"
You can use the quick start script as basis for your development.
It's an example of how to use hari-client to create a dataset and upload images and annotations.
Every run of this script creates a new dataset.
You can find the referenced images here: docs/example_code/images/
.
Copy the docs/example_code/.env_example
file to docs/example_code/.env
and fill in your HARI credentials there.
Run the script from the docs/example_code
directory.
This section describes the available configuration options for the hari-client.
You can find all available environment variables in the docs/example_code/.env_example
file.
The optional environment variables are commented out.
To be able to use the hari-client, you need to provide your HARI credentials:
HARI_USERNAME
HARI_PASSWORD
You can configure the bath size that's used to upload medias, media objects and attributes. If you're experiencing timeout problems, we recommend reducing the media upload batch size.
HARI_UPLOADER__MEDIA_UPLOAD_BATCH_SIZE
HARI_UPLOADER__MEDIA_OBJECT_UPLOAD_BATCH_SIZE
HARI_UPLOADER__ATTRIBUTE_UPLOAD_BATCH_SIZE
For more detailed documentation, including all available methods and their parameters, please refer to the official documentation https://docs.quality-match.com.
We provide in the folder scripts
a collection of common use-cases for which the HARI client can be used.
Please check here before you implement your on script since we might have you already covered.
DISCLAIMER: This section is currently in development and is extended regularly. DISCLAIMER: The scripts are currently not quality controlled and thus may include deprecated code.
See: CHANGELOG.md
To set up your local development environment, follow these steps:
- Clone the repository
- Setup a virtual environment with Python 3.11
- Install the package in editable mode with the following command:
python -m pip install -e '.[tests]'
- This also installs pytest and the pre-commit tool into the environment
- Install the pre-commit hooks with the following command:
pre-commit install
This project is licensed under the MIT License. See the LICENSE file for more details.
Visit our website https://quality-match.com