Skip to content

louisun/iSearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iSearch

iSearch是一款命令行 单词查询单词管理 工具, 内容来自网易有道词典

  • v1.0.0 兼容 Python2、Python3
  • v1.0.2 优化查询流程:查询后会自动提示是否存入本地

安装与设置

pip install iSearch

常见问题:

默认命令是s,若被其他程序使用,可将iSearch目录下相应文件alias为其他名字。

如果找不到s 命令,请看以下内容,否则跳过:

Linux 下默认 pip 可能将包安装到~/.local/lib/python3.6 下,s 可执行文件会放在~/.local/bin 下。

如果没将~/.local/bin 放入PATH, 可能会导致找不到命令。

提示找不到s命令的可在的~/.bashrc~/.zshrc中加入这行:

export PATH="$PATH:$HOME/.local/bin"

如果你嫌最新版每次提示保存烦,毕竟不是每个单词都想记下来,可重新安装 1.0.0 版本,用下面的命令

pip install iSearch==1.0.0

如果你嫌每次滚动很多屏,要翻上去才能看麻烦,也可选择安装1.0.0版,并且配合less 命令翻滚查看

可选择将下面的函数放在.bashrc.zshrc中(不适用于最新版,适用于1.0.0版)

function s(){
    local spath="你的 s 命令路径" # 可用 which s 查看, 比如 ~/.local/bin/s
    if [[ ${1:0:1} != '-' ]]
    then
        $spath $* | less 
    else
        $spath $*
    fi
}

简介

内容包括【柯林斯词典】、【词组】、【同近义词】、【词语辨析】、【其他例句】,每个单词不一定都有以上各项内容。

其他功能有:

  • 在本地 sqlite 数据库中添加单词、删除单词
  • 对数据库中的单词设置优先级
  • 按照首字母优先级范围添加时间列出单词
  • 从文本文件中批量添加单词到数据库
  • 颜色高亮(也可关闭,方便导出到文本文件)
  • 可以是词组和中文
  • 从数据库查询时,可以只输入单词的首部。
  • 查看每个字母、优先级的单词数目。

注: 普通查询,会先在本地数据库查找,若数据库中没有才从网页查找。

初次使用,请先查一个单词,比如s hello,以创建目录和数据库。

数据库文件等在~/.iSearch目录下。

使用方法

usage: s [-h] [-f FILE] [-a ADD [ADD ...]] [-d DELETE [DELETE ...]] [-s SET] [-v] [-o] [-p PRIORITY] [-t TIME] [-l LETTER] [-c COUNT] [word [word ...]]

参数说明:

无额外参数 直接查词

-f --file 从文本文件添加单词列表到数据库

-a --add 添加单词

-d --delete 删除单词

-p --priority 根据优先级列出单词

-t --time 列出最近加入的n个单词

-s --set 设置单词的优先级

-v --verbose 查看详细信息

-o -output 输出模式

-ca --card 显示单词名和基本信息

直接查询

s sun
sun 不在数据库中,从有道词典查询
sun /sʌn/

N-SING The sun is the ball of fire in the sky that the Earth goes around, and that gives us heat and light. 太阳 

例: The sun was now high in the southern sky. 太阳当时正高挂在南面天空上。 

例: The sun came out, briefly. 太阳出来了,时间很短。 

2. N-UNCOUNT You refer to the light and heat that reach us from the sun as the sun . 阳光 

例: Dena took them into the courtyard to sit in the sun. 德娜把他们带到院子里坐在阳光下。

【词组】

in the sun 在阳光下,无忧无虑

under the sun 天下;究竟

with the sun 朝着太阳转动的方向,顺时针方向

sun yat-sen n. 孙逸仙

see the sun 活着;出生;发现太阳的耀眼

setting sun 落日;斜阳

morning sun 朝阳

...

【同近义词】

n. [天]太阳

sonne

vi. [天]晒太阳

bask

从文本文件添加单词到数据库

s -f [文件绝对路径]


下面输入default默认为配置目录下的word_list.txt文件

s -f default 

逐个添加单词到数据库 (默认优先级为 1)

s -a sun

sun has been inserted into database

从数据库中删除

s -d [单词]

sun has been deleted from database

设置优先级 (1 到 5)

s -s 3 sun

the priority of sun has been reset to 3

根据优先级(1 到 5)列出单词

# 非verbose模式, 只输出优先级和单词
# -v --verbose 模式, 输出详细意思 

# 非output模式, 命令行多色
# -o --output 模式, 非多色输出, 可以重定向到文件

# 列出优先级为1的单词
s -p 1

# 列出优先级大于2的单词
s -p 2+

# 列出优先级为2-3的单词
s -p 2-3

列出最近添加的 n 个单词 (time)

# 非verbose模式, 只输出优先级和单词
# -v --verbose 模式, 输出详细意思

# 非output模式, 命令行多色
# -o --output 模式, 非多色输出, 可以重定向到文件

s -t 10

列出以 a-z 开头的所有单词

# 非verbose模式, 只输出优先级和单词
# -v --verbose 模式, 输出详细意思

# 非output模式, 命令行多色
# -o --output 模式, 非多色输出, 可以重定向到文件

s -l a

计数

#  列出以 a 字母开头的单词数目
s -c a

#  列出优先级为 3 的单词数目
s -c 3

#  列出优先级大于 3 的单词数目
s -c 3+

#  列出优先级为 2-3 的单词数目
s -c 2-3

#  列出全部单词数目
s -c all

LICENSE

MIT

About

有道词典 命令行查询 柯林斯词典 单词管理 本地保存

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages