我正在使用Google Translation API翻译python中的单个单词。有时自动检测是不准确的。现在API似乎没有参数来指定源语言。
我在github上看过一些项目,其中函数将source作为参数,但这些方法都是旧的并且使用了url。
我该如何解决这个问题?
答案 0 :(得分:2)
您可以按如下方式提供源语言:
from google.cloud import translate
translate_client = translate.Client()
result = translate_client.translate(
text, source_language='en', target_language=target)