Inverted Index
Project description
Inverted Index
A small extensiable python inverted index. It supports retevial by boolean AND
s and ranking of the returned results. The point is a skeleton to add
quick and dirty search to a script.
It also includes a prompt_toolkit
completer that can each the inverted index as you type. When you select a auto-suggest option it will replace your prompt.
The best way I have found to use this is to set it up to trigger only when you ask by hitting tab like so:
from prompt_toolkit import prompt
from inverted_index.prompt import SearchCompleter
from inverted_index.inverted_index import InvertedIndex
# Create your index
ii = InvertedIndex(...)
ii.index(my_documents)
user_input = prompt("> ", completer=SearchCompleter(ii), complete_while_typing=False)
# Do things with user_input
print(user_input)
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
inverted-index-0.1.1.tar.gz
(3.7 kB
view details)
Built Distribution
File details
Details for the file inverted-index-0.1.1.tar.gz
.
File metadata
- Download URL: inverted-index-0.1.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0784b07698053ebbba1858b9845b1a5630a6481e0e1315363b90f32b238653fb |
|
MD5 | 85857a64f0d8c5a4da28065671764b86 |
|
BLAKE2b-256 | 480406595fe83879a985465e0f669e30ac8a9672a39da6f247f93682b1373ea7 |
File details
Details for the file inverted_index-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: inverted_index-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2f9213216e14575b345adfdd43254df2e1d457c89bb0d5b2ea955e8a5a3fec7 |
|
MD5 | 5ebcebf34417603fa096038adc3f12b2 |
|
BLAKE2b-256 | ac84daed8ebfa5111d0e1bbed7a4ccd639cc78a2231f8576ba20482ac020aa7d |