Coverage for src/pysumo/wordnet : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
""" The interface to WordNet.
This module contains:
- WordNet: An interface to the WordNet online English lexical database.
"""
""" An interface to locate and search for items in WordNet. Searches WordNet for information about terms in the Ontology, to find colloquial variations of term names and to find terms that are synonyms of a word.
Methods:
- locate_term: Locates a term in WordNet. - find_synonym: Finds possibly synonyms for a word.
"""
""" Use the mapping from SUMO to WordNet to retrieve information about a term.
Kwargs:
- term: the term to locate
Returns:
- (name : String, type : SSType, gloss : String)[]
"""
""" Searches WordNet for possible synonyms for word.
Returns:
- String[]
""" |