1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > python 翻译_python抓取百度词典的翻译结果翻译单词

python 翻译_python抓取百度词典的翻译结果翻译单词

时间:2024-02-21 22:28:25

相关推荐

python 翻译_python抓取百度词典的翻译结果翻译单词

这段代码通过抓取百度词典的翻译结果达到翻译单词的目的

这个小工具使用Python语言编写完成,其中使用到这 些类库(urllib,BeautifulSoup ),前者主要负责网络通讯方面,后者负责HTML的解析。这也是Python语言生态圈的强大之处,写个这样的小工具,毫不费力。

在线翻译的原理:首先根据用户输入的单词提交给百度词典 ,其次读取百度词典返回的数据并解析,最后将处理过的数据显示给用户。以下是该工具的具体代码(Translate.py)

import urllib

import codecs

from BeautifulSoup import BeautifulSoup

from sys import argv

import re,time

class Translate:

def Start(self):

self._get_html_sourse()

self._get_content("enc")

self._remove_tag()

self.print_result()

def _get_html_sourse(self):

word=argv[1] if len(argv)>1 else ''

url="/s?wd=%s&tn=dict" % word

self.htmlsourse=unicode(urllib.urlopen(url).read(),"gb2312","ignore").encode("utf-8","ignore")

def _get_content(self,div_id):

soup=BeautifulSoup("".join(self.htmlsourse))

self.data=str(soup.find("div",{"id":div_id}))

def _remove_tag(self):

soup=BeautifulSoup(self.data)

self.outtext=''.join([element for element in soup.recursiveChildGenerator() if isinstance(element,unicode)])

def print_result(self):

for item in range(1,10):

self.outtext=self.outtext.replace(str(item),"\n%s" % str(item))

self.outtext=self.outtext.replace(" ","\n")

print self.outtext

#from

if __name__=="__main__":

Translate().Start()

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@

特别注意:本站所有转载文章言论不代表本站观点!

本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。