public
Description: A python implementation of the porter2 stemmer: http://snowball.tartarus.org/algorithms/english/stemmer.html
Homepage: http://www.dirolf.com/project/pyporter2
Clone URL: git://github.com/mdirolf/pyporter2.git
name age message
file .gitignore Mon Sep 22 19:55:28 -0700 2008 initial commit [mdirolf]
file README Mon Oct 06 20:20:08 -0700 2008 started work towards v1.0.0 => implementing the... [mdirolf]
file Stemmer.py Mon Oct 06 20:20:08 -0700 2008 started work towards v1.0.0 => implementing the... [mdirolf]
file stemmedvoc.txt Mon Sep 22 19:55:28 -0700 2008 initial commit [mdirolf]
file voc.txt Mon Sep 22 19:55:28 -0700 2008 initial commit [mdirolf]
README
pyporter2: A python implementation of the Porter2 stemmer.

See http://snowball.tartarus.org/algorithms/english/stemmer.html

USAGE
-----
>>> import Stemmer
>>> stemmer = Stemmer.Stemmer('english')
>>> stemmer.stemWord('stemming')
'stem'

UNIT TESTS
----------
To run the unit tests do:
> python Stemmer.py