Search code examples
pythontaxonomythesaurus

What is a good thesaurus and taxonomy library for Python?


Can you recommend a good Python library to get thesaurus and taxonomy of a given word?

Synonym:

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

Taxonomy:

>>> print get_taxonomy('baseball')
['sports']

Solution

  • pywordnet, now part of NLTK