in-process search-engine for python
Project description
hashedixsearch
hashedixsearch
is a lightweight in-process search engine for Python, with support for stemming, synonyms, custom token analyzers, and query match highlighting.
Usage
from hashedixsearch import HashedIXSearch
doc = 'find the needle in the haystack'
index = HashedIXSearch(synonyms={'search': 'find'})
index.add(doc_id=1, doc=doc)
results = index.query_batch(['search'])
for query, hits in results:
for hit in hits:
# <mark>find</mark> the needle in the haystack
markup = index.highlight(doc=doc, terms=hit['terms'])
Tests
To run the hashedixsearch
test suite:
$ python -m unittest
This library uses hashedindex for tokenization and indexing.
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
hashedixsearch-1.1.1.tar.gz
(14.9 kB
view hashes)
Built Distribution
Close
Hashes for hashedixsearch-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e47bbb74f8893dcda06038a73b513d878a1dce840d610aae3f2e657a820ac0e6 |
|
MD5 | 5c82d37b279fb026fdca14e263a80bd8 |
|
BLAKE2b-256 | c41dfd96b94c203745ec7c3b40316bc4137cf49b1df2308e71b9e70c011ae133 |