我可以使用哪种API在Python中翻译文本?
我不想使用Google或Bing。还有其他什么吗?
谷歌一直说“日限超标”,Bing翻译前3-4个问题,然后我发现“无法找到与请求凭据关联的有效Azure市场转换订阅”
答案 0 :(得分:0)
如果你想检查一下,我就制作了这个脚本:https://github.com/mouuff/Google-Translate-API:)
非常容易使用:
to_translate = 'Hola como estas?'
print("%s >> %s" % (to_translate, translate(to_translate)))
print("%s >> %s" % (to_translate, translate(to_translate, 'fr')))
应该打印Hola como estas>>你好,你好吗
和Hola como estas? >> Bonjour评论allez-vous?