由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - 贡献一个在 terminal 查 dict.cn 的 script
相关主题
【我很土】发现htop原来这么好用Ubuntu下python用什么编辑器
问个 python 问题bash script真难看懂
求教vim下面的pythoncomplete配置OpenOffice的pdf import/editing
问问应该学用那个shell?what packages needed to init 5 X11
问两个Linux 的问题INIT_WORK从Linux kernel 2.6.20后改了?
如何把python/scripts加到path里?Intel Mobin 2 秒钟启动到 GUI
scripting language luaproblem: ao pulse init failed connection refused
ipython 使用总结请问Ubuntu下开机自动执行命令的设置?
相关话题的讨论汇总
话题: script话题: terminal话题: dict话题: word话题: 贡献
进入Linux版参与讨论
1 (共1页)
O*****y
发帖数: 222
1
用 python 写的。在网上找到的,自己改了一点。
原来用过一个用到 w3m 的 shell script,速度比这个慢。
用法:
dict word
or
dict group of words (e.g. "dict make of")
O*****y
发帖数: 222
2
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import httplib
from xml.dom import minidom
from textwrap import wrap
class PyDict:
def __init__(self):
self.server = 'dict.cn'
self.port = 80
self.url = '/ws.php'
self.method = 'POST'
self.header = {'Content-Type':'application/x-www-form-urlencoded', '
User-Agent':'PyDict'}
def query(self, word):
word = str(word) # be sure a string
if len(word.strip()) == 0:
print
h****q
发帖数: 78
3
不错,很方便。

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

v*****r
发帖数: 1119
4
这个要顶一下
u*****r
发帖数: 176
5
awesome!
L***n
发帖数: 6727
6
thank you! it's awesome.

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

i*****e
发帖数: 1359
7
很方便啊!感谢
o**n
发帖数: 1249
8
thanks!!

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

l****h
发帖数: 272
9
在debian下能运行,却没有显示任何结果。
请问要安装什么关联的库文件?
谢谢!

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

l****h
发帖数: 272
10
重新排了版,就可以了。
谢谢。

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

相关主题
如何把python/scripts加到path里?Ubuntu下python用什么编辑器
scripting language luabash script真难看懂
ipython 使用总结OpenOffice的pdf import/editing
进入Linux版参与讨论
f*******5
发帖数: 10321
11
能处理一下环境变量http_proxy走proxy么?

【在 O*****y 的大作中提到】
: 用 python 写的。在网上找到的,自己改了一点。
: 原来用过一个用到 w3m 的 shell script,速度比这个慢。
: 用法:
: dict word
: or
: dict group of words (e.g. "dict make of")

v*s
发帖数: 946
12
python code 对格式敏感,的确不方便粘贴。

【在 l****h 的大作中提到】
: 重新排了版,就可以了。
: 谢谢。

a*****i
发帖数: 4391
13
贴到pastebin上不就得了?
不会你们连pastebin都没听说过吧。

【在 v*s 的大作中提到】
: python code 对格式敏感,的确不方便粘贴。
O*****y
发帖数: 222
14
Sorry, 不太懂这方面的东西,我猜应该和 httplib 这个库有关系。

【在 f*******5 的大作中提到】
: 能处理一下环境变量http_proxy走proxy么?
z**r
发帖数: 17771
15
真没有听说过,干嘛用的?

【在 a*****i 的大作中提到】
: 贴到pastebin上不就得了?
: 不会你们连pastebin都没听说过吧。

1 (共1页)
进入Linux版参与讨论
相关主题
请问Ubuntu下开机自动执行命令的设置?问两个Linux 的问题
slackware Linux 启动一问如何把python/scripts加到path里?
第一次用opensuse,很不错scripting language lua
arch收拾好了...ipython 使用总结
【我很土】发现htop原来这么好用Ubuntu下python用什么编辑器
问个 python 问题bash script真难看懂
求教vim下面的pythoncomplete配置OpenOffice的pdf import/editing
问问应该学用那个shell?what packages needed to init 5 X11
相关话题的讨论汇总
话题: script话题: terminal话题: dict话题: word话题: 贡献