google 翻译函数中的属性错误
Attribute-error in google translator function
我正在尝试使用 google 翻译器创建翻译器功能。到目前为止我的代码非常基础:
from googletrans import Translator
translator = Translator()
result = translator.translate('Mitä sinä teet')
但每次我得到同样的错误:AttributeError: 'NoneType' object has no attribute 'group'
我该如何解决这个问题:提前致谢!
您使用的软件包似乎有问题。
您可以改用包 translators
。
这里有一个如何使用它的例子:
import translators as ts
result = ts.google('Mitä sinä teet', to_language='en')
print(result)
您可以在 this tutorial or in the official documentation 中找到更详细的解释。
我正在尝试使用 google 翻译器创建翻译器功能。到目前为止我的代码非常基础:
from googletrans import Translator
translator = Translator()
result = translator.translate('Mitä sinä teet')
但每次我得到同样的错误:AttributeError: 'NoneType' object has no attribute 'group'
我该如何解决这个问题:提前致谢!
您使用的软件包似乎有问题。
您可以改用包 translators
。
这里有一个如何使用它的例子:
import translators as ts
result = ts.google('Mitä sinä teet', to_language='en')
print(result)
您可以在 this tutorial or in the official documentation 中找到更详细的解释。