程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python-谷歌翻譯-Html-獲取結果

編輯:Python

文章目錄

    • 1.安裝翻譯庫
    • 2.讀取文件數據
    • 3.操作步驟
    • 4.作者答疑

1.安裝翻譯庫

切換到python.exe所在目錄。

python -m pip install googletrans==4.0.0-rc1 -i https://mirrors.aliyun.com/pypi/simple/

2.讀取文件數據

參閱博文https://plugin.blog.csdn.net/article/details/124514912

3.操作步驟

將Html拷貝入txt文檔,Python讀取數據,調用谷歌翻譯引擎,最後保存到文件。注意字符串長度不能超過5000字。

from googletrans import Translator
# 設置Google翻譯服務地址
translator = Translator(service_urls=[
'translate.google.cn'
])
def ReadFile(filename):
ff=None;
with open(filename, 'r') as f:
ff = f.read();
return ff;
def WriteFile(filename,data):
# 打開一個文件
fo = open(filename, "w");
fo.write(data);
# 關閉打開的文件
fo.close();
htmlStr=ReadFile(r"C:\Users\ajz\Desktop\html.txt");
translation = translator.translate(htmlStr, dest='zh-CN');
print(translation.text);
WriteFile(r"C:\Users\ajz\Desktop\htmlrlt.txt",translation.text);

4.作者答疑

如有疑問,敬請留言。


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved