views:

139

answers:

1

Can you recommend some good python library to get thesaurus and taxonomy of a give word?

Synonym:

>>> print get_synonym('image')
['picture', 'photo']

Taxonomy:

>>> print get_taxonomy('baseball')
['sports']
+3  A: 

pywordnet, now part of NLTK

Ignacio Vazquez-Abrams
thanks for your recommendation. pywordnet works great. just one extra question, is there any good library to get pluralize words in python?
jack
I do not know .
Ignacio Vazquez-Abrams