Python (googletrans) - AttributeError: 'NoneType' 对象没有属性'group'



尝试使用googletrans检测Python中的语言代码。但是它产生了错误(参考错误块获取信息)。

要求相同的解决方案

代码:

import googletrans
from googletrans import Translator
translator = Translator()
result = translator.translate('Mitä sinä teet')
print(result.src)
print(result.dest)
print(result.origin)
print(result.text)
print(result.pronunciation)

错误:


C:ProgramDataAnaconda3libsite-packagesgoogletransgtoken.py in _update(self)
60 
61         # this will be the same as python code after stripping out a reserved word 'var'
---> 62         code = self.RE_TKK.search(r.text).group(1).replace('var ', '')
63         # unescape special ascii characters such like a x3d(=)
64         code = code.encode().decode('unicode-escape')
AttributeError: 'NoneType' object has no attribute 'group'

重新安装googletrans后可以正常工作

pip安装googletrans = = 4.0.0-rc1

这是googletrans库的github页面中已知的报告问题。查看修复的状态和可能的解决方案:https://github.com/ssut/py-googletrans/issues.

根据最近的评论,安装一个不同的版本,googletrans==4.0.0-rc1,似乎可以工作,但有警告:

fire17
正常PIP安装失败,但卸载并重新安装
googletrans==4.0.0-rc1
然后工作:)
对象是奇怪的,我可以访问翻译的文本,如

a = translator.translate("hi")
translated_text = a.__dict__()["text"]

相关内容

  • 没有找到相关文章

最新更新