用google translate大文件

Posted cutepig

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用google translate大文件相关的知识,希望对你有一定的参考价值。

问题:

google translate对于大文件不支持,咋办?

 

思路:自己写个函数把的文件拆成小文件,再用google translate!

 

code:

 

from googletrans import Translator
import sys
translator = Translator()
fname=sys.argv[1]
foname=fname + -cn.txt
cont=open(fname).read()
fdes = open(foname,w)
N=5000
i=0
L=len(cont)
while i<L:
    print (1.0*i/L)
    i2 = min(i+N, L)
    subCont = cont[i:i2]
    s=(translator.translate(subCont, src=en, dest=zh-cn))
    try:
        fdes.write(str(s.text))
    except:
        pass
    i = i+N
fdes.close()
    

 

以上是关于用google translate大文件的主要内容,如果未能解决你的问题,请参考以下文章

使用 Google Translate API 翻译 PDF 文件

css常用代码片段 (更新中)

这可以在android中使用google translate api吗?

解决idea Translation翻译无法使用问题

google translate xss

如何获取 Google Translate API 的文件“service_account.json”?