Skip to main content

Inverted Index

Project description

Inverted Index

PyPi Version Actions Status Code style: black

A small extensiable python inverted index. It supports retevial by boolean ANDs 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


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 hashes)

Uploaded Source

Built Distribution

inverted_index-0.1.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page