geekpradd / PyDictionary

PyDictionary is a Dictionary Module for Python 2/3 to get meanings, translations, synonyms and antonyms of words
https://pypi.python.org/pypi/PyDictionary
MIT License
274 stars 65 forks source link

PyDictionary library is Dead !!!! #28

Closed nikkkkhil closed 4 years ago

nikkkkhil commented 4 years ago

RIP

nikkkkhil commented 4 years ago

PyDictionary is not working anymore and not supported alternatively, you can use nltk wordnet which is better than PyDictionary. Getting started with wordnet

import nltk
nlkt.download()

then install wordnet and you're ready to go example:

from nltk.corpus import wordnet 
syns = wordnet.synsets("pup")
print(syns[0].definition())

output: young of any of various canines such as a dog or wolf

follow this tutorial for more functions https://pythonprogramming.net/wordnet-nltk-tutorial/

scott31878 commented 4 years ago

It looks like the release does not make the requests via a secured connection and does not follow the redirect.

forgetso commented 4 years ago

Wordnet is useless for antonyms and synonyms.

geekpradd commented 4 years ago

@above, I am sorry for not being able to update the plugin. School had taken up my time. I will be bringing the module back to a working state by the end of this month. Thanks.