{ "info": { "author": "David Zurow", "author_email": "daanzu@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "# Kaldi Active Grammar\n\n> **Python Kaldi speech recognition with grammars that can be set active/inactive dynamically at decode-time**\n\n> Python package developed to enable context-based command & control of computer applications, as in the [Dragonfly](https://github.com/dictation-toolbox/dragonfly) speech recognition framework, using the [Kaldi](https://github.com/kaldi-asr/kaldi) automatic speech recognition engine.\n\n[![PyPI - Version](https://img.shields.io/pypi/v/kaldi-active-grammar.svg)](https://pypi.python.org/pypi/kaldi-active-grammar/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kaldi-active-grammar.svg)](https://pypi.python.org/pypi/kaldi-active-grammar/)\n[![PyPI - Wheel](https://img.shields.io/pypi/wheel/kaldi-active-grammar.svg)](https://pypi.python.org/pypi/kaldi-active-grammar/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/kaldi-active-grammar.svg?logo=python)](https://pypi.python.org/pypi/kaldi-active-grammar/)\n[![GitHub - Downloads](https://img.shields.io/github/downloads/daanzu/kaldi-active-grammar/total?logo=github)](https://github.com/daanzu/kaldi-active-grammar/releases)\n\n\n[![Batteries-Included](https://img.shields.io/badge/batteries-included-green.svg)](https://github.com/daanzu/kaldi-active-grammar/releases)\n![Continuous Integration](https://github.com/daanzu/kaldi-active-grammar/workflows/Continuous%20Integration/badge.svg)\n[![Gitter](https://badges.gitter.im/kaldi-active-grammar/community.svg)](https://gitter.im/kaldi-active-grammar/community)\n\n[![Donate](https://img.shields.io/badge/donate-GitHub-pink.svg)](https://github.com/sponsors/daanzu)\n[![Donate](https://img.shields.io/badge/donate-Patreon-orange.svg)](https://www.patreon.com/daanzu)\n[![Donate](https://img.shields.io/badge/donate-PayPal-green.svg)](https://paypal.me/daanzu)\n[![Donate](https://img.shields.io/badge/preferred-GitHub-black.svg)](https://github.com/sponsors/daanzu)\n\nNormally, Kaldi decoding graphs are **monolithic**, require **expensive up-front off-line** compilation, and are **static during decoding**. Kaldi's new grammar framework allows **multiple independent** grammars with nonterminals, to be compiled separately and **stitched together dynamically** at decode-time, but all the grammars are **always active** and capable of being recognized.\n\nThis project extends that to allow each grammar/rule to be **independently marked** as active/inactive **dynamically** on a **per-utterance** basis (set at the beginning of each utterance). Dragonfly is then capable of activating **only the appropriate grammars for the current environment**, resulting in increased accuracy due to fewer possible recognitions. Furthermore, the dictation grammar can be **shared** between all the command grammars, which can be **compiled quickly** without needing to include large-vocabulary dictation directly.\n\nSee the [Changelog](CHANGELOG.md) for the latest updates.\n\n### Features\n\n* **Binaries:** The Python package **includes all necessary binaries** for decoding on **Windows/Linux/MacOS**. Available on [PyPI](https://pypi.org/project/kaldi-active-grammar/#files).\n * Binaries are generated from my [fork of Kaldi](https://github.com/daanzu/kaldi-fork-active-grammar), which is only intended to be used by kaldi-active-grammar directly, and not as a stand-alone library.\n* **Pre-trained model:** A compatible **general English Kaldi nnet3 chain model** is trained on **~3000** hours of open audio. Available under [project releases](https://github.com/daanzu/kaldi-active-grammar/releases).\n * [**Model info and comparison**](docs/models.md)\n * Improved models are under development.\n* **Plain dictation:** Do you just want to recognize plain dictation? Seems kind of boring, but okay! There is an [**interface for plain dictation** (see below)](#plain-dictation-interface), using either your specified `HCLG.fst` file, or KaldiAG's included pre-trained dictation model.\n* **Dragonfly/Caster:** A compatible [**backend for Dragonfly**](https://github.com/daanzu/dragonfly/tree/kaldi/dragonfly/engines/backend_kaldi) is under development in the `kaldi` branch of my fork, and has been merged as of Dragonfly **v0.15.0**.\n * See its [documentation](https://dragonfly2.readthedocs.io/en/latest/kaldi_engine.html), try out a [demo](https://github.com/dictation-toolbox/dragonfly/blob/master/dragonfly/examples/kaldi_demo.py), or use the [loader](https://github.com/dictation-toolbox/dragonfly/blob/master/dragonfly/examples/kaldi_module_loader_plus.py) to run all normal dragonfly scripts.\n * You can try it out easily on Windows using a **simple no-install package**: see [Getting Started](#getting-started) below.\n * [Caster](https://github.com/dictation-toolbox/Caster) is supported as of KaldiAG **v0.6.0** and Dragonfly **v0.16.1**.\n* **Bootstrapped** since v0.2: development of KaldiAG is done entirely using KaldiAG.\n\n### Demo Video\n\n
\n\n[![Demo Video](docs/demo_video.png)](https://youtu.be/Qk1mGbIJx3s)\n\n
\n\n### Donations are appreciated to encourage development.\n\n[![Donate](https://img.shields.io/badge/donate-GitHub-pink.svg)](https://github.com/sponsors/daanzu)\n[![Donate](https://img.shields.io/badge/donate-Patreon-orange.svg)](https://www.patreon.com/daanzu)\n[![Donate](https://img.shields.io/badge/donate-PayPal-green.svg)](https://paypal.me/daanzu)\n[![Donate](https://img.shields.io/badge/preferred-GitHub-black.svg)](https://github.com/sponsors/daanzu)\n\n### Related Repositories\n\n* [daanzu/kaldi-grammar-simple](https://github.com/daanzu/kaldi-grammar-simple)\n* [daanzu/speech-training-recorder](https://github.com/daanzu/speech-training-recorder)\n* [daanzu/dragonfly_daanzu_tools](https://github.com/daanzu/dragonfly_daanzu_tools)\n* [kmdouglass/caster-kaldi](https://github.com/kmdouglass/homelab/tree/master/speech-recognition/toolchains/caster-kaldi): Docker image to run KaldiAG + Dragonfly + Caster inside a container on Linux, using the host's microphone.\n\n## Getting Started\n\nWant to get started **quickly & easily on Windows**?\nAvailable under [project releases](https://github.com/daanzu/kaldi-active-grammar/releases):\n\n* **`kaldi-dragonfly-winpython`**: A self-contained, portable, batteries-included (python & libraries & model) distribution of kaldi-active-grammar + dragonfly2. Just unzip and run!\n* **`kaldi-dragonfly-winpython-dev`**: [*more recent development version*] A self-contained, portable, batteries-included (python & libraries & model) distribution of kaldi-active-grammar + dragonfly2. Just unzip and run!\n* **`kaldi-caster-winpython-dev`**: [*more recent development version*] A self-contained, portable, batteries-included (python & libraries & model) distribution of kaldi-active-grammar + dragonfly2 + caster. Just unzip and run!\n\nOtherwise...\n\n### Setup\n\n**Requirements**:\n* Python 3.6+; *64-bit required!*\n* OS: Windows/Linux/MacOS all supported\n* Only supports Kaldi left-biphone models, specifically *nnet3 chain* models, with specific modifications\n* ~1GB+ disk space for model plus temporary storage and cache, depending on your grammar complexity\n* ~1GB+ RAM for model and grammars, depending on your model and grammar complexity\n\n**Installation**:\n1. Download compatible generic English Kaldi nnet3 chain model from [project releases](https://github.com/daanzu/kaldi-active-grammar/releases). Unzip the model and pass the directory path to kaldi-active-grammar constructor.\n * Or use your own model. Standard Kaldi models must be converted to be usable. Conversion can be performed automatically, but this hasn't been fully implemented yet.\n1. Install Python package, which includes necessary Kaldi binaries:\n * The easy way to use kaldi-active-grammar is as a backend to dragonfly, which makes it easy to define grammars and resultant actions.\n * For this, simply run `pip install 'dragonfly2[kaldi]'` to install all necessary packages. See the [dragonfly documentation for details on installation](https://dragonfly2.readthedocs.io/en/latest/kaldi_engine.html#setup), plus how to define grammars and actions.\n * Alternatively, if you only want to use it directly (via a more low level interface), you can just run `pip install kaldi-active-grammar`\n1. To support automatic generation of pronunciations for unknown words (not in the lexicon), you have two choices:\n * Local generation: Install the `g2p_en` package with `pip install 'kaldi-active-grammar[g2p_en]'`\n * The necessary data files are now included in the latest speech models I released with `v3.0.0`.\n * Online/cloud generation: Install the `requests` package with `pip install 'kaldi-active-grammar[online]'` **AND** pass `allow_online_pronunciations=True` to `Compiler.add_word()` or `Model.add_word()`\n * If both are available, the former is preferentially used.\n\n### Troubleshooting\n\n* Errors installing\n * Make sure you're using a 64-bit Python.\n * You should install via `pip install kaldi-active-grammar` (directly or indirectly), *not* `python setup.py install`, in order to get the required binaries.\n * Update your `pip` (to at least `19.0+`) by executing `python -m pip install --upgrade pip`, to support the required python binary wheel package.\n* Errors running\n * Windows: `The code execution cannot proceed because VCRUNTIME140.dll was not found.` (or similar)\n * You must install the VC2017+ redistributable from Microsoft: [download page](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads), [direct link](https://aka.ms/vs/16/release/vc_redist.x64.exe). (This is usually already installed globally by other programs.)\n * Try deleting the Kaldi model `.tmp` directory, and re-running.\n * Try deleting the Kaldi model directory itself, re-downloading and/or re-extracting it, and re-running. (Note: You may want to make a copy of your `user_lexicon.txt` file before deleting, to put in the new model directory.)\n* For reporting issues, try running with `import logging; logging.basicConfig(level=1)` at the top of your main/loader file to enable full debugging logging.\n\n## Documentation\n\nFormal documentation is somewhat lacking currently. To see example usage, examine:\n\n* [**Plain dictation interface**](examples/plain_dictation.py): Set up recognizer for plain dictation; perform decoding on given `wav` file.\n* [**Full example**](examples/full_example.py): Set up grammar compiler & decoder; set up a rule; perform decoding on live, real-time audio from microphone.\n* [**Backend for Dragonfly**](https://github.com/daanzu/dragonfly/tree/kaldi/dragonfly/engines/backend_kaldi): Many advanced features and complex interactions.\n\nThe KaldiAG API is fairly low level, but basically: you define a set of grammar rules, then send in audio data, along with a bit mask of which rules are active at the beginning of each utterance, and receive back the recognized rule and text. The easy way is to go through Dragonfly, which makes it easy to define the rules, contexts, and actions.\n\n### Building\n\n* Recommendation: use the binary wheels distributed for all major platforms.\n * Significant work has gone into allowing you to avoid the many repo/dependency downloads, GBs of disk space, and vCPU-hours needed for building from scratch.\n * They are built in public by automated Continuous Integration run on GitHub Actions: [see manifest](.github/workflows/build.yml).\n* Alternatively, to build for use locally:\n * Linux/MacOS:\n 1. `python -m pip install -r requirements-build.txt`\n 1. `python setup.py bdist_wheel` (see [`CMakeLists.txt`](CMakeLists.txt) for details)\n * Windows:\n * Less easily generally automated\n * You can follow the steps for Continuous Integration run on GitHub Actions: see the `build-windows` section of [the manifest](.github/workflows/build.yml).\n* Note: the project (and python wheel) is built from a duorepo (2 separate repos used together):\n 1. This repo, containing the external interface and higher-level logic, written in Python.\n 1. [My fork of Kaldi](https://github.com/daanzu/kaldi-fork-active-grammar), containing the lower-level code, written in C++.\n\n## Contributing\n\nIssues, suggestions, and feature requests are welcome & encouraged. Pull requests are considered, but project structure is in flux.\n\nDonations are appreciated to encourage development.\n\n[![Donate](https://img.shields.io/badge/donate-GitHub-pink.svg)](https://github.com/sponsors/daanzu)\n[![Donate](https://img.shields.io/badge/donate-Patreon-orange.svg)](https://www.patreon.com/daanzu)\n[![Donate](https://img.shields.io/badge/donate-PayPal-green.svg)](https://paypal.me/daanzu)\n[![Donate](https://img.shields.io/badge/preferred-GitHub-black.svg)](https://github.com/sponsors/daanzu)\n\n## Author\n\n* David Zurow ([@daanzu](https://github.com/daanzu))\n\n## License\n\nThis project is licensed under the GNU Affero General Public License v3 (AGPL-3.0-or-later). See the [LICENSE.txt file](LICENSE.txt) for details. If this license is problematic for you, please contact me.\n\n## Acknowledgments\n\n* Based on and including code from [Kaldi ASR](https://github.com/kaldi-asr/kaldi), under the Apache-2.0 license.\n* Code from [OpenFST](http://www.openfst.org/) and [OpenFST port for Windows](https://github.com/kkm000/openfst), under the Apache-2.0 license.\n* [Intel Math Kernel Library](https://software.intel.com/en-us/mkl), copyright (c) 2018 Intel Corporation, under the [Intel Simplified Software License](https://software.intel.com/en-us/license/intel-simplified-software-license), currently only used for Windows build.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/daanzu/kaldi-active-grammar", "keywords": "kaldi speech recognition grammar dragonfly", "license": "AGPL-3.0", "maintainer": "", "maintainer_email": "", "name": "kaldi-active-grammar", "package_url": "https://pypi.org/project/kaldi-active-grammar/", "platform": "", "project_url": "https://pypi.org/project/kaldi-active-grammar/", "project_urls": { "Bug Reports": "https://github.com/daanzu/kaldi-active-grammar/issues", "Funding": "https://github.com/sponsors/daanzu", "Homepage": "https://github.com/daanzu/kaldi-active-grammar", "Source": "https://github.com/daanzu/kaldi-active-grammar/" }, "release_url": "https://pypi.org/project/kaldi-active-grammar/3.1.0/", "requires_dist": [ "cffi (~=1.12)", "numpy (!=1.19.4,~=1.16)", "ush (~=3.1)", "six", "futures ; python_version == \"2.7\"", "g2p-en (~=2.1.0) ; extra == 'g2p_en'", "requests (~=2.18) ; extra == 'online'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "summary": "Kaldi speech recognition with grammars that can be set active/inactive dynamically at decode-time", "version": "3.1.0", "yanked": false, "yanked_reason": null }, "last_serial": 12111712, "releases": { "0.1.0.dev1": [ { "comment_text": "", "digests": { "md5": "e81c0a5406b136b90f0f690854113819", "sha256": "f2e5460a9d0bf1fc6b8e6ba9817c403a4299f65d06ff7a9b55559a352456d330" }, "downloads": -1, "filename": "kaldi_active_grammar-0.1.0.dev1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "e81c0a5406b136b90f0f690854113819", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17038008, "upload_time": "2019-05-04T09:28:01", "upload_time_iso_8601": "2019-05-04T09:28:01.493073Z", "url": "https://files.pythonhosted.org/packages/18/53/0dadf47c73325d0380966cb8658c881dbb20d8cd30a987757110c5c6f4e4/kaldi_active_grammar-0.1.0.dev1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.0.dev2": [ { "comment_text": "", "digests": { "md5": "7be35e5f7cfb8091d0d16dfb6c49620d", "sha256": "1c7ff5a90a99bdac2c9a03390e0d920abaa376b014d67e003b197b3fd12c980e" }, "downloads": -1, "filename": "kaldi_active_grammar-0.1.0.dev2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7be35e5f7cfb8091d0d16dfb6c49620d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17038235, "upload_time": "2019-05-06T07:49:02", "upload_time_iso_8601": "2019-05-06T07:49:02.771846Z", "url": "https://files.pythonhosted.org/packages/8c/33/4363e6388aa08ade713afba7cbec490218319d5ddccc57e37b7e1cf47496/kaldi_active_grammar-0.1.0.dev2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.0.dev3": [ { "comment_text": "", "digests": { "md5": "4f79ee16532891ca5f0efb8670c0fd32", "sha256": "68c3717d9eb5b3b29c1de110443090057b8ef94bcb6320b68cd0b3166d33d531" }, "downloads": -1, "filename": "kaldi_active_grammar-0.1.0.dev3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4f79ee16532891ca5f0efb8670c0fd32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17038270, "upload_time": "2019-05-06T09:49:06", "upload_time_iso_8601": "2019-05-06T09:49:06.458776Z", "url": "https://files.pythonhosted.org/packages/ee/31/838887945a6aeeb33ce10e8dedb2ffb1f91835f01cdf6ea98104f08d6846/kaldi_active_grammar-0.1.0.dev3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.0.dev4": [ { "comment_text": "", "digests": { "md5": "2dd457eceb3e3035a939c112ce9a3c01", "sha256": "73d69ee7640e2318551e4c5fb9a863576e2452a83695e826f6b9c9394be1f858" }, "downloads": -1, "filename": "kaldi_active_grammar-0.1.0.dev4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2dd457eceb3e3035a939c112ce9a3c01", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17038392, "upload_time": "2019-05-07T07:23:26", "upload_time_iso_8601": "2019-05-07T07:23:26.811221Z", "url": "https://files.pythonhosted.org/packages/bd/2a/3d3ca1a34976fb6809b3fd6741b92df0249ecf3fe20b9ed5459094a25390/kaldi_active_grammar-0.1.0.dev4-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "98573babe4d444cd6c4e68e43f8f1a31", "sha256": "5a8269d48e43591c40bacd0ab231afe059d1d27c116000c901cf1e57a78cb12a" }, "downloads": -1, "filename": "kaldi_active_grammar-0.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "98573babe4d444cd6c4e68e43f8f1a31", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17024359, "upload_time": "2019-05-17T10:00:07", "upload_time_iso_8601": "2019-05-17T10:00:07.927755Z", "url": "https://files.pythonhosted.org/packages/12/c4/1698123829e721619022f9ebde281227eba74fe3681f7177e0ddb2967caa/kaldi_active_grammar-0.2.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2d8057fdb3ea88308086dfd2ee7554d3", "sha256": "6ce43bcb12502ed72448032734d222b52834be0fdfd3d57611563767fbf2aea7" }, "downloads": -1, "filename": "kaldi_active_grammar-0.2.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2d8057fdb3ea88308086dfd2ee7554d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 25194987, "upload_time": "2019-05-18T08:45:26", "upload_time_iso_8601": "2019-05-18T08:45:26.572599Z", "url": "https://files.pythonhosted.org/packages/25/0f/ab73d70c0d626105c8f5a8b7d44cb6ae352d871bdcf0538ac7db944f8299/kaldi_active_grammar-0.2.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06c13a43063581c36915f81b1521ce5f", "sha256": "ec775c39337c23f8ac9ba5368a08ca99c88be3cd9dadbf04e836c2287f87afaa" }, "downloads": -1, "filename": "kaldi_active_grammar-0.2.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "06c13a43063581c36915f81b1521ce5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17036422, "upload_time": "2019-05-18T08:44:41", "upload_time_iso_8601": "2019-05-18T08:44:41.500719Z", "url": "https://files.pythonhosted.org/packages/c8/91/9042bfefe7550bb7f5e97891553baf59ba43f11e3c4e25e5038831f0f4a7/kaldi_active_grammar-0.2.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6b8faa21fd1c5849b28b09ae819a9b79", "sha256": "53c08042a85489a128166138fb29bc7aa0910828f28f6552c3e9d35d930c7468" }, "downloads": -1, "filename": "kaldi_active_grammar-0.2.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6b8faa21fd1c5849b28b09ae819a9b79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 21368243, "upload_time": "2019-05-18T09:24:07", "upload_time_iso_8601": "2019-05-18T09:24:07.159990Z", "url": "https://files.pythonhosted.org/packages/f0/c2/af6ec0f4c40f7cffa4a2ea245b55c92fcbb35b50fba0fcf437299abc8d8f/kaldi_active_grammar-0.2.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ba52950a638756a72f0abd6f915e642", "sha256": "0758fae26d41d2281e69433f21a49ac7a275bcd0a98aedf53b2b755b183d3bcc" }, "downloads": -1, "filename": "kaldi_active_grammar-0.2.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "8ba52950a638756a72f0abd6f915e642", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17036425, "upload_time": "2019-05-18T09:24:55", "upload_time_iso_8601": "2019-05-18T09:24:55.124500Z", "url": "https://files.pythonhosted.org/packages/00/63/b550b32f283af18c8ebda87cf87cd882fa84688d7590e99fe9a271ec9f43/kaldi_active_grammar-0.2.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "242c8f0225f428065b79140484ce04fb", "sha256": "db409840eaa46610142dee17bda70a2a20344ff34ee868b50b39e315bcadb5c9" }, "downloads": -1, "filename": "kaldi_active_grammar-0.3.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "242c8f0225f428065b79140484ce04fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 21371252, "upload_time": "2019-06-12T08:59:23", "upload_time_iso_8601": "2019-06-12T08:59:23.396788Z", "url": "https://files.pythonhosted.org/packages/fe/18/0816cc9b482316f35bd3ea7447d66cf189ba59df03bf46e127eab8611988/kaldi_active_grammar-0.3.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ad1343767572b41d1bc8866b3ee22c0", "sha256": "7c0e8098e231a18aadad33064401ac4c70e2eac6a876962305b019c93ee42c78" }, "downloads": -1, "filename": "kaldi_active_grammar-0.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9ad1343767572b41d1bc8866b3ee22c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 17174423, "upload_time": "2019-06-12T08:59:11", "upload_time_iso_8601": "2019-06-12T08:59:11.071440Z", "url": "https://files.pythonhosted.org/packages/6d/52/c9c0972ec90a410eff82137c7212b2a0dd7f6a2e031fb6232177cdcc444d/kaldi_active_grammar-0.3.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "ef408d7f93e2014fec77853ffd8b779d", "sha256": "88e475fe6b83e610f7fe13cdaeefd30780bf54971ba230b4bbb8ca61e87fdf4f" }, "downloads": -1, "filename": "kaldi_active_grammar-0.4.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef408d7f93e2014fec77853ffd8b779d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 23952035, "upload_time": "2019-06-17T13:45:24", "upload_time_iso_8601": "2019-06-17T13:45:24.515183Z", "url": "https://files.pythonhosted.org/packages/86/d2/434c798e6b19760d2f05890987d9f2de9e24c9cd28433f46331985a104b1/kaldi_active_grammar-0.4.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcaa14724f84274d63fba0cbb8718c12", "sha256": "db1cc390a19f1206d14d049f4b3fde66b9ff65d3bad08e28451b72c82f074bca" }, "downloads": -1, "filename": "kaldi_active_grammar-0.4.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "fcaa14724f84274d63fba0cbb8718c12", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 17176422, "upload_time": "2019-06-17T13:40:59", "upload_time_iso_8601": "2019-06-17T13:40:59.421084Z", "url": "https://files.pythonhosted.org/packages/4c/40/9cd2e1f6b62939224e7453b10a48f019dc6c5d9a1f1e9ce35e8e3646a2f3/kaldi_active_grammar-0.4.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "0eb1c635c0c2ce55e17b057375b618f0", "sha256": "ca8b262f7f539ff4f030bfe255b371337fdcd1d9d18a4889862010a55fc77b83" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0eb1c635c0c2ce55e17b057375b618f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 29051337, "upload_time": "2019-07-13T12:35:49", "upload_time_iso_8601": "2019-07-13T12:35:49.563449Z", "url": "https://files.pythonhosted.org/packages/70/e0/54c6d6f797703a828c09773a99524a9ac517dfdf3fb15834b17a6588e7b7/kaldi_active_grammar-0.5.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d696e9db76b1ca04718a1efdf3c5410", "sha256": "a20ce75490ef265a379438d52bfe4d051e156be724c56bc2597d069859e7bdb4" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "8d696e9db76b1ca04718a1efdf3c5410", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31910778, "upload_time": "2019-07-13T12:38:42", "upload_time_iso_8601": "2019-07-13T12:38:42.363500Z", "url": "https://files.pythonhosted.org/packages/1e/95/ccb0d7bbc39236a5cedb4437c8465ce9813d74f54ecf0f0f67a60976dd3f/kaldi_active_grammar-0.5.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7cedc238c626017f05e7a2956018c5d7", "sha256": "49375d0d94318c1744a6cb23f47135642a5710bccb59b5367ad640662eb24664" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7cedc238c626017f05e7a2956018c5d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 29051335, "upload_time": "2019-07-17T08:55:35", "upload_time_iso_8601": "2019-07-17T08:55:35.392218Z", "url": "https://files.pythonhosted.org/packages/a9/ac/c377c997180a8c92bd234b32e83d948834aab4a672d404b3ba3b22f0c0b1/kaldi_active_grammar-0.5.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "155ca097c5b796830105ea0571134946", "sha256": "4549bd9588c596506f27004445a7c2d123f712636c27a72c23c4517988eb4595" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "155ca097c5b796830105ea0571134946", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31910847, "upload_time": "2019-07-17T08:56:51", "upload_time_iso_8601": "2019-07-17T08:56:51.187039Z", "url": "https://files.pythonhosted.org/packages/65/de/b6129284e24f94e1d4c4ac3a9cc59d44415cb446a42f080392113f4ae54b/kaldi_active_grammar-0.5.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "9efac6f7c3391084fc105b84139ad31f", "sha256": "3025b77f066fb9f3a6c6509162003fc3defcd56b73db7a98f18bfe5bde8bb3c5" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9efac6f7c3391084fc105b84139ad31f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 29051451, "upload_time": "2019-07-17T10:48:09", "upload_time_iso_8601": "2019-07-17T10:48:09.547083Z", "url": "https://files.pythonhosted.org/packages/6c/06/17e7cf8e0ffc0b91afdf5e28e0a00cbc80c72894604f2e967d6d2617870b/kaldi_active_grammar-0.5.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b9f9d1dc712fcaaf77c98e1d58f3e9c", "sha256": "f9ae025e1f276a56de69fe0dcc96c086c59c427bfbaec5176ed248147dbc840e" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9b9f9d1dc712fcaaf77c98e1d58f3e9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31910949, "upload_time": "2019-07-17T10:54:14", "upload_time_iso_8601": "2019-07-17T10:54:14.979149Z", "url": "https://files.pythonhosted.org/packages/2e/97/a95168bd781e6a753fa94606914c5c0bd32fec89aaddd60ad3dbe0eaf21e/kaldi_active_grammar-0.5.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "4be5e9561bc392241accbec02ddb0794", "sha256": "1d47fcf7dc8217eb92d83e639d682113a2b21cf66e27968a957f4d3fc5a22e85" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.3-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4be5e9561bc392241accbec02ddb0794", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 29051456, "upload_time": "2019-07-18T06:32:15", "upload_time_iso_8601": "2019-07-18T06:32:15.081158Z", "url": "https://files.pythonhosted.org/packages/62/86/e2fe1663c8582dcbf9b1c25746b7d70df6483641625c28a2832de721128b/kaldi_active_grammar-0.5.3-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae0e344cabfa01f7282a830a6e640348", "sha256": "dccd9b3578952bfdfecc6bbe98f4eb117fb69da959f15699b4585cde77fba718" }, "downloads": -1, "filename": "kaldi_active_grammar-0.5.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ae0e344cabfa01f7282a830a6e640348", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31910958, "upload_time": "2019-07-18T06:34:07", "upload_time_iso_8601": "2019-07-18T06:34:07.382862Z", "url": "https://files.pythonhosted.org/packages/39/98/d9e0c2bab2637b238b58139e6d022cfc7df9ebf403e758215ae8212d2a1c/kaldi_active_grammar-0.5.3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "a46659433e8ee50473bfc8a38e44e4d7", "sha256": "3223165b13132efa79e407d41bd4146f7b4677c521b491bb48d80d2f13d41c86" }, "downloads": -1, "filename": "kaldi_active_grammar-0.6.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a46659433e8ee50473bfc8a38e44e4d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27157656, "upload_time": "2019-08-03T10:32:00", "upload_time_iso_8601": "2019-08-03T10:32:00.514549Z", "url": "https://files.pythonhosted.org/packages/ae/60/a4aed650bfb04bd2ec33a59f7dcd4be01d85e69fe13653c5a2fa4ee48001/kaldi_active_grammar-0.6.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed7b1d18f85b4ff4c9e2f7045f98fcb4", "sha256": "0a5291dc5121c360c07bd2896f9d29d6b1031736262f84ee999c214f083d01c9" }, "downloads": -1, "filename": "kaldi_active_grammar-0.6.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ed7b1d18f85b4ff4c9e2f7045f98fcb4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31915370, "upload_time": "2019-08-03T10:33:24", "upload_time_iso_8601": "2019-08-03T10:33:24.640537Z", "url": "https://files.pythonhosted.org/packages/38/52/51034c06962c2ea21c8e3810095f8c6ca70ec5ac6edf2b214a76801d9d63/kaldi_active_grammar-0.6.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "1ed074bd7f74f9c106fed08e3dc0d0ac", "sha256": "c2fec8dd0ba602182ea62e6fb914b50afa1bd906cb5d315e0146b0e9c591c020" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1ed074bd7f74f9c106fed08e3dc0d0ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27159183, "upload_time": "2019-08-23T10:44:09", "upload_time_iso_8601": "2019-08-23T10:44:09.244086Z", "url": "https://files.pythonhosted.org/packages/bf/fc/f0bba9c3850fe6d8a51e4d0f386ed700b8af0f412d596f862eb3e44cadc7/kaldi_active_grammar-0.7.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "471c1917886de39a5a24dab5c99a13d7", "sha256": "9ea13f8307600592afea98ad8a79880b0cd334f66f87d85a260752acacafeed8" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "471c1917886de39a5a24dab5c99a13d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31916608, "upload_time": "2019-08-23T10:45:33", "upload_time_iso_8601": "2019-08-23T10:45:33.279619Z", "url": "https://files.pythonhosted.org/packages/a4/47/30bd09467851ec3336bfe5a64b8300d1ae6ebda99751a9b69e80c1957da9/kaldi_active_grammar-0.7.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "ad2bbbb624d0588db278b08c694556fb", "sha256": "2cec82699d076f117c50fb1e371d3ac456a003a967af2037dcb677a2432975d3" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad2bbbb624d0588db278b08c694556fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27159025, "upload_time": "2019-08-24T11:00:00", "upload_time_iso_8601": "2019-08-24T11:00:00.392646Z", "url": "https://files.pythonhosted.org/packages/16/7b/eec9baa3c764a798b4a49b4fc7ddca34028f0fd63c90354a5c930179f242/kaldi_active_grammar-0.7.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a57684ecefab5e9bfcf7cc7c2133433", "sha256": "bb71a088b51338659af302d8b2c9b9687325dcdec8e03f277374db870c4b0448" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4a57684ecefab5e9bfcf7cc7c2133433", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31916456, "upload_time": "2019-08-24T10:59:39", "upload_time_iso_8601": "2019-08-24T10:59:39.319164Z", "url": "https://files.pythonhosted.org/packages/d4/70/b6270cc9d7f41238785b9d0edea6c9c6efe000558e944befdb00b0fdf6d7/kaldi_active_grammar-0.7.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "753e26cd5b9aef59bf17a66d55b433b4", "sha256": "9b7838ca0de8077e93852bbebf52224814eacd4c60b5db1cd24c2521d9ced0ab" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "753e26cd5b9aef59bf17a66d55b433b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27200746, "upload_time": "2019-08-30T14:09:56", "upload_time_iso_8601": "2019-08-30T14:09:56.300254Z", "url": "https://files.pythonhosted.org/packages/05/67/9f20599d92c7ba62c84784c803570c3fb11e13b268a5a1e128c9ce54f342/kaldi_active_grammar-0.7.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aae1979f766ce00e34e249189d2c1d6", "sha256": "67a6710a1a19faa07b629706eab13b9e76df88fa9b24c104edd6704b10923238" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "3aae1979f766ce00e34e249189d2c1d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31916546, "upload_time": "2019-08-30T14:09:37", "upload_time_iso_8601": "2019-08-30T14:09:37.481865Z", "url": "https://files.pythonhosted.org/packages/d0/74/2b5cdd6d2476f321097e9c6bbb5e7585b4f7d5e8ed7012f0cbac447179fe/kaldi_active_grammar-0.7.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "8aceeb987d4e8118d00c3aee6d4a87e4", "sha256": "eed926f15b32df92d9aec0161f0de8651d8e15989fd3581ba29bc24fe3f6f32b" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.3-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8aceeb987d4e8118d00c3aee6d4a87e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27200680, "upload_time": "2019-09-06T10:32:16", "upload_time_iso_8601": "2019-09-06T10:32:16.552744Z", "url": "https://files.pythonhosted.org/packages/90/1e/3f3882abcce997ef3bf396a55d7e2fbb72cd252b313c9ef8bcc77702d019/kaldi_active_grammar-0.7.3-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38eda3f015cfcfa41bfb849990274bb4", "sha256": "af06b1e1f8821cf021915026ffff08b58a1fc42f744e7bb2f513a1328031595b" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "38eda3f015cfcfa41bfb849990274bb4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31916954, "upload_time": "2019-09-06T10:30:59", "upload_time_iso_8601": "2019-09-06T10:30:59.863857Z", "url": "https://files.pythonhosted.org/packages/43/16/335450ad0c2a3ac2a90655b7247e014a1d1bc304d44b57eb7a792ca5b8c6/kaldi_active_grammar-0.7.3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "daa3903923d1e37951e926f155fb01b4", "sha256": "47c92613acae04188b9f52d667df2811f8e921348f0ebc5296860d02842af51c" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.4-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "daa3903923d1e37951e926f155fb01b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 27200941, "upload_time": "2019-09-07T12:46:54", "upload_time_iso_8601": "2019-09-07T12:46:54.059860Z", "url": "https://files.pythonhosted.org/packages/bd/50/43da5184eb8d7433ce438e5f6905f94e6797b8133d9b3df253f6073ba747/kaldi_active_grammar-0.7.4-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c971f52600d66ffefb5df4b0fb85a60", "sha256": "eb274bb9aa58d075e50ea662c3f8ef99575b7a694746395b6b929592f79495d4" }, "downloads": -1, "filename": "kaldi_active_grammar-0.7.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2c971f52600d66ffefb5df4b0fb85a60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, <3", "size": 31916962, "upload_time": "2019-09-07T12:47:39", "upload_time_iso_8601": "2019-09-07T12:47:39.303445Z", "url": "https://files.pythonhosted.org/packages/6b/15/a3fd874243b221fc9b46e3177fa752631ce8363bd99075047c45d8152762/kaldi_active_grammar-0.7.4-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "86b8fda76df72bf1074463f36e474768", "sha256": "bb34fcd0afd8cab44a550570432702452654b5ab36d69e990d969068ea22070e" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "86b8fda76df72bf1074463f36e474768", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 27215593, "upload_time": "2019-09-29T10:01:21", "upload_time_iso_8601": "2019-09-29T10:01:21.076422Z", "url": "https://files.pythonhosted.org/packages/6d/7f/dd4471c3a500a1c8d94821d3d6fe2eac66c2ab073b23e111626f7e5a939a/kaldi_active_grammar-1.0.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59089ac337c45e470b04fa86a4a8d5d3", "sha256": "63fa0e28a6a8eb06f18e013e14c4229137965ed5ed6c1dc4940e487e8e4b5223" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "59089ac337c45e470b04fa86a4a8d5d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31822884, "upload_time": "2019-09-29T10:03:00", "upload_time_iso_8601": "2019-09-29T10:03:00.334866Z", "url": "https://files.pythonhosted.org/packages/bd/54/6c25eb638cccdb5ae5cf053d3a66a66f0ba9f9dcea9ef5e82dd5af1a15c9/kaldi_active_grammar-1.0.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "0a5c8e02375a349806d61727dc54378b", "sha256": "0d26461a6f1b451cf7cb98c51ca252b976d29ade16f36cd03afe511393b8a7fd" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0a5c8e02375a349806d61727dc54378b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 27216271, "upload_time": "2019-10-25T09:51:43", "upload_time_iso_8601": "2019-10-25T09:51:43.873639Z", "url": "https://files.pythonhosted.org/packages/53/b1/c1797270d8c81bf6550f1bc2e3183e27ec1ecdf3ca476d8f6e00dfe4c929/kaldi_active_grammar-1.0.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f32e9ed34335bdf6d5d4b6d30f04f40", "sha256": "23b56c601fc3d20675143ce0337d18f5b5e04fc5d695c36987ab54ab029cdf87" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9f32e9ed34335bdf6d5d4b6d30f04f40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31823091, "upload_time": "2019-10-25T09:54:04", "upload_time_iso_8601": "2019-10-25T09:54:04.852223Z", "url": "https://files.pythonhosted.org/packages/14/fc/1f182e0e224528c59313419a0751e1ebf4f208b11fff2806bc5d1e54bbba/kaldi_active_grammar-1.0.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "19da8769bd57e0832f89ba3ba81ac614", "sha256": "d5efbc5d311a9f54dc60c4b0f5dbb09049ad335f1b257ff4b017e48fbce196a4" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "19da8769bd57e0832f89ba3ba81ac614", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 27216445, "upload_time": "2019-11-13T10:32:52", "upload_time_iso_8601": "2019-11-13T10:32:52.364025Z", "url": "https://files.pythonhosted.org/packages/fd/61/8ab1ac4cec2e4ec359899ed360b67c3a965987e051461d0ca8d6c941196d/kaldi_active_grammar-1.0.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f79c4e8ef57ba40ba89987069ac9887", "sha256": "999147569f5b84b186025c23a42c567d7e460a8e867a5e1a523bf008067ebe55" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "6f79c4e8ef57ba40ba89987069ac9887", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31822804, "upload_time": "2019-11-13T10:35:21", "upload_time_iso_8601": "2019-11-13T10:35:21.768847Z", "url": "https://files.pythonhosted.org/packages/62/a0/d65c81048d088ea0a5e1e930f1c4fbbde9bf3fe7a7c74e4bfd8bbea11b12/kaldi_active_grammar-1.0.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "bdaefe5eaf90e8eadd185464a01f127c", "sha256": "cc1b082e28ef447df9d549d08bbc8aa3d420dead8dfb93308e0980e66b1e1c71" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.3-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bdaefe5eaf90e8eadd185464a01f127c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 27216475, "upload_time": "2019-11-27T11:31:00", "upload_time_iso_8601": "2019-11-27T11:31:00.990883Z", "url": "https://files.pythonhosted.org/packages/58/7a/2984a778f35d8f8716e68d6b69ad9b9d3d9508d52de77b2638c8b6296f9a/kaldi_active_grammar-1.0.3-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2de6ef2b7dbf7a9d1212a32721d21371", "sha256": "71ea5917dc7175135e515616c132f62c28268f899ff52ffa70c148075937ce64" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2de6ef2b7dbf7a9d1212a32721d21371", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31822932, "upload_time": "2019-11-27T11:27:16", "upload_time_iso_8601": "2019-11-27T11:27:16.076957Z", "url": "https://files.pythonhosted.org/packages/a0/68/ea7b7fab56b6fa085cb557110f4825aad0ae3d2a5e343e610ddac18e7225/kaldi_active_grammar-1.0.3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "a07ad1c635d7e46e6719d7c0e29ed626", "sha256": "a62a1bdd6c373fe455e79d5b02e273def6352550e2d3073629559d9f20ce6805" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.4-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a07ad1c635d7e46e6719d7c0e29ed626", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 30160211, "upload_time": "2019-11-29T11:01:02", "upload_time_iso_8601": "2019-11-29T11:01:02.507456Z", "url": "https://files.pythonhosted.org/packages/1b/68/36b575e67ef702f7729ec5ff9d4f79f87a91c0b62257e89f4e4b339eb5f3/kaldi_active_grammar-1.0.4-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dd57522f22d11f8d23d12d1eb483167", "sha256": "125747dd3adecfc83576e676347adc0ff81812563e951f0fdba02e28e56dcbcd" }, "downloads": -1, "filename": "kaldi_active_grammar-1.0.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7dd57522f22d11f8d23d12d1eb483167", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31822570, "upload_time": "2019-11-29T11:46:54", "upload_time_iso_8601": "2019-11-29T11:46:54.842048Z", "url": "https://files.pythonhosted.org/packages/4b/57/fbefdc92e6d7cb9af14776152e363210314adfa109c712323dd08def288f/kaldi_active_grammar-1.0.4-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f049f32104f36723c2f63d9a0884a280", "sha256": "bcafc36cfd8950c012bf42784863afa0bb99647d9e88c74f4249d4386825bec9" }, "downloads": -1, "filename": "kaldi_active_grammar-1.1.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f049f32104f36723c2f63d9a0884a280", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 30161778, "upload_time": "2019-12-15T06:31:30", "upload_time_iso_8601": "2019-12-15T06:31:30.535162Z", "url": "https://files.pythonhosted.org/packages/17/7f/524fa15c59f3e885ffd0c539ad7605ce23a74e33f540a271640d575a8676/kaldi_active_grammar-1.1.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7321eeb2fc3f12d7cdbc843263b44c52", "sha256": "6e6c89512a1ed7e6ad7c811b0d0d3e7990d55c2fad6fcc8105341c23b485ae03" }, "downloads": -1, "filename": "kaldi_active_grammar-1.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7321eeb2fc3f12d7cdbc843263b44c52", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31824127, "upload_time": "2019-12-15T06:31:29", "upload_time_iso_8601": "2019-12-15T06:31:29.676072Z", "url": "https://files.pythonhosted.org/packages/92/ff/28679f5056983baaff03baffd31e357c8bb75df8d3997faab42da840f665/kaldi_active_grammar-1.1.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0655e305475c5ecb55c0342ace9b9577", "sha256": "05f9370c90bb6ff69612aee1755d89582b51f8aaed8aacbc79dce09dcb8046a3" }, "downloads": -1, "filename": "kaldi_active_grammar-1.2.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0655e305475c5ecb55c0342ace9b9577", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 30161776, "upload_time": "2019-12-21T08:02:41", "upload_time_iso_8601": "2019-12-21T08:02:41.936403Z", "url": "https://files.pythonhosted.org/packages/36/01/f6722a950f48124ac688f6fc8d90e7def809fe607effe0a80d7e86adb983/kaldi_active_grammar-1.2.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a722a1a120af7268512f6bc2774b8bc1", "sha256": "f487b7812e8e874f13ecfd48ff8417ed8d2686b0a2edaabb79e00b00d76bd5e7" }, "downloads": -1, "filename": "kaldi_active_grammar-1.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a722a1a120af7268512f6bc2774b8bc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 31824125, "upload_time": "2019-12-21T08:05:03", "upload_time_iso_8601": "2019-12-21T08:05:03.748628Z", "url": "https://files.pythonhosted.org/packages/d4/78/680a95655c64a758a735babc154581f1ffcf3e62a51517e8ff34ec7f75f6/kaldi_active_grammar-1.2.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.1.dev1": [ { "comment_text": "", "digests": { "md5": "10c3b48431555e052e010676f673b073", "sha256": "b309e3265c628dadb841f67771fd20a6a69d70b82d8dd6eb7bbcadc598ec00f6" }, "downloads": -1, "filename": "kaldi_active_grammar-1.2.1.dev1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "10c3b48431555e052e010676f673b073", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 30758453, "upload_time": "2020-01-08T08:27:08", "upload_time_iso_8601": "2020-01-08T08:27:08.088702Z", "url": "https://files.pythonhosted.org/packages/50/b6/d4825de8b5e0449aae0f28e3377c43e60940f495f0d20869dc20eba5c4fb/kaldi_active_grammar-1.2.1.dev1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "81fe884c9837a9c44d4c2d8a8b79b1c7", "sha256": "b6a20885096d20289fe040243a5db711d90c6543c461383fba573381f6a9179c" }, "downloads": -1, "filename": "kaldi_active_grammar-1.3.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "81fe884c9837a9c44d4c2d8a8b79b1c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 26538930, "upload_time": "2020-01-11T11:25:26", "upload_time_iso_8601": "2020-01-11T11:25:26.082384Z", "url": "https://files.pythonhosted.org/packages/7b/0f/49c636783313b52c404f65c53968d70cf723a4491a75df3503a8a1f33a5d/kaldi_active_grammar-1.3.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c56e805e230a5158895cf1c9761ec995", "sha256": "dc937d4ea42a31ca8f1c235d909ccaa398b5d2e15ab39a3cd64f768cbe76c0cf" }, "downloads": -1, "filename": "kaldi_active_grammar-1.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c56e805e230a5158895cf1c9761ec995", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23542070, "upload_time": "2020-01-11T11:13:10", "upload_time_iso_8601": "2020-01-11T11:13:10.684294Z", "url": "https://files.pythonhosted.org/packages/ba/23/73d75bcb7392b2509e7681cb9fba3002dd46d1321034f69ae98291c89211/kaldi_active_grammar-1.3.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "18ac4eaed22f8df4ff538e2cad17e0b1", "sha256": "67adaa4b57ae4d59e6dcafae64b741c90a5881a464a2cd26aeb79333138e89f6" }, "downloads": -1, "filename": "kaldi_active_grammar-1.4.0-py2.py3-none-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "18ac4eaed22f8df4ff538e2cad17e0b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 10681239, "upload_time": "2020-02-29T10:46:07", "upload_time_iso_8601": "2020-02-29T10:46:07.674717Z", "url": "https://files.pythonhosted.org/packages/05/4e/da80b5dde5f9c4f230f2e8a7566caca942e9f6d337cf329b5a7aecb4a3bc/kaldi_active_grammar-1.4.0-py2.py3-none-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b187ba6101e87efa012b6ab23bac471b", "sha256": "6c6c983c1499fecf87791d04a63c0d432da3b199ff348567b91b2b75c78a675c" }, "downloads": -1, "filename": "kaldi_active_grammar-1.4.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b187ba6101e87efa012b6ab23bac471b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 21717161, "upload_time": "2020-02-29T10:13:31", "upload_time_iso_8601": "2020-02-29T10:13:31.878926Z", "url": "https://files.pythonhosted.org/packages/0b/a8/8d3cb0a1106659987ef38f1ff76ce3bb4c1245f052d617d92909b2479e42/kaldi_active_grammar-1.4.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "313494b06bbb14614be08e22aa9004fa", "sha256": "641aad8ee41c2f5ccfa6c36531159c27e9f1fab76b53dc535274cdf65f481f7c" }, "downloads": -1, "filename": "kaldi_active_grammar-1.4.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "313494b06bbb14614be08e22aa9004fa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23690984, "upload_time": "2020-02-29T10:12:29", "upload_time_iso_8601": "2020-02-29T10:12:29.609675Z", "url": "https://files.pythonhosted.org/packages/f0/75/29e0dabac70972036dfeffab22a688f0537273497854e652f53967a1c3fa/kaldi_active_grammar-1.4.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "d3f115610f67456eabe94459e9262cb8", "sha256": "914f42993a6465b2d3d5d975a7fe63df3652034b1a98b3042cac92f2ff0b30db" }, "downloads": -1, "filename": "kaldi_active_grammar-1.5.0-py2.py3-none-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d3f115610f67456eabe94459e9262cb8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 10821555, "upload_time": "2020-05-30T11:36:19", "upload_time_iso_8601": "2020-05-30T11:36:19.187776Z", "url": "https://files.pythonhosted.org/packages/86/81/2ee7681458a7ed3be757c90d400dc690879cf490bd564a3ebbac8bac3b65/kaldi_active_grammar-1.5.0-py2.py3-none-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a085158e6b5bce052e177ef0b532268", "sha256": "767279f4c9de6b0de58d95ccad57eb0abf9f330d2d6db1e4856eeb0079eed5f1" }, "downloads": -1, "filename": "kaldi_active_grammar-1.5.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3a085158e6b5bce052e177ef0b532268", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 21954572, "upload_time": "2020-05-30T11:33:54", "upload_time_iso_8601": "2020-05-30T11:33:54.034687Z", "url": "https://files.pythonhosted.org/packages/88/de/5533f5bf1431658b793303eb44e845e3ba7e7a8127e0bc6f034d0dbc20d6/kaldi_active_grammar-1.5.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af4d68708fd7b0e257c28268bfd831ad", "sha256": "4545b5dd0b92a957fff0c0b094212ad38f48fb639fb1c63a32d73689d5a912aa" }, "downloads": -1, "filename": "kaldi_active_grammar-1.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "af4d68708fd7b0e257c28268bfd831ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23792295, "upload_time": "2020-05-30T11:33:29", "upload_time_iso_8601": "2020-05-30T11:33:29.910813Z", "url": "https://files.pythonhosted.org/packages/9f/f1/221c622392f01963fe791011082b07b6b5f25dcf5e69808ffd5a38ce2fdf/kaldi_active_grammar-1.5.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "0b889f2d224257bdb82d32f1cafa3f7b", "sha256": "947e9ed25297dc57b4d35e568aa62af709c977b8457a559ecda0fad34a03e060" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0b889f2d224257bdb82d32f1cafa3f7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 7939077, "upload_time": "2020-07-12T13:41:55", "upload_time_iso_8601": "2020-07-12T13:41:55.676357Z", "url": "https://files.pythonhosted.org/packages/c8/a0/d3f5a9194a995187bc546aaf5e4eef4e90024f783d9df557a3f277b979b3/kaldi_active_grammar-1.6.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2159f0b1631c768cbd1a84cafd1c827b", "sha256": "3bedb178a54d71cdb9866196b032942cfc7d52f0936bc26669df911decaa344c" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2159f0b1631c768cbd1a84cafd1c827b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18308268, "upload_time": "2020-07-12T13:42:04", "upload_time_iso_8601": "2020-07-12T13:42:04.058092Z", "url": "https://files.pythonhosted.org/packages/13/09/12f6907131a7cd6c27e52debea04258d819e2402ac8261c05bb8a26e32f0/kaldi_active_grammar-1.6.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1573b4d67cb1d8ad14211c3ee460e912", "sha256": "d55ec9f175393d13896d3b4bfea0f9a1925bc976ba44eee86d840f941eb867c5" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1573b4d67cb1d8ad14211c3ee460e912", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23640332, "upload_time": "2020-07-12T13:42:14", "upload_time_iso_8601": "2020-07-12T13:42:14.492200Z", "url": "https://files.pythonhosted.org/packages/7a/b2/4b5e29b4f1e10ec273bbeff0c4c7674cc03ebdf1f9c7858a95213379bf16/kaldi_active_grammar-1.6.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "16c5b5d911e5fd2b73aa7a2b7d45cdc9", "sha256": "da82fb88d5f59e1b643ede1a527e108ff95812ad314c83578ce4a45bc283b6ba" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.1-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "16c5b5d911e5fd2b73aa7a2b7d45cdc9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 7938500, "upload_time": "2020-07-19T14:29:51", "upload_time_iso_8601": "2020-07-19T14:29:51.431290Z", "url": "https://files.pythonhosted.org/packages/9d/df/dbe6a49c39d881810503cd8d7c093ce054f375b0d16cf7056e6288d5c14d/kaldi_active_grammar-1.6.1-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5fdf7d5dee1499ad9ebad67f9e50fed", "sha256": "91f5b1fc63b440260394805eac436880250efd91a9b4eba572f959cf37b87ef9" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e5fdf7d5dee1499ad9ebad67f9e50fed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18308269, "upload_time": "2020-07-19T14:29:59", "upload_time_iso_8601": "2020-07-19T14:29:59.756585Z", "url": "https://files.pythonhosted.org/packages/27/50/c077a48df128b9aa75905da539eb9143c433986228f5c1f44622daeda43b/kaldi_active_grammar-1.6.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a82e619ccf9d614cc1c6afb9c60ab0ad", "sha256": "c23bce1f4b4d510f52e0dd5ae44cead75ade581bb875f9da791f6531f8bbccc7" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a82e619ccf9d614cc1c6afb9c60ab0ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23832211, "upload_time": "2020-07-19T14:30:09", "upload_time_iso_8601": "2020-07-19T14:30:09.958488Z", "url": "https://files.pythonhosted.org/packages/d0/15/147f84366fdc969e015adcd2dba286a510d020eee624bde61db9911823e9/kaldi_active_grammar-1.6.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "961a1363e69e3ed4e674e6ce791e3ee3", "sha256": "9e61bc32007a921196f17cb7fe66ee5bd57fca327592c69aa214c957685480cf" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.2-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "961a1363e69e3ed4e674e6ce791e3ee3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8063799, "upload_time": "2020-07-21T03:19:50", "upload_time_iso_8601": "2020-07-21T03:19:50.500259Z", "url": "https://files.pythonhosted.org/packages/e9/df/9f5cedbeb35bb601f53a0406cbe52a5de41cccfe53e01655f70ba0b5a742/kaldi_active_grammar-1.6.2-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82a020e217a2ce49a1b48d3a081eed76", "sha256": "0b4d6427b838e5e0ab7005c555b071f468ffddcb434725b0871750123074dfd5" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "82a020e217a2ce49a1b48d3a081eed76", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18308270, "upload_time": "2020-07-21T03:19:58", "upload_time_iso_8601": "2020-07-21T03:19:58.759128Z", "url": "https://files.pythonhosted.org/packages/11/be/f242768c22795ee794690675364a182b384d8e13466e90c4f7368f8bb449/kaldi_active_grammar-1.6.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1eb4c1ca671b426ba2997976141cfc36", "sha256": "3060c9ca3006550ebf4eb47831038d3cdb8a5c9c4b3b57dab2e876f7ca152fcd" }, "downloads": -1, "filename": "kaldi_active_grammar-1.6.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1eb4c1ca671b426ba2997976141cfc36", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23832215, "upload_time": "2020-07-21T03:20:09", "upload_time_iso_8601": "2020-07-21T03:20:09.632068Z", "url": "https://files.pythonhosted.org/packages/81/5d/3690101a78d235a553246de4cec6ded3225a58df4d3cb48473e2b684239c/kaldi_active_grammar-1.6.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "cee7a44e3a94f468c1b6af863377e1cd", "sha256": "74590a9197e704599195e60e016aa8886bb141c5d4b7b42d4c0ac30de536b506" }, "downloads": -1, "filename": "kaldi_active_grammar-1.7.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cee7a44e3a94f468c1b6af863377e1cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8113557, "upload_time": "2020-08-01T13:58:39", "upload_time_iso_8601": "2020-08-01T13:58:39.812951Z", "url": "https://files.pythonhosted.org/packages/1f/ab/f580e4e1c4e7c51d0043c05010d738b6eb38bf436ad633ffd8de4b7e922c/kaldi_active_grammar-1.7.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c76a42dd076c284879eb98722adfc9c", "sha256": "39b9b58ebafaa944165433f4c1201f24c5cf8a471989497af20be889b7eee556" }, "downloads": -1, "filename": "kaldi_active_grammar-1.7.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5c76a42dd076c284879eb98722adfc9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18349723, "upload_time": "2020-08-01T13:58:47", "upload_time_iso_8601": "2020-08-01T13:58:47.789788Z", "url": "https://files.pythonhosted.org/packages/ac/e3/72c752e74a763e6dfc388a4241c33d1a291724668e019a0432ca606d5fd6/kaldi_active_grammar-1.7.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d00df7f8bd0385519e08af1c342b709b", "sha256": "9bc78148d1d7b8029daf4aa76c3d3b764f4a45320086e91c6f312c91b09278a6" }, "downloads": -1, "filename": "kaldi_active_grammar-1.7.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d00df7f8bd0385519e08af1c342b709b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23864454, "upload_time": "2020-08-01T13:58:57", "upload_time_iso_8601": "2020-08-01T13:58:57.876149Z", "url": "https://files.pythonhosted.org/packages/7b/64/4a09061d49cfa979f6015f8fba5d62a98d9e83f77c8b8d18de0dca70374b/kaldi_active_grammar-1.7.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "16e9d980479f965285ca1b6b5a7f0474", "sha256": "02fafce9ef551fe92ff3bc25792067c2b603e072407dc78ac44c4737e4a6a0b1" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "16e9d980479f965285ca1b6b5a7f0474", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8114100, "upload_time": "2020-09-05T14:20:57", "upload_time_iso_8601": "2020-09-05T14:20:57.246528Z", "url": "https://files.pythonhosted.org/packages/04/0e/e4309dce2b9362b90b0bc0c53cc28275168e003514cd5baab4888ce050ca/kaldi_active_grammar-1.8.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f3a44a4dda77476601ef1f68aed81e5", "sha256": "df6d94708d506b862e7d2ac4a234d355d9320a65040d87dafed9984c0f7ddb8f" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1f3a44a4dda77476601ef1f68aed81e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18350256, "upload_time": "2020-09-05T14:21:05", "upload_time_iso_8601": "2020-09-05T14:21:05.202739Z", "url": "https://files.pythonhosted.org/packages/21/77/0275a0c40ef633ad8c85b1fcf7a391565538e7fd51a87f811dc0617f0227/kaldi_active_grammar-1.8.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5afd257816868fbd0c8d7ee8ca4748e", "sha256": "8ae64d7e2cfb83dbd4425cda4c0ea52e814c905a9b61eabdc811bdd39e2b75fc" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a5afd257816868fbd0c8d7ee8ca4748e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23864913, "upload_time": "2020-09-05T14:21:15", "upload_time_iso_8601": "2020-09-05T14:21:15.479640Z", "url": "https://files.pythonhosted.org/packages/e9/82/3666e2e2ee42d117caf34e33f1d67ea383dcbafb30375ce5f899f0986a60/kaldi_active_grammar-1.8.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "da5a6344f5f3e7e18f3cbc892951696d", "sha256": "6e6eb2f357730b83cd80bc0518510190266fa004093c34a6cc150d889a3b8dd9" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.1-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "da5a6344f5f3e7e18f3cbc892951696d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8114131, "upload_time": "2020-09-12T15:24:49", "upload_time_iso_8601": "2020-09-12T15:24:49.105724Z", "url": "https://files.pythonhosted.org/packages/d6/d3/6bf202d4cb48a895b2d1f4680dc614c695ae811a9523ada63c2c95012537/kaldi_active_grammar-1.8.1-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9705db6e31eba44698872017a8003b8e", "sha256": "cb8fd19a70e961d5356f69fb1a7164b194e1485ca75e9752eadf1fd01ed47a2f" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.1-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9705db6e31eba44698872017a8003b8e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 18350287, "upload_time": "2020-09-12T15:24:57", "upload_time_iso_8601": "2020-09-12T15:24:57.225511Z", "url": "https://files.pythonhosted.org/packages/7b/15/4111a38d846c0d0ee67f85f913d7f23fd83a0850b9344119ec43c4394b7a/kaldi_active_grammar-1.8.1-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16d6e22114c487511a1277d181dc87a7", "sha256": "4d10473a571da7cf37770d37a9907a07b6561a575af8860fc77ca9c49d952263" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "16d6e22114c487511a1277d181dc87a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 23864943, "upload_time": "2020-09-12T15:25:07", "upload_time_iso_8601": "2020-09-12T15:25:07.185507Z", "url": "https://files.pythonhosted.org/packages/43/53/c434449d85dbd6fa36c63944509669b62d35ce9a0c3cf28df22bb0fc06bd/kaldi_active_grammar-1.8.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "cfa79d1dafb3fc670dd08fdd61903e25", "sha256": "90af214cadfa466c88cc908e9257bbd37bf1e6d9eb1e510b59f43714e3cfacc7" }, "downloads": -1, "filename": "kaldi_active_grammar-1.8.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "cfa79d1dafb3fc670dd08fdd61903e25", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 24087233, "upload_time": "2021-01-02T15:36:36", "upload_time_iso_8601": "2021-01-02T15:36:36.989275Z", "url": "https://files.pythonhosted.org/packages/8f/d0/ccc9f3542a9e7ca983ce4e2108567dac46c0edbf790ded2336554eabab97/kaldi_active_grammar-1.8.3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "aab2c15e6ac746241b8503365538f66f", "sha256": "c4d7b52406cc1ff43ca18f231037398025f74fe10c7493343dee21bb23a48e6d" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aab2c15e6ac746241b8503365538f66f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 9003716, "upload_time": "2021-03-21T12:52:28", "upload_time_iso_8601": "2021-03-21T12:52:28.084953Z", "url": "https://files.pythonhosted.org/packages/92/64/d771135ba0305afa5a6bcc8d27b9b5fab74250af4085f95a11a17ac6fa7c/kaldi_active_grammar-2.0.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a46fb6f0e5bfb342e7014b3f74e77c4", "sha256": "c29044730e44ee46c44343ef0562653ebf24b45cf989e60545163d6364b7d838" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7a46fb6f0e5bfb342e7014b3f74e77c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 11189321, "upload_time": "2021-03-21T12:51:51", "upload_time_iso_8601": "2021-03-21T12:51:51.624457Z", "url": "https://files.pythonhosted.org/packages/3e/31/7556559d8b7e2147bd669f28ae728f2042a9e4b2f57a317b4721fb957021/kaldi_active_grammar-2.0.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "433f8fbcb6d73465de542d5f09dcef05", "sha256": "f5e3f19a8ced5f4a8b30b4de9ca700038f3723fd5cc1870189bb6ce68a641823" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "433f8fbcb6d73465de542d5f09dcef05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 25116717, "upload_time": "2021-03-21T12:50:52", "upload_time_iso_8601": "2021-03-21T12:50:52.751278Z", "url": "https://files.pythonhosted.org/packages/bb/d6/c8ceceb09df154821d7cdd94dcc05704db2f1a194f6cae4eff192240b32e/kaldi_active_grammar-2.0.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "3cbe0d24fca3ea1c47fa0025b64feb27", "sha256": "4415a03dac48054ff06acffc6c7c7fb806056b31c659dd1dd5093914cd05fd66" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.2-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3cbe0d24fca3ea1c47fa0025b64feb27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 9003709, "upload_time": "2021-03-31T01:22:01", "upload_time_iso_8601": "2021-03-31T01:22:01.397551Z", "url": "https://files.pythonhosted.org/packages/6e/47/65676913baeba388e66294118fc98448bf8b51a93bbc1de1186f7a09deaa/kaldi_active_grammar-2.0.2-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0d806e5cb8e4fcb12d20827a4500d60", "sha256": "1162590de14653386d17119de75b4501357e7fe598eb5f74db30e95f72d3c115" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.2-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d0d806e5cb8e4fcb12d20827a4500d60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 15377629, "upload_time": "2021-03-31T01:22:08", "upload_time_iso_8601": "2021-03-31T01:22:08.505230Z", "url": "https://files.pythonhosted.org/packages/47/67/6add3f635bca4e82a4b03a379a2b7307015beacbf37b0bde9328ad511dfa/kaldi_active_grammar-2.0.2-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "143b4f3dc2a625dad16dd1e09757ab47", "sha256": "4c1944ace7670b53dfa2fe0666368a07035b27aba224ad2bec66c4e3465e2f08" }, "downloads": -1, "filename": "kaldi_active_grammar-2.0.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "143b4f3dc2a625dad16dd1e09757ab47", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 25116716, "upload_time": "2021-03-31T01:22:19", "upload_time_iso_8601": "2021-03-31T01:22:19.136750Z", "url": "https://files.pythonhosted.org/packages/3e/f9/deccfb6ae89636ae8440b6eeaf0cca1621d5c94add24470b1419f507dd62/kaldi_active_grammar-2.0.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "b6c128839b9ce81697d474e1ff52e717", "sha256": "7b5e0127a3a695fd31dd41d157bb4db485b358860f88db6ec8fa0dbc34841d9d" }, "downloads": -1, "filename": "kaldi_active_grammar-2.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b6c128839b9ce81697d474e1ff52e717", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 9033298, "upload_time": "2021-04-05T01:22:23", "upload_time_iso_8601": "2021-04-05T01:22:23.080037Z", "url": "https://files.pythonhosted.org/packages/69/b3/48fcc17d54c2b3333e208f33a851a740853b8f3be58d63ecb54870452fac/kaldi_active_grammar-2.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b85e1434dee57040c5dcfd565fdb56b4", "sha256": "df0a3bc22c8e17f0478d0ff65937fd6916e0a97fe5137ebe991c9f60e88c3813" }, "downloads": -1, "filename": "kaldi_active_grammar-2.1.0-py2.py3-none-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b85e1434dee57040c5dcfd565fdb56b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 15412647, "upload_time": "2021-04-05T01:22:43", "upload_time_iso_8601": "2021-04-05T01:22:43.280682Z", "url": "https://files.pythonhosted.org/packages/5d/c1/876bec7b5e01fbd3a8513240843dca72630c7e8ad10c269f5cc7bfa5303d/kaldi_active_grammar-2.1.0-py2.py3-none-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65b7520fe90bcd2a1c2572a04b144cb9", "sha256": "013192a5f2ec1ceabd29d9e1523743346c738a578cfd405b1ea981783f3b19d9" }, "downloads": -1, "filename": "kaldi_active_grammar-2.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "65b7520fe90bcd2a1c2572a04b144cb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 25118548, "upload_time": "2021-04-05T01:23:22", "upload_time_iso_8601": "2021-04-05T01:23:22.731354Z", "url": "https://files.pythonhosted.org/packages/57/6d/b4b5acbf76fba7966707b3b9dce346aaa295b99d284432360e1a42aaf0b0/kaldi_active_grammar-2.1.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "5430f5bd87b6261963fa98bdb1ef279c", "sha256": "e06902f58b3180da730097c3a6f8ec19f9dd229d97f454f8cc9c5c97ce39aa8b" }, "downloads": -1, "filename": "kaldi_active_grammar-3.0.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5430f5bd87b6261963fa98bdb1ef279c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8711350, "upload_time": "2021-10-31T05:23:08", "upload_time_iso_8601": "2021-10-31T05:23:08.129270Z", "url": "https://files.pythonhosted.org/packages/3e/67/1cf786b21a27427c8c2797e1db901bbf2e3c52c3c66a6eae5d7f2466bd8c/kaldi_active_grammar-3.0.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad408b6adc16f850e4e02872f17b1303", "sha256": "196274c73d41b1e1c58d6d01b14b37bb997edfcef087fa77c3e1e715760d5824" }, "downloads": -1, "filename": "kaldi_active_grammar-3.0.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad408b6adc16f850e4e02872f17b1303", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 14648051, "upload_time": "2021-10-31T05:23:15", "upload_time_iso_8601": "2021-10-31T05:23:15.544813Z", "url": "https://files.pythonhosted.org/packages/96/bf/abda0f7012c43be8348332418943d91ee4aea2eee6b56b54f25c75b80c7b/kaldi_active_grammar-3.0.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec449f5320875a02b629be66ff7bbe5f", "sha256": "5d6b17e1e33e8c99052e767e586fa924e8fb44d998a37e120c2dc7047b3a7838" }, "downloads": -1, "filename": "kaldi_active_grammar-3.0.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ec449f5320875a02b629be66ff7bbe5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 25117565, "upload_time": "2021-10-31T05:23:26", "upload_time_iso_8601": "2021-10-31T05:23:26.535800Z", "url": "https://files.pythonhosted.org/packages/4c/bf/226a848894f1ab9c92269c402ec7ae479e3b20722f64146339db2c231c65/kaldi_active_grammar-3.0.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "483772be4a1283c618c3db72c4e50710", "sha256": "d3f1382b49c75fed0486aea66b0c339e825b37004f1c9284bef18267dec1d2b5" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "483772be4a1283c618c3db72c4e50710", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8711531, "upload_time": "2021-11-24T10:40:45", "upload_time_iso_8601": "2021-11-24T10:40:45.051487Z", "url": "https://files.pythonhosted.org/packages/78/c4/85c3420f45a3087beed19a6f6381b28ec16688dea9cbe1a64b08230aafa2/kaldi_active_grammar-3.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c05e704773694ee6646b069c9e6793c", "sha256": "3200d8695c7a6dd5d9a8a89912c108b709d13e1afb4c49d0f1e589d87b8a048f" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2c05e704773694ee6646b069c9e6793c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 14648244, "upload_time": "2021-11-24T10:40:58", "upload_time_iso_8601": "2021-11-24T10:40:58.589866Z", "url": "https://files.pythonhosted.org/packages/a1/01/8bb0d0bb1a995e3761c7e53bde8824a6f773a3cd5bc29a6473913b40341e/kaldi_active_grammar-3.1.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b5cba0ed600f4d210cf228d7b257a15", "sha256": "9fed05d3453bfd0b6c500752debd8ad3b3742a46f4c45cf3684406ab0dfa4e4f" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9b5cba0ed600f4d210cf228d7b257a15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8990863, "upload_time": "2021-11-24T10:41:06", "upload_time_iso_8601": "2021-11-24T10:41:06.946843Z", "url": "https://files.pythonhosted.org/packages/3a/2a/09584143066390da90c51555c1eeb35e090fe4b38108e856fe092b72ea28/kaldi_active_grammar-3.1.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "483772be4a1283c618c3db72c4e50710", "sha256": "d3f1382b49c75fed0486aea66b0c339e825b37004f1c9284bef18267dec1d2b5" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "483772be4a1283c618c3db72c4e50710", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8711531, "upload_time": "2021-11-24T10:40:45", "upload_time_iso_8601": "2021-11-24T10:40:45.051487Z", "url": "https://files.pythonhosted.org/packages/78/c4/85c3420f45a3087beed19a6f6381b28ec16688dea9cbe1a64b08230aafa2/kaldi_active_grammar-3.1.0-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c05e704773694ee6646b069c9e6793c", "sha256": "3200d8695c7a6dd5d9a8a89912c108b709d13e1afb4c49d0f1e589d87b8a048f" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2c05e704773694ee6646b069c9e6793c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 14648244, "upload_time": "2021-11-24T10:40:58", "upload_time_iso_8601": "2021-11-24T10:40:58.589866Z", "url": "https://files.pythonhosted.org/packages/a1/01/8bb0d0bb1a995e3761c7e53bde8824a6f773a3cd5bc29a6473913b40341e/kaldi_active_grammar-3.1.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b5cba0ed600f4d210cf228d7b257a15", "sha256": "9fed05d3453bfd0b6c500752debd8ad3b3742a46f4c45cf3684406ab0dfa4e4f" }, "downloads": -1, "filename": "kaldi_active_grammar-3.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9b5cba0ed600f4d210cf228d7b257a15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 8990863, "upload_time": "2021-11-24T10:41:06", "upload_time_iso_8601": "2021-11-24T10:41:06.946843Z", "url": "https://files.pythonhosted.org/packages/3a/2a/09584143066390da90c51555c1eeb35e090fe4b38108e856fe092b72ea28/kaldi_active_grammar-3.1.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }