Metadata-Version: 2.1
Name: neon-solver-wordnet-plugin
Version: 0.0.2a0
Summary: A question solver plugin for ovos/neon/mycroft
Home-page: https://github.com/NeonGeckoCom/neon_solver_wordnet_plugin
Author: Neongecko
Author-email: developers@neon.ai
License: bsd3
Keywords: mycroft plugin utterance fallback query
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: simplematch
Requires-Dist: nltk


Spoken answers api for wordnet


```python
from neon_solver_wordnet_plugin import WordnetSolver

d = WordnetSolver()
sentence = d.spoken_answer("what is the definition of computer")
print(sentence)
# a machine for performing calculations automatically

d = WordnetSolver()
sentence = d.spoken_answer("qual é a definição de computador", lang="pt")
print(sentence)
# uma máquina para realizar cálculos automaticamente
```


