Metadata-Version: 2.3
Name: ngram-trie
Version: 1.1.3
Summary: A Rust-based n-gram trie library for Python
Author: Botond Lovász
Author-email: botilovasz@gmail.com
Maintainer-email: Botond Lovász <botilovasz@gmail.com>
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/behappiness/ngram-trie

# ngram-trie

`ngram-trie` is a Rust library designed to efficiently handle n-gram data structures using a trie-based approach. It provides functionalities for fitting, saving, loading, and querying n-gram models, with support for various smoothing techniques.

## Installation Rust

1. Include it in the Cargo.toml:

    ```toml
    [dependencies]
    ngram-trie = { git = "https://github.com/behappiness/ngram-trie" }
    ```

## Installation Python

1. Install from pip:

    ```bash
    pip install ngram-trie
    ```

