Go to file
Nicolas Brousse eba3f60346
Fix build issues due to maturin & py03 versions (#37)
* bump maturin and pyo3 versions

* update to support MacOS dylib extentions

* update package config to use a build.rs and fix  linking issue on macOS see  https://pyo3.rs/master/building_and_distribution.html#macos
2022-01-03 22:50:19 +09:00
.cargo travis: Enable mac build. 2020-01-06 15:13:10 +01:00
.github/workflows feat: use github actions for basic ci (#38) 2022-01-03 22:43:52 +09:00
ci ci: Don't use the master branch of the maturin docker image. 2020-10-11 14:21:45 +02:00
src Release GIL on searcher acquisition. 2021-05-01 15:37:33 +09:00
tantivy Initial python bindings implementation. 2019-06-04 11:09:58 +02:00
tests Avoid truncating utf-8 strings in the middle of a codepoint in 2020-10-01 22:36:28 +09:00
.gitignore gitignore: Add the new maturin provided so file to the ignores. 2020-01-05 14:58:38 +01:00
.travis.yml Fixed links 2021-10-18 13:31:07 +00:00
Cargo.toml Fix build issues due to maturin & py03 versions (#37) 2022-01-03 22:50:19 +09:00
LICENSE Initial python bindings implementation. 2019-06-04 11:09:58 +02:00
MANIFEST.in Initial python bindings implementation. 2019-06-04 11:09:58 +02:00
Makefile Fix build issues due to maturin & py03 versions (#37) 2022-01-03 22:50:19 +09:00
Pipfile Fix build issues due to maturin & py03 versions (#37) 2022-01-03 22:50:19 +09:00
Pipfile.lock travis: Enable mac build. 2020-01-06 15:13:10 +01:00
README.md Fixed links 2021-10-18 13:31:07 +00:00
build.rs Fix build issues due to maturin & py03 versions (#37) 2022-01-03 22:50:19 +09:00
pyproject.toml pyptoject: Use maturin from now on. 2020-01-05 13:52:53 +01:00
rustfmt.toml Initial python bindings implementation. 2019-06-04 11:09:58 +02:00
tox.ini tantivy: Add a tox.ini file. 2019-08-08 14:22:23 +02:00

README.md

Build Status License: MIT

tantivy-py

Python bindings for Tantivy.

Installation

The bindings can be installed using from pypi using pip:

pip install tantivy

If no binary wheel is present for your operating system the bindings will be build from source, this means that Rust needs to be installed before building can succeed.

Note that the bindings are using PyO3, which only supports python3.

Development

Setting up a development environment can be done in a virtual environment using pipenv or using local packages using the provided Makefile.

For the pipenv setup install the virtual environment and build the bindings using:

pipenv install --dev
pipenv run maturin develop

After the bindings are build, the tests can be run using:

pipenv run python -m pytest

For the Makefile based setup run:

make

Running the tests is done using:

make test

Usage

The Python bindings have a similar API to Tantivy. To create a index first a schema needs to be built. After that documents can be added to the index and a reader can be created to search the index.

import tantivy

# Declaring our schema.
schema_builder = tantivy.SchemaBuilder()
schema_builder.add_text_field("title", stored=True)
schema_builder.add_text_field("body", stored=True)
schema = schema_builder.build()

# Creating our index (in memory, but filesystem is available too)
index = tantivy.Index(schema)


# Adding one document.
writer = index.writer()
writer.add_document(tantivy.Document(
    title=["The Old Man and the Sea"],
    body=["""He was an old man who fished alone in a skiff in the Gulf Stream and he had gone eighty-four days now without taking a fish."""],
))
# ... and committing
writer.commit()


# Reload the index to ensure it points to the last commit.
index.reload()
searcher = index.searcher()
query = index.parse_query("fish days", ["title", "body"])

(best_score, best_doc_address) = searcher.search(query, 3).hits[0]
best_doc = searcher.doc(best_doc_address)
assert best_doc["title"] == ["The Old Man and the Sea"]
print(best_doc)