gpt4 book ai didi

python - 谷歌翻译 API Python

转载 作者:太空宇宙 更新时间:2023-11-03 15:19:04 25 4
gpt4 key购买 nike

我在使用 Google Translate API 时遇到一些问题。

示例;

翻译本文标题时:

http://vtimes.com.au/dua-xe-f1-thu-ngua-chien-bat-them-benh-2622229.html

(Đua xe F1: Thử "ngựa chiến"bắt thêm bệnh)

引号返回为 "

当使用translate.google.com时,它显然会按照您想要的方式返回。

我是否缺少一些编码或其他东西(?)啊!帮助:D

代码片段:

service = build('translate', 'v2',
developerKey=self.config['google-api']['dev-key'])
try:
title = (service.translations().list(
source=source,
target='en',
q=text
).execute())['translations'][0]['translatedText']
except (KeyError, IndexError):
return text
return title

最佳答案

对此有一个简单的解决方案。 html 包挽救了局面。

import html

service = ...
...
...

return html.unescape(title)

关于python - 谷歌翻译 API Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43661181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com