mdirolf / pyporter2
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Sep 22 19:55:28 -0700 2008 | |
| |
README | Mon Oct 06 20:20:08 -0700 2008 | |
| |
Stemmer.py | Mon Oct 06 20:20:08 -0700 2008 | |
| |
stemmedvoc.txt | Mon Sep 22 19:55:28 -0700 2008 | |
| |
voc.txt | Mon Sep 22 19:55:28 -0700 2008 |
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
