{
"info": {
"author": "Shun-Yi Jheng, Iblis Lin, Chang-Yen Chih, Chiu-Hsiang Hsu",
"author_email": "M157q.tw@gmail.com,e196819@hotmail.com,michael66230@gmail.com,wdv4758h@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities"
],
"description": "========================================\nzdict\n========================================\n\n|license| |version| |python version| |month download|\n\n|stars| |forks| |contributors| |pull requests| |issues|\n\n|travis| |circleci| |coveralls|\n\n|gitter|\n\n----\n\nzdict is a CLI dictionary framework mainly focus on any kind of online dictionary.\nThis project originally forked from https://github.com/chenpc/ydict, which is a CLI tool for the Yahoo! online dictionary.\nAfter heavily refactoring the original project including:\n\n1. Change from Python 2 to Python 3\n2. Focus on being a flexible framework for any kind online dicitionaries, not only just a CLI tool for querying Yahoo! online dictionary.\n3. Based on an open source project skeleton.\n\nSo, we decided to create a new project.\n\n\n----\n\n.. contents:: Table of Contents\n\n----\n\n\nInstallation\n------------------------------\n\nfrom `PyPI `_ :\n\n.. code-block:: sh\n\n pip install zdict\n\n\nfrom `GitHub `_ :\n\n.. code-block:: sh\n\n pip install git+https://github.com/zdict/zdict.git\n\n\nfrom `Docker Hub `_ :\n\n.. code-block:: sh\n\n # Pull the image of latest commit of master branch from Docker Hub\n docker pull zdict/zdict\n\n # Pull the image of latest release from Docker Hub\n docker pull zdict/zdict:release\n\n # Pull the image of specific release version from Docker Hub\n docker pull zdict/zdict:${version}\n docker pull zdict/zdict:v0.10.0\n\n\nHow to run the zdict docker image\n\n.. code-block:: sh\n\n # Run interactive mode\n docker run -it --rm zdict/zdict # latest commit\n docker run -it --rm zdict/zdict:release # latest release\n docker run -it --rm zdict/zdict:v0.10.0 # use zdict v0.10.0\n docker run -it --rm zdict/zdict:$tag # with specific tag\n\n # Run normal mode\n docker run -it --rm zdict/zdict apple bird # latest commit\n docker run -it --rm zdict/zdict:release apple bird # latest release\n docker run -it --rm zdict/zdict:v0.10.0 apple bird # use zdict v0.10.0\n docker run -it --rm zdict/zdict:$tag apple bird # with specific tag\n\n # You can also add the options while using docker run either interactive mode or normal mode\n docker run -it --rm zdict/zdict:v0.10.0 -dt moe # use moe dict in interactive mode\n docker run -it --rm zdict/zdict:v0.10.0 -dt moe \u54c8 # use moe dict in normal mode\n\nUsage\n------------------------------\n\n::\n\n usage: zdict [-h] [-v] [-d] [-t QUERY_TIMEOUT] [-j [JOBS]] [-sp] [-su]\n [-dt itaigi,moe,moe-taiwanese,spanish,oxford,jisho,yahoo,wiktionary,urban,yandex,all]\n [-ld] [-V] [-c] [--dump [PATTERN]] [-D]\n [word [word ...]]\n\n positional arguments:\n word Words for searching its translation\n\n optional arguments:\n -h, --help show this help message and exit\n -v, --version show program's version number and exit\n -d, --disable-db-cache\n Temporarily not using the result from db cache. (still\n save the result into db)\n -t QUERY_TIMEOUT, --query-timeout QUERY_TIMEOUT\n Set timeout for every query. default is 5 seconds.\n -j [JOBS], --jobs [JOBS]\n Allow N jobs at once. Do not pass any argument to use\n the number of CPUs in the system.\n -sp, --show-provider Show the dictionary provider of the queried word\n -su, --show-url Show the url of the queried word\n -dt itaigi,moe,moe-taiwanese,spanish,oxford,jisho,yahoo,wiktionary,urban,yandex,all, --dict itaigi,moe,moe-taiwanese,spanish,oxford,jisho,yahoo,wiktionary,urban,yandex,all\n Must be seperated by comma and no spaces after each\n comma. Choose the dictionary you want. (default:\n yahoo) Use 'all' for qureying all dictionaries. If\n 'all' or more than 1 dictionaries been chosen, --show-\n provider will be set to True in order to provide more\n understandable output.\n -ld, --list-dicts Show currently supported dictionaries.\n -V, --verbose Show more information for the queried word. (If the\n chosen dictionary have implemented verbose related\n functions)\n -c, --force-color Force color printing (zdict automatically disable\n color printing when output is not a tty, use this\n option to force color printing)\n --dump [PATTERN] Dump the querying history, can be filtered with regex\n -D, --debug Print raw html prettified by BeautifulSoup for\n debugging.\n\n\nScreenshots\n------------------------------\n\n`Yahoo Dictionary `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n* Normal Mode\n\n``zdict hello``\n\n.. image:: http://i.imgur.com/iFTysUz.png\n\n\n* Interactive Mode\n\n``zdict``\n\n.. image:: http://i.imgur.com/NtbWXKH.png\n\n\n`Moe Dictionary \u840c\u5178 `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: http://i.imgur.com/FZD4HBS.png\n\n.. image:: http://i.imgur.com/tF2S98h.png\n\n\n`Urban Dictionary `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: http://i.imgur.com/KndSJqz.png\n\n.. image:: http://i.imgur.com/nh62wi1.png\n\n\n`SpanishDict `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: http://i.imgur.com/Ld2QVvP.png\n\n.. image:: http://i.imgur.com/HJ9h5JO.png\n\n\n`Jisho Japanese Dictionary `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: http://i.imgur.com/63n3qmH.png\n\n.. image:: http://i.imgur.com/UMP8k4e.png\n\n\n`Yandex Translate `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: https://user-images.githubusercontent.com/2716047/29741879-ca1a3826-8a3a-11e7-9701-4a7e9a15971a.png\n\n\n`Oxford Dictionary `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: http://i.imgur.com/VkPEfKh.png\n\nTo use this source, you should first `apply `_ an API key and place it under ``~/.zdict/oxford.key`` in the format::\n\n app_id, app_key\n\n\n`Wiktionary `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: https://i.imgur.com/5OzIFU3.png\n\n.. image:: https://i.imgur.com/UO5nQjU.png\n\n\n`iTaigi-\u611b\u53f0\u8a9e `_\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. image:: https://user-images.githubusercontent.com/1645228/55309799-656acd00-5491-11e9-9d79-4ae578c83f8b.jpg\n\n.. image:: https://user-images.githubusercontent.com/1645228/55309820-7582ac80-5491-11e9-998d-51ebfb183375.jpg\n\n\nDevelopment & Contributing\n---------------------------\n\nTesting\n^^^^^^^^\n\nDuring development, you can install our project as *editable*.\nIf you use `virtualenv`, you may want to create a new enviroment for `zdict`::\n\n $ git clone https://github.com/zdict/zdict.git\n $ cd zdict\n $ pip install -e .\n\nOnce you installed it with the command above,\njust execute `zdict` after modification.\nDon't need to install it again.\n\nWe use ``py.test``::\n\n $ pip install pytest pytest-cov coverage\n $ python setup.py test\n\nor::\n\n $ py.test\n\nAfter runing testing, we will get a coverage report in html.\nWe can browse around it::\n\n $ cd htmlcov\n $ python -m http.server\n\nAlso, there is some configs for ``py.test`` in ``setup.cfg``.\nChange it if you need.\n\n\nDebugging\n^^^^^^^^^^\n\n``py.test`` can prompt ``pdb`` shell when your test case failed::\n\n $ python setup.py test -a \"--pdb\"\n\nor::\n\n $ py.test --pdb\n\n\nBug Report\n^^^^^^^^^^^\n\nFeel free to send a bug report to https://github.com/zdict/zdict/issues.\nPlease attach the error message and describe how to reproduce the bug.\nPR is also welcome.\n\nPlease use the ``-d/--disable-db-cache`` option to query before sending the bug report.\nSometimes we modify the data schema in database for a dictionary,\nbut the default dictionary query of zdict uses the cache in the database which may be stored within an old schema.\nThis might cause an error while showing the result.\nJust use the ``-d/--disable-db-cache`` to update the cache in database.\n\n\nRelated Projects\n------------------------------\n\n* `zdict.vim `_\n * A vim plugin integrates with zdict.\n* `zdict.sh `_\n * A collection of shell completion scripts for zdict.\n\n\nStargazers over time\n---------------------\n\n|stargazers|\n\n.. |version| image:: https://img.shields.io/pypi/v/zdict.svg\n :target: https://pypi.org/project/zdict\n\n.. |python version| image:: https://img.shields.io/pypi/pyversions/zdict.svg\n :target: https://pypi.org/project/zdict\n\n.. |month download| image:: https://img.shields.io/pypi/dm/zdict.svg\n :target: https://pypi.org/project/zdict\n\n.. |stars| image:: https://img.shields.io/github/stars/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/\n\n.. |forks| image:: https://img.shields.io/github/forks/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/\n\n.. |contributors| image:: https://img.shields.io/github/contributors/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/graphs/contributors\n\n.. |pull requests| image:: https://img.shields.io/github/issues-pr/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/pulls\n\n.. |issues| image:: https://img.shields.io/github/issues/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/issues\n\n.. |travis| image:: https://api.travis-ci.org/zdict/zdict.svg?branch=master\n :target: https://travis-ci.org/zdict/zdict\n\n.. |circleci| image:: https://circleci.com/gh/zdict/zdict.svg?style=svg\n :target: https://circleci.com/gh/zdict/zdict\n\n.. |license| image:: https://img.shields.io/github/license/zdict/zdict.svg\n :target: https://github.com/zdict/zdict/blob/master/LICENSE.md\n\n.. |gitter| image:: https://badges.gitter.im/Join%20Chat.svg\n :alt: Join the chat at https://gitter.im/zdict/zdict\n :target: https://gitter.im/zdict/zdict\n\n.. |coveralls| image:: https://coveralls.io/repos/zdict/zdict/badge.svg\n :target: https://coveralls.io/github/zdict/zdict\n\n.. |stargazers| image:: https://starcharts.herokuapp.com/zdict/zdict.svg\n :target: https://starcharts.herokuapp.com/zdict/zdict\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "https://github.com/zdict/zdict/archive/v3.0.2.zip",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/zdict/zdict",
"keywords": "cli,dictionary,framework",
"license": "GPL3",
"maintainer": "",
"maintainer_email": "",
"name": "zdict",
"package_url": "https://pypi.org/project/zdict/",
"platform": "Linux",
"project_url": "https://pypi.org/project/zdict/",
"project_urls": {
"Download": "https://github.com/zdict/zdict/archive/v3.0.2.zip",
"Homepage": "https://github.com/zdict/zdict"
},
"release_url": "https://pypi.org/project/zdict/3.0.2/",
"requires_dist": [
"beautifulsoup4 (==4.7.1)",
"peewee (==3.9.6)",
"requests (==2.22.0)"
],
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"summary": "The last dictionary framework you need. (?)",
"version": "3.0.2"
},
"last_serial": 5423797,
"releases": {
"0.10.0": [
{
"comment_text": "",
"digests": {
"md5": "6730594a62e88803c7338f2e2b96b41d",
"sha256": "49ae3dc776fee5145ee21c274cc8ce60bd60645be9a8dda7328ec4cd7397a3ee"
},
"downloads": -1,
"filename": "zdict-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "6730594a62e88803c7338f2e2b96b41d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21489,
"upload_time": "2017-08-30T15:03:28",
"url": "https://files.pythonhosted.org/packages/ea/64/2bb9b93b6689da0afc2aa775e2aa729cf61080e166ee93e650addf6a876e/zdict-0.10.0.tar.gz"
}
],
"0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "927adb4296880c531130ae3afe49254e",
"sha256": "15f34a89ab4c35c9650b496bf7e56b9e116d2da6c3311080d292346646c572bc"
},
"downloads": -1,
"filename": "zdict-0.10.1.tar.gz",
"has_sig": false,
"md5_digest": "927adb4296880c531130ae3afe49254e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21972,
"upload_time": "2018-02-24T11:09:15",
"url": "https://files.pythonhosted.org/packages/bf/45/4b71d402214755000f646bd83c02efeb7621213694f5042738e36780bc09/zdict-0.10.1.tar.gz"
}
],
"0.10.2": [
{
"comment_text": "",
"digests": {
"md5": "7cf30b0fc688b16c595a356a37968642",
"sha256": "38e2cf16b14a4c62ed6491471f96c3bfff52b20502054a5d14d2b119f6197002"
},
"downloads": -1,
"filename": "zdict-0.10.2.tar.gz",
"has_sig": false,
"md5_digest": "7cf30b0fc688b16c595a356a37968642",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21926,
"upload_time": "2018-02-24T16:57:47",
"url": "https://files.pythonhosted.org/packages/08/e4/43d0086b705b07a904bf6a8d29fb4c12020e7deac84d38b64526359dee8b/zdict-0.10.2.tar.gz"
}
],
"0.10.3": [
{
"comment_text": "",
"digests": {
"md5": "70cefe4e0b064cf5911053d1b76b95a8",
"sha256": "4d64bc67832a8157a785f12b2fc8bd74cfe91ac390560084aee3745a817f5be0"
},
"downloads": -1,
"filename": "zdict-0.10.3.tar.gz",
"has_sig": false,
"md5_digest": "70cefe4e0b064cf5911053d1b76b95a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21945,
"upload_time": "2018-02-24T19:05:43",
"url": "https://files.pythonhosted.org/packages/88/b4/b87b98e9b21b01708fbc509446e2c8a14160c69b1343103f02a428dc221c/zdict-0.10.3.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "2bff933a024271a5958008a0adb0737e",
"sha256": "f6c07f3c77db39ec9d2d99c09c91533c6823245d96236c461674979509b3db5d"
},
"downloads": -1,
"filename": "zdict-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "2bff933a024271a5958008a0adb0737e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22845,
"upload_time": "2018-03-17T09:17:09",
"url": "https://files.pythonhosted.org/packages/09/9f/b1c4cd94d6d6e31ecadcba40e429f6b680583801e03609ed0d4c33eca3bc/zdict-0.11.0.tar.gz"
}
],
"0.12.0": [
{
"comment_text": "",
"digests": {
"md5": "e6d5d99c5161ec8d8251c875f917bc2a",
"sha256": "e5fd47d455215b5d4f6bf48fa8b57235a67603049a22e28c3663106c2836417c"
},
"downloads": -1,
"filename": "zdict-0.12.0-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "e6d5d99c5161ec8d8251c875f917bc2a",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 36722,
"upload_time": "2018-04-10T15:58:46",
"url": "https://files.pythonhosted.org/packages/ba/f4/6d4821cd5b01686461e1ea69632e80b0a58682e9426e1c378334ec8c3c1d/zdict-0.12.0-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7c41e25c0004dcd6ca26529f82e85b9e",
"sha256": "77815a54ea88d137d856950124d578574372719095fd5fca43751ebbd0fe3184"
},
"downloads": -1,
"filename": "zdict-0.12.0.tar.gz",
"has_sig": false,
"md5_digest": "7c41e25c0004dcd6ca26529f82e85b9e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25907,
"upload_time": "2018-04-10T15:58:47",
"url": "https://files.pythonhosted.org/packages/4a/7d/6c8b717945204e09c7a77c136735f028e3d37b1db6d39b7519d29129aff0/zdict-0.12.0.tar.gz"
}
],
"0.12.1": [
{
"comment_text": "",
"digests": {
"md5": "1a91fc76419fce53d6aad97aa95a2a3b",
"sha256": "5122d8413734b907a753c17a22caf32355b2cd4ded12aefd30eb79f1b0bd32ad"
},
"downloads": -1,
"filename": "zdict-0.12.1-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "1a91fc76419fce53d6aad97aa95a2a3b",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 36721,
"upload_time": "2018-04-15T14:32:23",
"url": "https://files.pythonhosted.org/packages/fd/04/03f8156808428ea839789da2a0d97af5868294d47854ee7dda1fd62e76f9/zdict-0.12.1-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "337332564c392863f031b6f175e5c1d2",
"sha256": "39dc80b43bfc8c216eb8475deb03588691f3991cffd4421cde6e16b0fdd49490"
},
"downloads": -1,
"filename": "zdict-0.12.1.tar.gz",
"has_sig": false,
"md5_digest": "337332564c392863f031b6f175e5c1d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25974,
"upload_time": "2018-04-15T14:32:24",
"url": "https://files.pythonhosted.org/packages/aa/a1/16888260a293291848dcd9b2453af3868453497d57c2fbfb6e9053e28b0b/zdict-0.12.1.tar.gz"
}
],
"0.12.2": [
{
"comment_text": "",
"digests": {
"md5": "ecd43ce0bc4d0c7ac845320455186872",
"sha256": "dfe80ec72a9f9ab03ec0cabe26804ee9ca4228ae00045e706384f153d508ec91"
},
"downloads": -1,
"filename": "zdict-0.12.2-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "ecd43ce0bc4d0c7ac845320455186872",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 36959,
"upload_time": "2018-07-01T17:32:58",
"url": "https://files.pythonhosted.org/packages/0a/0d/b76cf8c0ff462482f7e3a8cff4ff2e144563c50f75a04d7440f2edd79820/zdict-0.12.2-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "02486f6ee4c2e90b497a34b00685a030",
"sha256": "d8c0ea2d1ca928d357c975426d32a952c68426194184d07cf187d2433159db4e"
},
"downloads": -1,
"filename": "zdict-0.12.2.tar.gz",
"has_sig": false,
"md5_digest": "02486f6ee4c2e90b497a34b00685a030",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26197,
"upload_time": "2018-07-01T17:32:59",
"url": "https://files.pythonhosted.org/packages/50/97/c2c4dc3607e4f33a834b8c5dda814bd14e9552f80fde1f3cb4fbb234bec5/zdict-0.12.2.tar.gz"
}
],
"0.12.3": [
{
"comment_text": "",
"digests": {
"md5": "b3c9d0341a6c67c6bd861bf6c29ae0e4",
"sha256": "72878404b5f0326d5063b4dab17c40c377b81ee6d49eedda6da9d8d5f879a42c"
},
"downloads": -1,
"filename": "zdict-0.12.3-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "b3c9d0341a6c67c6bd861bf6c29ae0e4",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 37036,
"upload_time": "2018-08-29T20:10:05",
"url": "https://files.pythonhosted.org/packages/dd/df/113e2e10118cc1b6855ab3e087b048afaa48a0dfc5a760bb743c271a5399/zdict-0.12.3-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "95d9e3fb9ad29425ea5937dd3bea1030",
"sha256": "3e9995b122b0a25e0d869c0783daf2185194511191734ae1331de0cbc9b7c399"
},
"downloads": -1,
"filename": "zdict-0.12.3.tar.gz",
"has_sig": false,
"md5_digest": "95d9e3fb9ad29425ea5937dd3bea1030",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26342,
"upload_time": "2018-08-29T20:10:06",
"url": "https://files.pythonhosted.org/packages/ab/4f/94f26b4a5d1367448dbec6159fd9d299dec8ae880963d38e53e23d2ef6b8/zdict-0.12.3.tar.gz"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "bb9fce97308068a580a70e93f2bb0876",
"sha256": "f1ecaecf188374c29d4ca3b9cf244bbac0a428e620cac53c81cd03f1eb43692b"
},
"downloads": -1,
"filename": "zdict-0.9.2-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "bb9fce97308068a580a70e93f2bb0876",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 81742,
"upload_time": "2016-04-17T18:09:41",
"url": "https://files.pythonhosted.org/packages/7b/38/7cb8d066cd68ec2aff421082cdc037369db9c745f16deb875b839ae9e3f0/zdict-0.9.2-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0d8420a5efb23b94d1f7c1c50c04ebe1",
"sha256": "ce88a312072e61c441d0efe0a8e0d6d2a249603638c085efb0c39f9092414778"
},
"downloads": -1,
"filename": "zdict-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "0d8420a5efb23b94d1f7c1c50c04ebe1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21503,
"upload_time": "2016-04-28T13:24:29",
"url": "https://files.pythonhosted.org/packages/e9/33/f4fc99c6f36d008f51f6451a61b669493dedf760135604191204f0bb40ca/zdict-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "f887087fc321563e22452035cca001d7",
"sha256": "4e578f8a478e1fc3a246aa92ed99e2973cdd9b6466abf505d31dadb60aefddca"
},
"downloads": -1,
"filename": "zdict-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "f887087fc321563e22452035cca001d7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21485,
"upload_time": "2016-05-09T07:42:53",
"url": "https://files.pythonhosted.org/packages/6d/8c/3aece81c6788ddbe21085982b65ab06e362f7b61225218f808f5fb056a53/zdict-0.9.3.tar.gz"
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "edfa295c9c821d4fc7b2af771a559751",
"sha256": "ead533fbfff72ba8d8defb768d7eae6db37f976732751a8053fc9e32d9024e37"
},
"downloads": -1,
"filename": "zdict-0.9.4.tar.gz",
"has_sig": false,
"md5_digest": "edfa295c9c821d4fc7b2af771a559751",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21562,
"upload_time": "2016-05-16T02:54:47",
"url": "https://files.pythonhosted.org/packages/56/b6/1826e31e63b3992ec25cf81cc7218bdbc2ae925e03534764fe6ad811ca9f/zdict-0.9.4.tar.gz"
}
],
"0.9.5": [
{
"comment_text": "",
"digests": {
"md5": "c03a4ffe41f8c5f504198d1c84ba2a36",
"sha256": "f7c040ba7092f7fd7c07258d980b40bfe9b1d5f08932eda9ebc9dd796397536f"
},
"downloads": -1,
"filename": "zdict-0.9.5-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "c03a4ffe41f8c5f504198d1c84ba2a36",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 31904,
"upload_time": "2016-06-30T17:41:25",
"url": "https://files.pythonhosted.org/packages/52/77/bfc3668ba2d0a74331f95051881bff3b0d8e00bce89771413bcd5fbe4028/zdict-0.9.5-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2d795d72fb4bbae92250b329c961090c",
"sha256": "2b477c72d200b4cc5b304803947fa9bff36106a142aa6c9160d011b2f7571bdb"
},
"downloads": -1,
"filename": "zdict-0.9.5.zip",
"has_sig": false,
"md5_digest": "2d795d72fb4bbae92250b329c961090c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36019,
"upload_time": "2016-06-30T17:49:41",
"url": "https://files.pythonhosted.org/packages/73/05/2942a7fae0dfee035605dafc8646121deb37ffce58dac9f6df0aa664e1bc/zdict-0.9.5.zip"
}
],
"0.9.6": [
{
"comment_text": "",
"digests": {
"md5": "445760c41f3a4b17c64cde3d0cee70f6",
"sha256": "55ca8b2377314e2aeb9932065fa97109eb4feef94ccb0b62ba6025fed606d84a"
},
"downloads": -1,
"filename": "zdict-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "445760c41f3a4b17c64cde3d0cee70f6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18889,
"upload_time": "2016-08-31T17:36:29",
"url": "https://files.pythonhosted.org/packages/d2/47/9c7edef0cb0d3459022d592cf7d557fd6de37ff86d117dd0720cd062934c/zdict-0.9.6.tar.gz"
}
],
"0.9.7": [
{
"comment_text": "",
"digests": {
"md5": "c0ed2bb72b22287b641a426158b0d16e",
"sha256": "e2d8fbec055759e034b19a506fcb4404b1d9d3a7bd99bfb63b813fce3acf90c9"
},
"downloads": -1,
"filename": "zdict-0.9.7.tar.gz",
"has_sig": false,
"md5_digest": "c0ed2bb72b22287b641a426158b0d16e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19745,
"upload_time": "2017-04-04T03:42:40",
"url": "https://files.pythonhosted.org/packages/e2/91/e3e2fb27253ab554ab6fae43f2126e4ec53a4df6d947b93c43e811f86de3/zdict-0.9.7.tar.gz"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "483ac53f15cca0d931cbee4db0d5862c",
"sha256": "2ad9f64efb86f1d195dba0ef1fb297e792e9611aea32c041f1e87e7e9c210491"
},
"downloads": -1,
"filename": "zdict-1.0.0-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "483ac53f15cca0d931cbee4db0d5862c",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 50869,
"upload_time": "2018-10-16T15:10:04",
"url": "https://files.pythonhosted.org/packages/a0/1e/dd0335d799bcac33509d146ced8ea2d202c790b0e616f27360efa19d94b0/zdict-1.0.0-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "70f5c0af8a014b925fc091fd1fcacf9e",
"sha256": "bd40010a2ae65d30e19f88ba792866bae4c0a873b55ac5975c548924e999f71b"
},
"downloads": -1,
"filename": "zdict-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "70f5c0af8a014b925fc091fd1fcacf9e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26441,
"upload_time": "2018-10-16T15:10:06",
"url": "https://files.pythonhosted.org/packages/a3/e1/1f66785ef9c3cae6b7062c17b82d04354b686be2ab29a6d13f590aa21e64/zdict-1.0.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "770df16389ca81f68ef9c8061b6f6dca",
"sha256": "4c4f73205b876cd5d59c411754afe497c2a14666dcfea91a2eb20dc9f24d990b"
},
"downloads": -1,
"filename": "zdict-1.0.1-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "770df16389ca81f68ef9c8061b6f6dca",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 50879,
"upload_time": "2018-10-16T15:50:40",
"url": "https://files.pythonhosted.org/packages/5e/3c/f39f9b639df9a2fb1477cf6c842b26ce7021147cf3125ef3b8cc19d5ce8d/zdict-1.0.1-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b9221e06556f47a4bafe0420428d7519",
"sha256": "4ced9fd84eb302b92fffe00d2f13e34a5bd7bac5dbf6d432357a36f593763a32"
},
"downloads": -1,
"filename": "zdict-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "b9221e06556f47a4bafe0420428d7519",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26449,
"upload_time": "2018-10-16T15:50:42",
"url": "https://files.pythonhosted.org/packages/95/d9/0400cbd32e6d5cffdaf572dccb53ebb00fb64ef0b6888daaa015cac4e860/zdict-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "e1bad9aa131bf7c2e91c5a3839f2158e",
"sha256": "8e8e9f7c69faf9cfda7df8c9dab77e091c6fa52f21d6f0138e659c8f9e4c2194"
},
"downloads": -1,
"filename": "zdict-1.0.2-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "e1bad9aa131bf7c2e91c5a3839f2158e",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 51556,
"upload_time": "2018-10-28T23:03:43",
"url": "https://files.pythonhosted.org/packages/06/05/d3544d4b77713efb62e1eca88139b831f2966d6eda311edbf2a0531f9b05/zdict-1.0.2-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1a1e65f23c8c9d05384fe3d1c245f01f",
"sha256": "b7dd96837f23a4a389948cdd3e4a16746d8ac45b36f1c0cc2c8ce8325be981f9"
},
"downloads": -1,
"filename": "zdict-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "1a1e65f23c8c9d05384fe3d1c245f01f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27093,
"upload_time": "2018-10-28T23:03:45",
"url": "https://files.pythonhosted.org/packages/cf/d9/62bc32e3afb422c978e68ee9927bcf07adf31fc14c307961608a63bb104a/zdict-1.0.2.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "8774260c76e7e441173712bc97880310",
"sha256": "2fa654f58f2e002b09d9c0f3a7bdf7b9870af191dd2edf54040841fd78a3a83f"
},
"downloads": -1,
"filename": "zdict-2.0.0-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "8774260c76e7e441173712bc97880310",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 43573,
"upload_time": "2019-02-26T05:26:19",
"url": "https://files.pythonhosted.org/packages/87/f0/3ef87424ddd8a5fbc598d84aadbc3566281d7213252897b75da6ca8af767/zdict-2.0.0-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7daf11680fd54e5261bac93ae6b68cc3",
"sha256": "d7956354880263faaf42655e950cf35e1791a4b8f57ff4fe1da634900c9da917"
},
"downloads": -1,
"filename": "zdict-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "7daf11680fd54e5261bac93ae6b68cc3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29415,
"upload_time": "2019-02-26T05:26:22",
"url": "https://files.pythonhosted.org/packages/ad/79/7ac535f3d2d12ddd8fd901be8809c99912904faf1bce961a1b809eb0f0d8/zdict-2.0.0.tar.gz"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "e99a178aca8092c90c379575c89cb946",
"sha256": "e9370dd6847b6a4444e4ebd9c8cb3cc2a0d35abbba3ecbdb87c0eb4348f8597b"
},
"downloads": -1,
"filename": "zdict-2.0.1-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "e99a178aca8092c90c379575c89cb946",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 43569,
"upload_time": "2019-02-26T05:32:00",
"url": "https://files.pythonhosted.org/packages/02/c8/737a495fdb94b22698197ecfe2cef4ba60d9c55c460ee753e6bdaea38070/zdict-2.0.1-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6fc82f8eac9af0946f8cd83234a2ce83",
"sha256": "45ea94728a9475aeae51bf9b28d41daecc4ecd0d2d0f34f8c377f50bcca56de1"
},
"downloads": -1,
"filename": "zdict-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "6fc82f8eac9af0946f8cd83234a2ce83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29471,
"upload_time": "2019-02-26T05:32:02",
"url": "https://files.pythonhosted.org/packages/97/8f/736cf1da5a1301225b05d71dd5ad3ed5fbac6d46a0e5e0c346b97216401c/zdict-2.0.1.tar.gz"
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "4ddf17e688f1d6614c7048347bb32aaf",
"sha256": "467dee7fc17f41b78789dcc2b8e812dc408493e913f2dd21d1654d96f1087d9e"
},
"downloads": -1,
"filename": "zdict-2.0.2-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "4ddf17e688f1d6614c7048347bb32aaf",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 43465,
"upload_time": "2019-02-26T05:32:48",
"url": "https://files.pythonhosted.org/packages/c1/cd/9e7677f0985e65bb3da59a85052bc144ea02f0ae4b490f9934f5f1d05027/zdict-2.0.2-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "aa987a9fa7e99c61959067f3d86c7b34",
"sha256": "c2cb1497244f731f86b844e6efb289f994ac7fc03217c611cbc6999a730da968"
},
"downloads": -1,
"filename": "zdict-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "aa987a9fa7e99c61959067f3d86c7b34",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29429,
"upload_time": "2019-02-26T05:32:50",
"url": "https://files.pythonhosted.org/packages/79/ee/0587bb15cd9ba3f2b3c8d299c995a6c142a1367fd210d033b9f861520d25/zdict-2.0.2.tar.gz"
}
],
"2.0.3": [
{
"comment_text": "",
"digests": {
"md5": "69ac02de5884c3bcc58e9bf9c343bf0b",
"sha256": "8eb7e3d780c47cde13375ecb3a0d561266c943b1fa30a1e21d412efd9804b5e2"
},
"downloads": -1,
"filename": "zdict-2.0.3-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "69ac02de5884c3bcc58e9bf9c343bf0b",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 51471,
"upload_time": "2019-03-21T08:09:23",
"url": "https://files.pythonhosted.org/packages/74/49/dee57ff1efc8293c89f9cce2e23bc96bf8301b615627e60b72d7d0646c8a/zdict-2.0.3-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "64608b1a0325561e2f18e07546e8332c",
"sha256": "2643b171fcd15a800152ad24f1bd45115645ef54771058162d7c801f80dd53eb"
},
"downloads": -1,
"filename": "zdict-2.0.3.tar.gz",
"has_sig": false,
"md5_digest": "64608b1a0325561e2f18e07546e8332c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27068,
"upload_time": "2019-03-21T08:09:25",
"url": "https://files.pythonhosted.org/packages/2e/8e/86a2a58d11e22e5403dd515124c2ed70615d958123d2273b345ba2984a89/zdict-2.0.3.tar.gz"
}
],
"2.0.4": [
{
"comment_text": "",
"digests": {
"md5": "91a2ddc16495f927717d7d57ad1100df",
"sha256": "820b19fb519f183acb68734fa20b35bbee7342ec7201bec07490af422575c80f"
},
"downloads": -1,
"filename": "zdict-2.0.4-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "91a2ddc16495f927717d7d57ad1100df",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 51497,
"upload_time": "2019-03-22T07:41:14",
"url": "https://files.pythonhosted.org/packages/e6/01/66c9a4fe3f1c29e27961bacd2ed00bbd55f437faa7e1ef5f8793ed1fbf1d/zdict-2.0.4-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b5e255a25afbd9562ce3ba42d3fe4de5",
"sha256": "17581ae1f5780f4b5cc1715574e4a51c6d455624852ea5ee75352ae3fc17c68b"
},
"downloads": -1,
"filename": "zdict-2.0.4.tar.gz",
"has_sig": false,
"md5_digest": "b5e255a25afbd9562ce3ba42d3fe4de5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30271,
"upload_time": "2019-03-22T07:41:16",
"url": "https://files.pythonhosted.org/packages/bc/7c/e9aa641d311a2a29108d72a8f4436b3287aa1a200c8f7d6bb3260a805859/zdict-2.0.4.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "a0d1ba4bcaf3289b8b205f519c4a3070",
"sha256": "b64702ae11206ee9810d9ddb44230c73c545ae99815003312dc6d9e20fb73c6a"
},
"downloads": -1,
"filename": "zdict-2.1.0-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "a0d1ba4bcaf3289b8b205f519c4a3070",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 55495,
"upload_time": "2019-04-06T08:13:58",
"url": "https://files.pythonhosted.org/packages/4e/16/e6862659ee1c4e301ea39fbb7fd4135bd950eb6e61093c060ba332ca67f2/zdict-2.1.0-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "55dca9e995e73c64a59cec6fcc526723",
"sha256": "5b12f3c6056720ac511338d847fa418eb62d2f14c349443a3ac84dedaf1be853"
},
"downloads": -1,
"filename": "zdict-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "55dca9e995e73c64a59cec6fcc526723",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32299,
"upload_time": "2019-04-06T08:13:59",
"url": "https://files.pythonhosted.org/packages/3e/3e/29c2d566a13684fdb479e075411614a1c404267a43ca197b0aff86088b83/zdict-2.1.0.tar.gz"
}
],
"2.1.1": [
{
"comment_text": "",
"digests": {
"md5": "07b543b4346b1cf76d902923234e3172",
"sha256": "d2c037d4ad9a09ec092b7ca98228f44834f2d54659cc0ff52400b95da02d693e"
},
"downloads": -1,
"filename": "zdict-2.1.1-py34+-none-any.whl",
"has_sig": false,
"md5_digest": "07b543b4346b1cf76d902923234e3172",
"packagetype": "bdist_wheel",
"python_version": "py34+",
"requires_python": null,
"size": 55493,
"upload_time": "2019-06-17T12:51:49",
"url": "https://files.pythonhosted.org/packages/d2/c1/f89680d2c66cf058fd2cb25f95609f9d67a227c2368b0f92f140a98e24b6/zdict-2.1.1-py34+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "733f66142c0f1223794af6e018c1d513",
"sha256": "be329ad08faf4b9fd84be0386a3c8fb4f7c978af479c4e3102a27658fbcfe447"
},
"downloads": -1,
"filename": "zdict-2.1.1.tar.gz",
"has_sig": false,
"md5_digest": "733f66142c0f1223794af6e018c1d513",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28283,
"upload_time": "2019-06-17T12:51:50",
"url": "https://files.pythonhosted.org/packages/6e/53/d8177eb1624bd2c0f52d9ced505d18f974a67495018bed3fd1e260a49b3d/zdict-2.1.1.tar.gz"
}
],
"3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "0f6fe4c4511ac55824a264e35b8bc8ed",
"sha256": "7d77fbb2c640b80c1a2374da73d28161b7ca7cafae5e8e91e5a300c610403eed"
},
"downloads": -1,
"filename": "zdict-3.0.0-py35+-none-any.whl",
"has_sig": false,
"md5_digest": "0f6fe4c4511ac55824a264e35b8bc8ed",
"packagetype": "bdist_wheel",
"python_version": "py35+",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 55672,
"upload_time": "2019-06-18T13:12:03",
"url": "https://files.pythonhosted.org/packages/13/f4/c617a6173d21648d4d80b0d24748ce3ba3de3ac770752885e6aa08ae990e/zdict-3.0.0-py35+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4a3fc6924480d7f992500b15dc71bfa9",
"sha256": "cc67d3bd58037f86bb348efa63eafdf199624f4de6c6194ab5c66ff565b9fb90"
},
"downloads": -1,
"filename": "zdict-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "4a3fc6924480d7f992500b15dc71bfa9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 32885,
"upload_time": "2019-06-18T13:12:05",
"url": "https://files.pythonhosted.org/packages/61/27/79441b941734853dd0141ef2e5e14de1c9d322144a1a240e46580fac1ec8/zdict-3.0.0.tar.gz"
}
],
"3.0.1": [
{
"comment_text": "",
"digests": {
"md5": "585c4e178f41d0ef9f514069982ebebf",
"sha256": "8be7ef663d09412f4cc728cbbf9968f69dab69f3a24dd59535f58d304168e5ee"
},
"downloads": -1,
"filename": "zdict-3.0.1-py35+-none-any.whl",
"has_sig": false,
"md5_digest": "585c4e178f41d0ef9f514069982ebebf",
"packagetype": "bdist_wheel",
"python_version": "py35+",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 55672,
"upload_time": "2019-06-20T04:24:18",
"url": "https://files.pythonhosted.org/packages/75/54/346e97a7fd6fc36a79c8a2d59baaee8bc68eed8383b1deeaa253e4ead0a3/zdict-3.0.1-py35+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "913797eb40b22e114345f58c8feb4668",
"sha256": "1689fe7ed0399aab3ee8cebbfd898d57e55b01951f5ba7ab16e429c5b5960e59"
},
"downloads": -1,
"filename": "zdict-3.0.1.tar.gz",
"has_sig": false,
"md5_digest": "913797eb40b22e114345f58c8feb4668",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 32818,
"upload_time": "2019-06-20T04:24:20",
"url": "https://files.pythonhosted.org/packages/c1/fa/74c8c47b79f16eaf4d7633cdd23d01b8460777e6ac4c13c581c05ae2289b/zdict-3.0.1.tar.gz"
}
],
"3.0.2": [
{
"comment_text": "",
"digests": {
"md5": "db9cb82f4cb79a948a6ccc102ae34262",
"sha256": "a003651afc4743975c76d073f05e0da4b5b749561abda4518401d0d2927620d5"
},
"downloads": -1,
"filename": "zdict-3.0.2-py35+-none-any.whl",
"has_sig": false,
"md5_digest": "db9cb82f4cb79a948a6ccc102ae34262",
"packagetype": "bdist_wheel",
"python_version": "py35+",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 55717,
"upload_time": "2019-06-20T04:34:36",
"url": "https://files.pythonhosted.org/packages/b6/94/c07ff52f865938a9197f576be9c30dd5c166eb76e08b1beebe7008208011/zdict-3.0.2-py35+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "57c95d891d7e3ca8eb54f026965084bf",
"sha256": "38136a0227bdf94fd6593e328f5eb31d78b3e9b5cf3204e49e8da88da13e5952"
},
"downloads": -1,
"filename": "zdict-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "57c95d891d7e3ca8eb54f026965084bf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 29367,
"upload_time": "2019-06-20T04:34:38",
"url": "https://files.pythonhosted.org/packages/39/c6/24cf73604240dbef02003fc53e6675fc869492d2d63f6594450a16f3737b/zdict-3.0.2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "db9cb82f4cb79a948a6ccc102ae34262",
"sha256": "a003651afc4743975c76d073f05e0da4b5b749561abda4518401d0d2927620d5"
},
"downloads": -1,
"filename": "zdict-3.0.2-py35+-none-any.whl",
"has_sig": false,
"md5_digest": "db9cb82f4cb79a948a6ccc102ae34262",
"packagetype": "bdist_wheel",
"python_version": "py35+",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 55717,
"upload_time": "2019-06-20T04:34:36",
"url": "https://files.pythonhosted.org/packages/b6/94/c07ff52f865938a9197f576be9c30dd5c166eb76e08b1beebe7008208011/zdict-3.0.2-py35+-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "57c95d891d7e3ca8eb54f026965084bf",
"sha256": "38136a0227bdf94fd6593e328f5eb31d78b3e9b5cf3204e49e8da88da13e5952"
},
"downloads": -1,
"filename": "zdict-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "57c95d891d7e3ca8eb54f026965084bf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
"size": 29367,
"upload_time": "2019-06-20T04:34:38",
"url": "https://files.pythonhosted.org/packages/39/c6/24cf73604240dbef02003fc53e6675fc869492d2d63f6594450a16f3737b/zdict-3.0.2.tar.gz"
}
]
}