马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
鱼哥在零基础入门学习python的第54讲爬虫视频上讲了如何做一个在线翻译的爬虫,我觉得挺有意思的,现学现卖,用easygui做了个界面。额,也没啥创新性,诸位看官要是觉得还可以,轻喷import easygui as g
import urllib.parse
import json
import urllib.request
title='在线翻译软件'
msg='请输入想要翻译的内容'
while 1:
#把要输入的内容返回给content
content=g.enterbox(msg,title)
url='http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=https://www.baidu.com/link'
data={}
data['type']='AUTO'
data['i']=content
data['doctype']='json'
data['xmlVersion']='1.8'
data['keyfrom']='fanyi.web'
data['ue']='UTF-8'
data['action']='FY_BY_CLICKBUTTON'
data['typoResult']='true'
data=urllib.parse.urlencode(data).encode('utf-8')
response=urllib.request.urlopen(url,data)
html=response.read().decode('utf-8')
target=json.loads(html)
g.msgbox(target['translateResult'][0][0]['tgt'],'翻译结果')
if not g.enterbox():
break
|