python學習筆記:"爬蟲+有道詞典"實現一個簡單的英譯漢程式

來源:互聯網
上載者:User

標籤:

1.有道的翻譯

網頁: www.youdao.com

Fig1

Fig2

 

Fig3

Fig4

再次點擊"自動翻譯"->選中‘Network‘->選中‘第一項‘,如下:

Fig5

然後顯示出如下內容,紅框畫出的部分是等會編寫代碼需要的地方:

Fig6

Fig7

再看看翻譯的結果:

Fig8

2.python實現英譯漢:

原理:把需要翻譯的內容輸入給有道詞典,然後通過程式把翻譯的結果爬下來。

 1 # -*- coding:utf-8 -*-   2 """ 3 Created on Sun May 03 09:36:12 2015 4  5 @author: 90Zeng 6 """ 7  8 import urllib 9 import json10 11 # 注意這裡用unicode編碼,否則會顯示亂碼12 content = input(u"請輸入要翻譯的內容:")13 # 網址是Fig6中的 Response URL14 url = ‘http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=http://www.youdao.com/‘15 # 爬下來的資料 data格式是Fig7中的 Form Data16 data = {}17 data[‘type‘] = ‘AUTO‘18 data[‘i‘] = content19 data[‘doctype‘] = ‘json‘20 data[‘xmlVersion‘] = ‘1.6‘21 data[‘keyfrom‘] = ‘fanyi.web‘22 data[‘ue‘] = ‘UTF-8‘23 data[‘typoResult‘] = ‘true‘24 25 # 資料編碼26 data = urllib.urlencode(data)27 28 # 按照data的格式從url爬內容29 response = urllib.urlopen(url, data)30 # 將爬到的內容讀出到變數字串html,31 html = response.read()32 # 將字串轉換成Fig8所示的字典形式33 target = json.loads(html)34 # 根據Fig8的格式,取出最終的翻譯結果35 result = target["translateResult"][0][0][‘tgt‘]36 37 # 這裡用unicode顯示中文,避免亂碼38 print(u"翻譯結果:%s" % (target["translateResult"][0][0][‘tgt‘]))

 

運行:

 

學習資料來源:小甲魚的視頻‘零基礎入門python’

 

python學習筆記:"爬蟲+有道詞典"實現一個簡單的英譯漢程式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.