Metadata-Version: 2.3
Name: ngram-trie
Version: 1.0.0
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

1. Clone the required repositories:

    ```bash
    git clone https://github.com/behappiness/ngram-trie
    ```

2. Install `maturin`:

    ```bash
    pip install maturin
    ```

3. Build the module:

    ```bash
    maturin build
    ```


