I have a 5 line simple program to translate a language to English via OCR Textblob. But for some reason, it throws 404 error!!!
from textblob import TextBlob
text = u"おはようございます。"
tb = TextBlob(text)
translated = tb.translate(to="en")
print(translated)
The Textblob is installed and the version is 0.15.3
$ pip install -U textblob
$ python -m textblob.download_corpora
Thank you