A general purpose indexer written in Python.
Project description
A general purpose indexer written in Python. Licensed under the MIT license.
Features
The indexr.buildr
package is capable of constructing an inverted index.
The indexr.utils
package contains utilities, such as a tokenization method for converting a text to tokens.
Setup
This package can be installed using pip:
pip install indexr
Examples
In this example, an indexer is constructed for 3 files. The example uses the following 3 files:
0.txt
:
The 0th document.
1.txt
:
The 1st document.
2.txt
:
The 2nd document. Some words: repeat, repeat, repeat.
The following code sample can be found in the demo directory (demo/buildr.py
).
# Build the index
index = build_index(files, 'index', force_rebuild=True, indexer=SPIMI(show_progress=True))
# Try to find the word "1st"
print('All found occurrences of "1st":')
print(index.find('1st', frequencies=True), "\n")
# Try to find the word "The"
print('All found occurrences of "The":')
print(index.find('The', frequencies=True), "\n")
# Try to find the word "repeat"
print('All found occurrences of "repeat":')
print(index.find('repeat', frequencies=True), "\n")
It gives the following output:
>>> All found occurrences of "1st":
>>> {'1.txt': 1}
>>>
>>> All found occurrences of "The":
>>> {'0.txt': 1, '1.txt': 1, '2.txt': 1}
>>>
>>> All found occurrences of "repeat":
>>> {'2.txt': 3}
So indeed, it finds 1 occurrence of “1st”, 3 occurrences of “The” (1 occurrence in each file) and 3 occurrences of “repeat” (3 occurrences in one file).
Documentation
Credits
Tools used in rendering this package:
History
1.0.1 (2015-12-07)
First release, including the BSB algorithm and the SPIMI algorithm.
0.1.0 (2015-12-04)
First release on PyPI.
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
File details
Details for the file indexr-1.0.1.zip
.
File metadata
- Download URL: indexr-1.0.1.zip
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56f19eea181d251991ac3fec2d944c94278525612e5ab02b5635e2e7cc34beec |
|
MD5 | 2a1a6b00adc8fc52a78e1fc0d57142f4 |
|
BLAKE2b-256 | b7da8e4845d5559c11483826812c9c814d83cc4eddf515dd4033526c37bee59a |
File details
Details for the file indexr-1.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: indexr-1.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d621513926350694a97d9230e8b6f7dcf72e47f72f2ff6232e1defcadbe41f89 |
|
MD5 | 854d42fae571ffe12d69d6916f6aad40 |
|
BLAKE2b-256 | feff05c0f5ee3c658e6d65363aa093c43a0f808f0a0171faaf820e537d547532 |