本文主要是介绍python3 终端下英汉词典 BeautifulSoup+网络爬虫,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
看英文文档经常要查不懂的单词,在win下有划词功能的软件,在linux下木有T_T。因为在linux下开启终端非常方便,于是想写一个在终端下查词的小程序,我的查单词只需两步:
1.ctrl+alt+T 打开终端;
2. ./thunderdic.py 输入单词显示中文意思。
如下图所示:
哈哈,我感觉还是非常好用+好玩的~代码如下,主要是BeautifulSoup太给力了:
#!/usr/bin/env python3
from bs4 import BeautifulSoup
import tornado.httpclient
cli=tornado.httpclient.HTTPClient()
link='http://www.iciba.com/'
search=input('search: ')
link+=search
data=cli.fetch(link)
body=data.body.decode('utf8')
soup=BeautifulSoup(body)group=soup.find_all(class_='group_pos')
group2=group[0].find_all('p')
for ele in group2:print(ele.find(class_='fl').get_text())result=ele.find_all('label')for r in result:print(r.get_text())
我只是最近在看tornado,所以爬网页也用tornado.httpclient,其实urllib是一样的,取决于个人喜好。代码很清晰,不多说,希望大家喜欢,考虑再爬点什么东西。。。
转载请注明:转自 http://blog.csdn.net/littlethunder/article/details/8943754
这篇关于python3 终端下英汉词典 BeautifulSoup+网络爬虫的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!