#pronunciation #word #sentence #explain #sample

noeme

Deeply explain a given word, including its pronunciation, meanings, and sample sentences

3 releases

Uses new Rust 2024

0.1.6 Sep 25, 2025
0.1.5 Sep 19, 2025
0.1.4 Sep 15, 2025

#6 in #pronunciation

Download history 4/week @ 2025-10-13 1/week @ 2025-10-20

123 downloads per month

MIT license

18KB
263 lines

cargo add noeme
use anyhow::Result;
use noeme::{Noeme,Jsonify}

#[tokio::main]
async fn main() -> Result<()> {
    //define a valid word
    let word = "exactly";

    //this will get the instance
    let noeme = Noeme::from(word).await?;

    //serialize the whole instance to json
    let result = noeme.to_json()?;

    //or just serialize the pronunciation field to json
    let pronunciation = noeme.pronunciation.to_json()?;

    //or just serialize the basic_meanings field to json
    let basic_meanings = noeme.basic_meanings.to_json()?;

    //or just serialize the advanced_meanings field to json
    let advanced_meanings = noeme.advanced_meanings.to_json()?;

    //or just serialize the sentences field to json
    let sentences = noeme.sentences.to_json()?;
}

Dependencies

~11–28MB
~372K SLoC