froogle

Crates.iofroogle
lib.rsfroogle
version0.4.2
sourcesrc
created_at2024-06-15 18:55:15.714867
updated_at2024-06-15 20:07:28.466231
descriptionA local Search Engine
homepage
repositoryhttps://github.com/tripabhi/froogle
max_upload_size
id1273039
size117,051
Abhijit Tripathy (tripabhi)

documentation

README

Froogle

Froogle is a local search engine. It uses TF-IDF as a metric to rank the search results.

Rust crate

Froogle is available on crates.io. If you have the Cargo toolchain setup, you can install froogle using cargo install.

cargo install froogle

Install

Platform-specific binaries for Froogle can be installed from the Releases page.

MacOS

Froogle is available as Homebrew formula. To install Froogle -

brew tap tripabhi/froogle
brew install froogle

From source (any platform)

Froogle is a Rust binary, and therefore can be installed using the Cargo toolchain. You can install Cargo by following instructions here.

Once cargo is installed, you can install Froogle like this.

git clone https://github.com/tripabhi/froogle.git
cd froogle
cargo install --path .

Usage

Use -h to see usage instruction.

References

  • Term Frequency - Inverse Document Frequency Wikipedia
  • Snowball English Stemmers Website
Commit count: 29

cargo fmt