为什么我在使用 TextBlob 时会收到 HTTP 错误 404?
Why do I get an HTTP Error 404 when using TextBlob?
我在使用 TextBlob 库时遇到了一些问题。我正在尝试 运行 一段非常简单的代码,如下所示:
from textblob import TextBlob
text = 'this is just a test'
blob = TextBlob(text)
blob.detect_language()
它不断给我这个错误:
/usr/lib/python3.7/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)
647 class HTTPDefaultErrorHandler(BaseHandler):
648 def http_error_default(self, req, fp, code, msg, hdrs):
--> 649 raise HTTPError(req.full_url, code, msg, hdrs, fp)
650
651 class HTTPRedirectHandler(BaseHandler):
HTTPError: HTTP Error 404: Not Found
问题是什么?我在几个设备上试过了,每次都给我同样的错误。
函数 dectect_language()
向 google 翻译服务发送请求:
http://translate.google.com/translate_a/t?client=webapp&dt=bd&dt=ex&dt=ld&dt=md&dt=qca&dt=rw&dt=rm&dt=ss&dt=t&dt=at&ie=UTF-8&oe=UTF-8&otf=2&ssel=0&tsel=0&kc=1&sl=auto&tk=276174.132528
还有这个 url returns 404.
上的文档
Deprecated since version 0.16.0: Use the official Google Translate API instead.
我不会指望这个功能在未来工作。
我在使用 TextBlob 库时遇到了一些问题。我正在尝试 运行 一段非常简单的代码,如下所示:
from textblob import TextBlob
text = 'this is just a test'
blob = TextBlob(text)
blob.detect_language()
它不断给我这个错误:
/usr/lib/python3.7/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)
647 class HTTPDefaultErrorHandler(BaseHandler):
648 def http_error_default(self, req, fp, code, msg, hdrs):
--> 649 raise HTTPError(req.full_url, code, msg, hdrs, fp)
650
651 class HTTPRedirectHandler(BaseHandler):
HTTPError: HTTP Error 404: Not Found
问题是什么?我在几个设备上试过了,每次都给我同样的错误。
函数 dectect_language()
向 google 翻译服务发送请求:
http://translate.google.com/translate_a/t?client=webapp&dt=bd&dt=ex&dt=ld&dt=md&dt=qca&dt=rw&dt=rm&dt=ss&dt=t&dt=at&ie=UTF-8&oe=UTF-8&otf=2&ssel=0&tsel=0&kc=1&sl=auto&tk=276174.132528
还有这个 url returns 404.
Deprecated since version 0.16.0: Use the official Google Translate API instead.
我不会指望这个功能在未来工作。