Metadata-Version: 2.1
Name: youdao-dict
Version: 1.0.3
Summary: Query Youdao Dictionary in Command Line
Home-page: https://github.com/WangXin93/youdao_dict
Author: Xin Wang
Author-email: wangxin19930411@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.19.1)
Requires-Dist: lxml (>=4.1.0)
Requires-Dist: python-vlc (>=3.0.101)
Requires-Dist: pyttsx3 (>=2.9.0)


# 有道词典命令行查询工具


## Install

```
$ pip install youdao-dict
```

## Usages


```bash
$ youdao hello
                       _                       _ _      _
 _   _  ___  _   _  __| | __ _  ___         __| (_) ___| |_
| | | |/ _ \| | | |/ _` |/ _` |/ _ \ _____ / _` | |/ __| __|
| |_| | (_) | |_| | (_| | (_| | (_) |_____| (_| | | (__| |_
 \__, |\___/ \__,_|\__,_|\__,_|\___/       \__,_|_|\___|\__|
 |___/

=================================================
hello
=================================================
有道翻译：
int. 喂；哈罗
n. 表示问候， 惊奇或唤起注意时的用语
n. (Hello)人名；(法)埃洛
网络释义：
你好
您好
哈啰
喂
=================================================
$ youdao hello world
$ youdao --shell
```

具体参数:

```
usage: youdao [-h] [--shell] [words [words ...]]

Youdao Dictionary in Command Line

optional arguments:
  -h, --help   show this help message and exit

Interactive Shell:
  --shell, -s

Pass Words as Arguments:
  words
```

## DevLog

* 2020-11-10 19:45:37 +0800: 添加不同后端(say, vlc, pyttsx3)的英文发音功能
* 2020-11-10 16:01:17 +0800: 根据Edit Distance和Probability添加了拼写相似词推荐([参考](http://www.norvig.com/spell-correct.html))


