Python API for Dicio.com.br
$ pip install Dicio
from dicio import Dicio
# Create a Dicio object
dicio = Dicio()
# Search for "Doce" and return an object Word
word = dicio.search("Doce")
# Print the word, the url and the meaning
print(word, word.url, word.meaning)
# Print a list of synonyms
print(word.synonyms)
# Print a list of examples
print(word.examples)
# Print extra informations
for chave, valor in word.extra.items():
print(chave, "=>", valor)
# Load information about the first synonym
# Print the word, the URL and the meaning of the first synonym
word.synonyms[0].load()
print(word.synonyms[0], word.synonyms[0].url, word.synonyms[0].meaning)
- word - the word itself
- url - Dicio.com.br URL for the word
- meaning - the meaning
- etymology - the etymology
- synonyms - list of synonyms
- examples - list of examples
- extra - dictionary of extra information (keys in portuguese)
- load - load information from Dicio.com.br
If you want to add new features or improve something, send a pull request!