Haystack custom components for your favourite dataframe library.
Project description
Dataframes Haystack
📃 Description
dataframes-haystack is an extension for Haystack 2 that enables integration with dataframe libraries.
The dataframe libraries currently supported are:
The library offers various custom Converters components to transform dataframes into Haystack Document objects:
DataFrameFileToDocumentis a main generic converter that reads files using a dataframe backend and converts them intoDocumentobjects.FileToPandasDataFrameandFileToPolarsDataFrameread files and convert them into dataframes.PandasDataFrameConverterorPolarsDataFrameConverterconvert data stored in dataframes into HaystackDocumentobjects.
dataframes-haystack supports reading files in various formats:
- csv, json, parquet, excel, html, xml, orc, pickle, fixed-width format for
pandas. See the pandas documentation for more details. - csv, json, parquet, excel, avro, delta, ipc for
polars. See the polars documentation for more details.
🛠️ Installation
# for pandas
pip install "dataframes-haystack[pandas]"
# for polars
pip install "dataframes-haystack[polars]"
💻 Usage
[!TIP] See the Example Notebooks for complete examples.
DataFrameFileToDocument
You can leverage both pandas and polars backends (thanks to narwhals) to read your data!
from dataframes_haystack.components.converters import DataFrameFileToDocument
converter = DataFrameFileToDocument(content_column="text_str")
documents = converter.run(files=["file1.csv", "file2.csv"])
>>> documents
{'documents': [
Document(id=0, content: 'Hello world', meta: {}),
Document(id=1, content: 'Hello everyone', meta: {})
]}
pandas Converters
FileToPandasDataFrame
from dataframes_haystack.components.converters.pandas import FileToPandasDataFrame
converter = FileToPandasDataFrame(file_format="csv")
output_dataframe = converter.run(
file_paths=["data/doc1.csv", "data/doc2.csv"]
)
Result:
>>> output_dataframe
{'dataframe': <pandas.DataFrame>}
PandasDataFrameConverter
import pandas as pd
from dataframes_haystack.components.converters.pandas import PandasDataFrameConverter
df = pd.DataFrame({
"text": ["Hello world", "Hello everyone"],
"filename": ["doc1.txt", "doc2.txt"],
})
converter = PandasDataFrameConverter(content_column="text", meta_columns=["filename"])
documents = converter.run(df)
Result:
>>> documents
{'documents': [
Document(id=0, content: 'Hello world', meta: {'filename': 'doc1.txt'}),
Document(id=1, content: 'Hello everyone', meta: {'filename': 'doc2.txt'})
]}
polars Converters
FileToPolarsDataFrame
from dataframes_haystack.components.converters.polars import FileToPolarsDataFrame
converter = FileToPolarsDataFrame(file_format="csv")
output_dataframe = converter.run(
file_paths=["data/doc1.csv", "data/doc2.csv"]
)
Result:
>>> output_dataframe
{'dataframe': <polars.DataFrame>}
PolarsDataFrameConverter
import polars as pl
from dataframes_haystack.components.converters.polars import PolarsDataFrameConverter
df = pl.DataFrame({
"text": ["Hello world", "Hello everyone"],
"filename": ["doc1.txt", "doc2.txt"],
})
converter = PolarsDataFrameConverter(content_column="text", meta_columns=["filename"])
documents = converter.run(df)
Result:
>>> documents
{'documents': [
Document(id=0, content: 'Hello world', meta: {'filename': 'doc1.txt'}),
Document(id=1, content: 'Hello everyone', meta: {'filename': 'doc2.txt'})
]}
🤝 Contributing
Do you have an idea for a new feature? Did you find a bug that needs fixing?
Feel free to open an issue or submit a PR!
Setup development environment
Requirements: hatch, pre-commit
- Clone the repository
- Run
hatch shellto create and activate a virtual environment - Run
pre-commit installto install the pre-commit hooks. This will force the linting and formatting checks.
Run tests
- Linting and formatting checks:
hatch run lint:fmt - Unit tests:
hatch run test-cov-all
✍️ License
dataframes-haystack is distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dataframes_haystack-0.0.5.tar.gz.
File metadata
- Download URL: dataframes_haystack-0.0.5.tar.gz
- Upload date:
- Size: 163.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
960299cd4d247a7deda6fbb75f800178acc7c7ae5f757f01f6426e333496034d
|
|
| MD5 |
671dde896a763ef7c90db26391ec230f
|
|
| BLAKE2b-256 |
fe4ea80b75b5771b826433a3a62e2c0c44a9e54d5ed3ea3fc42c56b50fcf213b
|
Provenance
The following attestation bundles were made for dataframes_haystack-0.0.5.tar.gz:
Publisher:
publish.yml on EdAbati/dataframes-haystack
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dataframes_haystack-0.0.5.tar.gz -
Subject digest:
960299cd4d247a7deda6fbb75f800178acc7c7ae5f757f01f6426e333496034d - Sigstore transparency entry: 195383534
- Sigstore integration time:
-
Permalink:
EdAbati/dataframes-haystack@e89df19cee20776772f862ecd0f6c5b529b6bb88 -
Branch / Tag:
refs/tags/0.0.5 - Owner: https://github.com/EdAbati
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e89df19cee20776772f862ecd0f6c5b529b6bb88 -
Trigger Event:
push
-
Statement type:
File details
Details for the file dataframes_haystack-0.0.5-py3-none-any.whl.
File metadata
- Download URL: dataframes_haystack-0.0.5-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff8e1e62f2e8a52aa273a43d48186f5b26660650aa35d8247b27225c22a78ee9
|
|
| MD5 |
fe1acab12a2fbd9cd304905e942529d7
|
|
| BLAKE2b-256 |
2defcf75a24d226bdfe79b8172bea67963355453713041a48cbd132eb54ce1a6
|
Provenance
The following attestation bundles were made for dataframes_haystack-0.0.5-py3-none-any.whl:
Publisher:
publish.yml on EdAbati/dataframes-haystack
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dataframes_haystack-0.0.5-py3-none-any.whl -
Subject digest:
ff8e1e62f2e8a52aa273a43d48186f5b26660650aa35d8247b27225c22a78ee9 - Sigstore transparency entry: 195383536
- Sigstore integration time:
-
Permalink:
EdAbati/dataframes-haystack@e89df19cee20776772f862ecd0f6c5b529b6bb88 -
Branch / Tag:
refs/tags/0.0.5 - Owner: https://github.com/EdAbati
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e89df19cee20776772f862ecd0f6c5b529b6bb88 -
Trigger Event:
push
-
Statement type: