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 | |
u*****r 发帖数: 176 | |
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 | |
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")
|
|
|
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都没听说过吧。
|