#nlp #poetry #haiku #nl

wordsworth

A collection of natural language analysis functions

2 releases

Uses old Rust 2015

0.1.1 Aug 22, 2016
0.1.0 Aug 19, 2016

#9 in #haiku

Download history 13/week @ 2023-12-04 9/week @ 2024-02-19 31/week @ 2024-02-26 9/week @ 2024-03-04 8/week @ 2024-03-11 8/week @ 2024-03-18

57 downloads per month
Used in 3 crates (2 directly)

Apache-2.0

7KB
80 lines

wordsworth

Build Status

A collection of useful natural language functions.

Full documentation can be found here.

Usage

This crate is on crates.io and can be used by adding wordsworth to the dependencies in your project's Cargo.toml.

[dependencies]
wordsworth = "0.1.*"

and this to your crate root:

extern crate wordsworth;

Example

use wordsworth;
assert_eq!(3, syllable_counter("lucozade"));
assert_eq!(false, is_haiku("this is not\nnot\n a haiku"));

lib.rs:

A collection of useful natural language functions.

Usage

This crate is on crates.io and can be used by adding wordsworth to the dependencies in your project's Cargo.toml.

[dependencies]
wordsworth = "0.1.*"

and this to your crate root:

extern crate wordsworth;

Example

use wordsworth;
assert_eq!(3, wordsworth::syllable_counter("lucozade"));
assert_eq!(false, wordsworth::is_haiku("this is not\nnot\n a haiku"));

No runtime deps