Metadata-Version: 2.5
Name: mariadb-haystack
Version: 0.0.1
Summary: An integration of MariaDB 11.7+ (native VECTOR support) with Haystack
Project-URL: Source, https://github.com/deepset-ai/haystack-core-integrations
Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/blob/main/integrations/mariadb/README.md
Project-URL: Issues, https://github.com/deepset-ai/haystack-core-integrations/issues
Author-email: deepset GmbH <info@deepset.ai>
License-Expression: Apache-2.0
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
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: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Requires-Dist: haystack-ai>=2.28.0
Requires-Dist: mariadb>=1.1.6
Description-Content-Type: text/markdown

# mariadb-haystack

[![PyPI - Version](https://img.shields.io/pypi/v/mariadb-haystack.svg)](https://pypi.org/project/mariadb-haystack)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mariadb-haystack.svg)](https://pypi.org/project/mariadb-haystack)

- [Integration page](https://haystack.deepset.ai/integrations/mariadb-documentstore)
- [Changelog](https://github.com/deepset-ai/haystack-core-integrations/blob/main/integrations/mariadb/CHANGELOG.md)

---

## Contributing

Refer to the general [Contribution Guidelines](https://github.com/deepset-ai/haystack-core-integrations/blob/main/CONTRIBUTING.md).

The `mariadb` connector is a C extension built from source, so it needs the MariaDB Connector/C system library
(`mariadb_config`): `sudo apt-get install -y libmariadb-dev` on Ubuntu, or `brew install mariadb-connector-c`
on macOS.

To run integration tests locally, you need a MariaDB 11.7+ instance running.
You can start one using Docker:

```console
docker run -d --name mariadb-haystack -e MARIADB_ROOT_PASSWORD=password -e MARIADB_DATABASE=haystack -p 3306:3306 mariadb:11.7
```
