📜  英语德语翻译 (1)

📅  最后修改于: 2023-12-03 15:41:26.110000             🧑  作者: Mango

英语德语翻译

本项目旨在将英语翻译成德语。它使用Python编写,可作为API提供给其他开发人员使用。

使用方法
安装

在命令行中输入以下命令以安装所需的Python库:

pip install googletrans==4.0.0-rc1
示例
from googletrans import Translator

translator = Translator()

translation = translator.translate('Hello, how are you?', dest='de')

print(translation.text)

这将返回:

Hallo wie geht es dir?
注意事项

请注意,使用Google Translate API可能需要购买订阅,可在Google Cloud平台上找到。

可用参数
  • text:要翻译的文本字符串
  • dest:目标语言,缺省情况下为德语
贡献者
许可证

本项目使用MIT许可证发行。