vocabulary
vocabulary copied to clipboard
vb.meaning('repudiate') returns false
Hello, I got the same issue, example on Python 3.6.4
from vocabulary.vocabulary import Vocabulary as vb vb.synonym("car") False
Any idea ?
Even I am getting this error. I am switching to PyDictionary Library
The same problem is here. I tried the code from example: vb.synonym("car")
And got the same error...
I am experiencing the same behavior.
It seems that the problem is with the API being called which is glosbe.
This thing is dead until we can find a replacement to Glosbe.
Reference: https://github.com/deanishe/alfred-glosbe/issues/4
any idea to slove it ?
Hi @aluckydog0716 , it seems that Glosbe killed the service.
Try accessing:
https://glosbe.com/gapi/
And you'll get 429 Too Many Requests.
vocabulary is dependent on Glosbe, and if Glosbe decides to kill the API, then this library is dead. :(
Maybe you can try https://pypi.org/project/PyDictionary/ instead.
Thanks for your message. it is useful for me .
------------------ 原始邮件 ------------------ 发件人: "Leiurus"<[email protected]>; 发送时间: 2020年3月11日(星期三) 下午3:24 收件人: "tasdikrahman/vocabulary"<[email protected]>; 抄送: "1203078658"<[email protected]>; "Mention"<[email protected]>; 主题: Re: [tasdikrahman/vocabulary] vb.meaning('repudiate') returns false (#70)
Hi @aluckydog0716 , it seems that Glosbe killed the service.
Try accessing:
https://glosbe.com/gapi/
And you'll get 429 Too Many Requests.
vocabulary is dependent on Glosbe, and if Glosbe decides to kill the API, then this library is dead. :(
Maybe you can try https://pypi.org/project/PyDictionary/ instead.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
I can't use this module which you recommend to me (https://pypi.org/project/PyDictionary/).
Can you recommend me something similar more?
------------------ 原始邮件 ------------------ 发件人: "Leiurus"<[email protected]>; 发送时间: 2020年3月11日(星期三) 下午3:24 收件人: "tasdikrahman/vocabulary"<[email protected]>; 抄送: "1203078658"<[email protected]>;"Mention"<[email protected]>; 主题: Re: [tasdikrahman/vocabulary] vb.meaning('repudiate') returns false (#70)
Hi @aluckydog0716 , it seems that Glosbe killed the service.
Try accessing:
https://glosbe.com/gapi/
And you'll get 429 Too Many Requests.
vocabulary is dependent on Glosbe, and if Glosbe decides to kill the API, then this library is dead. :(
Maybe you can try https://pypi.org/project/PyDictionary/ instead.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
@aluckydog0716 I suggest you directly call an API from online dictionaries if your goal is to get the meaning of a word.
https://dictionaryapi.com/products/api-collegiate-dictionary
Thanks for your reply. My goal is to get a synonym of a word. any suggestion for me?
------------------ 原始邮件 ------------------ 发件人: "Leiurus"<[email protected]>; 发送时间: 2020年3月11日(星期三) 晚上7:32 收件人: "tasdikrahman/vocabulary"<[email protected]>; 抄送: "1203078658"<[email protected]>; "Mention"<[email protected]>; 主题: Re: [tasdikrahman/vocabulary] vb.meaning('repudiate') returns false (#70)
@aluckydog0716 I suggest you directly call an API from online dictionaries if your goal is to get a meaning of a word.
https://dictionaryapi.com/products/api-collegiate-dictionary
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
@aluckydog0716 , WordNet under NLTK is what you need.
https://pythonprogramming.net/wordnet-nltk-tutorial/