Sastrawi is a Python library for stemming Indonesian text (Bahasa). It provides algorithms to reduce inflected words to their base form. Current version is 1.0.1, released in 2019. The project is in maintenance mode with infrequent updates.
pip install sastrawiNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: create a stemmer instance and stem a sentence.
Evaluate other Indonesian NLP libraries such as IndoBERT or PySastrawi (if maintained).
Use 'from Sastrawi.Stemmer.StemmerFactory import StemmerFactory'.
StemmerFactory() then .create_stemmer().
Install with 'pip install sastrawi' and import with 'from Sastrawi...' (capital S).
Use 'from Sastrawi.Stemmer.StemmerFactory import StemmerFactory'.
Create an instance: 'factory = StemmerFactory()' then 'stemmer = factory.create_stemmer()'.
No dependency data recorded yet.