代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
查单词的脚本
作者:
fsh267
/ 发布于
2013/6/17
/
1011
#!/usr/bin/python # coding:utf-8 # Word_Searching Script # Author: fish # Email: fsh267@gmail.com # http://www.love67.net # usage1: 'python **.py word' to find the word's explination or # usage2: 'python **.py word -detail' to list the phrase of the word from bs4 import BeautifulSoup import sys import urllib2 # 判断用户输入的是英文还是中文 # decode 是将其他字符编码转换成unicode # 中文的unicode字符区是 'u4e00' 到 '\u9fa5' def is_Chinese(uchar): uchar = uchar.decode('utf8') return uchar >= u'\u4e00' and uchar <= u'\u9fa5' # 格式输入错误的提示 def input_error(): print "usage1: 'python **.py word' or " print "usage2: 'python **.py word -detail (For English Only)" def main(): length = len(sys.argv) # 读入命令行 if length < 2: input_error() sys.exit() else: word = sys.argv[1] # url是有道翻译的对应网页 url = 'http://dict.youdao.com/search?le=en&q=%s&keyfrom=dict.index' % word # urlopen函数调用 # print url data = urllib2.urlopen(url).read() # print data # 将data网页源代码放到soup中,便于匹配 soup = BeautifulSoup(data) # soup.find() 可以放入标签和class名称 word_div = soup.find('div', 'trans-container') if not word_div: print 'word does not exists' sys.exit() # word_div存了一个标签,每个单词意思,存在每个<li>**</li>中,格式化输出,不带'<li></li>' if is_Chinese(word): for word_explination in word_div.find_all('a', 'search-js'): print word_explination.string else: for word_explination in word_div.find_all('li'): print str(word_explination)[4: -5] # 第二种输入,还得显示出单词组成的短语 # BeautifulSoup提供的find函数可以查找'p', 'a','span'等html标志语言模块 if length == 3: if sys.argv[2] != '-detail': input_error() else: raw_explination = '' span = soup.find_all('p', 'wordGroup') # 最后一组词组有问题,删去了 for element in span[: -1]: link = element.find('a') # 转化成字符串,用于定位到解释那里 raw_explination += str(element) location = raw_explination.find('</span>') # 格式化单词解释,</span>长度为7, 长度为4, 只采用第一个意思 explination = raw_explination[location + 7: -4].split()[0] # python 自带的输出对齐, ljust(num), rjust(num) print link.string.ljust(25), explination raw_explination = '' if __name__ == '__main__': main()
试试其它关键字
查单词
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
fsh267
贡献的其它代码
(
1
)
.
查单词的脚本
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3