sastrawi 0.1.1

A library for stemming and stopword removal for Bahasa Indonesia based on PHP sastrawi project by Andy Librian
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use dictionary::Dictionary;
pub use stemmer::Stemmer;
pub use stopword::StopWord;
pub use tokenizer::Tokenizer;

mod dictionary;
mod dictionary_default;
mod dictionary_stopword;
mod stemmer;
mod tokenizer;
mod affixation;
mod stopword;