Skip to content

aterkik/stemmer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stemmer

Martin Porter's stemming algorithm implemented in pure Python

Usage

>>> from stemmer import Stemmer
>>> s = Stemmer()
>>> s.stem('logically')
'logic'
>>> s.stem('doing')
'do'
>>> s.stem('acceptable')
'accept'
>>> s.stemmed # returns the last stemmed word
'accept'

License

The software is licensed under the MIT license.

About

Implementation of Martin Porter's stemmer

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages