Skip to main content

The last dictionary framework you need. (?)

Project description

issues travis coveralls

license

Join the chat at https://gitter.im/zdict/zdict


Note: This project is working in progress.

zdict is a CLI dictionary framework mainly focus on any kind of online dictionary. This project originally forked from https://github.com/chenpc/ydict, which is a CLI tool for the Yahoo! online dictionary. After heavily refactoring the original project including:

  1. Change from Python 2 to Python 3

  2. Focus on being a flexible framework for any kind online dicitionaries, not only just a CLI tool for querying Yahoo! online dictionary.

  3. Based on an open source project skeleton.

So, we decided to create a new project.



Installation

from PyPI :

pip install zdict

from GitHub :

pip install git+https://github.com/zdict/zdict.git

from Docker Hub :

# Pull the image of latest commit of master branch from Docker Hub
docker pull zdict/zdict

# Pull the image of latest release from Docker Hub
docker pull zdict/zdict:release

# Pull the image of specific release version from Docker Hub
docker pull zdict/zdict:${version}
docker pull zdict/zdict:v0.10.0

How to run the zdict docker image

# Run interactive mode
docker run -it --rm zdict/zdict         # latest commit
docker run -it --rm zdict/zdict:release # latest release
docker run -it --rm zdict/zdict:v0.10.0 # use zdict v0.10.0
docker run -it --rm zdict/zdict:$tag    # with specific tag

# Run normal mode
docker run -it --rm zdict/zdict apple bird         # latest commit
docker run -it --rm zdict/zdict:release apple bird # latest release
docker run -it --rm zdict/zdict:v0.10.0 apple bird # use zdict v0.10.0
docker run -it --rm zdict/zdict:$tag apple bird    # with specific tag

# You can also add the options while using docker run either interactive mode or normal mode
docker run -it --rm zdict/zdict:v0.10.0 -dt moe    # use moe dict in interactive mode
docker run -it --rm zdict/zdict:v0.10.0 -dt moe  # use moe dict in normal mode

Usage

usage: zdict [-h] [-v] [-d] [-t QUERY_TIMEOUT] [-j [JOBS]] [-sp] [-su]
             [-dt moe,moe-taiwanese,yahoo,jisho,spanish,yandex,urban,all]
             [-ld] [-V] [-c] [--dump [PATTERN]] [-D]
             [word [word ...]]

positional arguments:
  word                  Words for searching its translation

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         show program's version number and exit
  -d, --disable-db-cache
                        Temporarily not using the result from db cache. (still
                        save the result into db)
  -t QUERY_TIMEOUT, --query-timeout QUERY_TIMEOUT
                        Set timeout for every query. default is 5 seconds.
  -j [JOBS], --jobs [JOBS]
                        Allow N jobs at once. Do not pass any argument to use
                        the number of CPUs in the system.
  -sp, --show-provider  Show the dictionary provider of the queried word
  -su, --show-url       Show the url of the queried word
  -dt moe,moe-taiwanese,yahoo,jisho,spanish,yandex,urban,all, --dict moe,moe-taiwanese,yahoo,jisho,spanish,yandex,urban,all
                        Must be seperated by comma and no spaces after each
                        comma. Choose the dictionary you want. (default:
                        yahoo) Use 'all' for qureying all dictionaries. If
                        'all' or more than 1 dictionaries been chosen, --show-
                        provider will be set to True in order to provide more
                        understandable output.
  -ld, --list-dicts     Show currently supported dictionaries.
  -V, --verbose         Show more information for the queried word. (If the
                        chosen dictionary have implemented verbose related
                        functions)
  -c, --force-color     Force color printing (zdict automatically disable
                        color printing when output is not a tty, use this
                        option to force color printing)
  --dump [PATTERN]      Dump the querying history, can be filtered with regex
  -D, --debug           Print raw html prettified by BeautifulSoup for
                        debugging.

Screenshots

Yahoo Dictionary

  • Normal Mode

zdict hello

http://i.imgur.com/iFTysUz.png
  • Interactive Mode

zdict

http://i.imgur.com/NtbWXKH.png

Moe Dictionary 萌典

http://i.imgur.com/FZD4HBS.png http://i.imgur.com/tF2S98h.png

Urban Dictionary

http://i.imgur.com/KndSJqz.png http://i.imgur.com/nh62wi1.png

SpanishDict

http://i.imgur.com/Ld2QVvP.png http://i.imgur.com/HJ9h5JO.png

Jisho Japanese Dictionary

http://i.imgur.com/63n3qmH.png http://i.imgur.com/UMP8k4e.png

Yandex Translate

https://user-images.githubusercontent.com/2716047/29741879-ca1a3826-8a3a-11e7-9701-4a7e9a15971a.png

Oxford Dictionary

http://i.imgur.com/VkPEfKh.png

To use this source, you should first apply an API key and place it under ~/.zdict/oxford.key in the format:

app_id, app_key

Development & Contributing

Testing

During development, you can install our project as editable. If you use virtualenv, you may want to create a new enviroment for zdict:

$ git clone https://github.com/zdict/zdict.git
$ cd zdict
$ pip install -e .

Once you installed it with the command above, just execute zdict after modification. Don’t need to install it again.

We use py.test:

$ pip install pytest pytest-cov coverage
$ python setup.py test

or:

$ py.test

After runing testing, we will get a coverage report in html. We can browse around it:

$ cd htmlcov
$ python -m http.server

Also, there is some configs for py.test in setup.cfg. Change it if you need.

Debugging

py.test can prompt pdb shell when your test case failed:

$ python setup.py test -a "--pdb"

or:

$ py.test --pdb

Bug Report

Feel free to send a bug report to https://github.com/zdict/zdict/issues. Please attach the error message and describe how to reproduce the bug. PR is also welcome.

Please use the -d/--disable-db-cache option to query before sending the bug report. Sometimes we modify the data schema in database for a dictionary, but the default dictionary query of zdict uses the cache in the database which may be stored within an old schema. This might cause an error while showing the result. Just use the -d/--disable-db-cache to update the cache in database.

Stargazers over time

stargazers

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zdict-1.0.0.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

zdict-1.0.0-py34+-none-any.whl (50.9 kB view details)

Uploaded Python 3.4+

File details

Details for the file zdict-1.0.0.tar.gz.

File metadata

  • Download URL: zdict-1.0.0.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.4.6

File hashes

Hashes for zdict-1.0.0.tar.gz
Algorithm Hash digest
SHA256 bd40010a2ae65d30e19f88ba792866bae4c0a873b55ac5975c548924e999f71b
MD5 70f5c0af8a014b925fc091fd1fcacf9e
BLAKE2b-256 a3e11f66785ef9c3cae6b7062c17b82d04354b686be2ab29a6d13f590aa21e64

See more details on using hashes here.

File details

Details for the file zdict-1.0.0-py34+-none-any.whl.

File metadata

  • Download URL: zdict-1.0.0-py34+-none-any.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: Python 3.4+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.4.6

File hashes

Hashes for zdict-1.0.0-py34+-none-any.whl
Algorithm Hash digest
SHA256 2ad9f64efb86f1d195dba0ef1fb297e792e9611aea32c041f1e87e7e9c210491
MD5 483ac53f15cca0d931cbee4db0d5862c
BLAKE2b-256 a01edd0335d799bcac33509d146ced8ea2d202c790b0e616f27360efa19d94b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page