A simple stemmer based on Porter stemmer for polish langage. This file is a modification of pl_stemmer library.
ℹ️ NOTE: Changes between simple_stemmer and pl_stemmer:
- Support for Python 3
- No file handling only raw text
- Consistent output as an object
- Added text cleaning class
ℹ️ HOW TO USE:
python simple_stemmer.py "To jest przykładowe zdanie w języku polskim"
[('To', 'to'), ('jest', 'jest'), ('przykładowe', 'przykład'), ('zdanie', 'zdan'), ('w', 'w'), ('języku', 'język'), ('polskim', 'polskim')]