{ "info": { "author": "Sean Robertson", "author_email": "sdrobert@cs.toronto.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "===============\npydrobert-kaldi\n===============\n\n|travis| |appveyor| |readthedocs|\n\n`Read the latest docs `_\n\n**This is student-driven code, so don't expect a stable API. I'll try to use\nsemantic versioning, but the best way to keep functionality stable is by\nforking.**\n\nWhat is it?\n-----------\n\nSome Kaldi_ SWIG_ bindings for Python. I started this project because I wanted\nto seamlessly incorporate Kaldi's I/O mechanism into the gamut of Python-based\ndata science packages (e.g. Theano, Tensorflow, CNTK, PyTorch, etc.). The code\nbase is expanding to wrap more of Kaldi's feature processing and mathematical\nfunctions, but is unlikely to include modelling or decoding.\n\nEventually, I plan on adding hooks for Kaldi audio features and pre-/post-\nprocessing. However, I have no plans on porting any code involving modelling or\ndecoding.\n\nInput/Output\n------------\n\nMost I/O can be performed with the ``pydrobert.kaldi.io.open`` function:\n\n>>> from pydrobert.kaldi import io\n>>> with io.open('scp:foo.scp', 'bm') as f:\n>>> for matrix in f:\n>>> pass # do something\n\n``open`` is a factory function that determines the appropriate underlying\nstream to open, much like Python's built-in ``open``. The data types we can\nread (here, a ``BaseMatrix``) are listed in\n``pydrobert.kaldi.io.enums.KaldiDataType``. Big data types, like matrices and\nvectors, are piped into Numpy_ arrays. Passing an extended filename (e.g.\npaths to files on discs, ``'-'`` for stdin/stdout, ``'gzip -c a.ark.gz |'``,\netc.) opens a stream from which data types can be read one-by-one and in the\norder they were written. Alternatively, prepending the extended filename with\n``'ark[,[option_a[,option_b...]]:'`` or ``'scp[,...]:'`` and specifying a data\ntype allows one to open a Kaldi table for iterator-like sequential reading\n(``mode='r'``), dict-like random access reading (``mode='r+'``), or writing\n(``mode='w'``). For more information on the open function, consult the\ndocstring. Information on `Kaldi I/O`_ can be found on their website.\n\nThe submodule ``pydrobert.kaldi.io.corpus`` contains useful wrappers around\nKaldi I/O to serve up batches of data to, say, a neural network:\n\n>>> train = ShuffledData('scp:feats.scp', 'scp:labels.scp', batch_size=10)\n>>> for feat_batch, label_batch in train:\n>>> pass # do something\n\nLogging and CLI\n---------------\n\nBy default, Kaldi error, warning, and critical messages are piped to standard\nerror. The ``pydrobert.kaldi.logging`` submodule provides hooks into python's\nnative logging interface: the ``logging`` module. The ``KaldiLogger`` can\nhandle stack traces from Kaldi C++ code, and there are a variety of decorators\nto finagle the kaldi logging patterns to python logging patterns, or vice\nversa.\n\nYou'd likely want to explicitly handle logging when creating new kaldi-style\ncommands for command line. ``pydrobert.kaldi.io.argparse`` provides\n``KaldiParser``, an ``ArgumentParser`` tailored to Kaldi inputs/outputs. It is\nused by a few command-line entry points added by this package. They are:\n\nwrite-table-to-pickle\n Write the contents of a kaldi table to a pickle file(s). Good for late night\n attempts at reaching a paper deadline.\nwrite-pickle-to-table\n Write the contents of of a pickle file(s) to a kaldi table.\nwrite-table-to-torch-dir\n Write the contents of a kaldi table into a directory as a series of PyTorch\n tensor files. Suitable for PyTorch data loaders with multiprocessing.\n Requires PyTorch_.\nwrite-torch-dir-to-table\n Write the contents of a directory of tensor files back to a Kaldi table.\n Requires PyTorch_.\nnormalize-feat-lens\n Ensure that features have the same length as some reference by truncating\n or appending frames.\ncompute-error-rate\n Compute an error rate between reference and hypothesis texts, such as a WER\n or PER.\nnormalize-feat-lens\n Ensure features match some reference length, either by padding or clipping\n the end.\n\nInstallation\n------------\n\nCheck the following compatibility table to see if you can get a PyPI_ or Conda_\ninstall going:\n\n+----------+------+--------+--------+-------+\n| Platform | Arch | Python | Conda? | PyPI? |\n+==========+======+========+========+=======+\n| Windows | 32 | 2.7 | No | No |\n+----------+------+--------+--------+-------+\n| Windows | 32 | 3.5 | Yes | No |\n+----------+------+--------+--------+-------+\n| Windows | 32 | 3.6 | Yes | No |\n+----------+------+--------+--------+-------+\n| Windows | 32 | 3.7 | Yes | No |\n+----------+------+--------+--------+-------+\n| Windows | 64 | 2.7 | No | No |\n+----------+------+--------+--------+-------+\n| Windows | 64 | 3.5 | Yes | No |\n+----------+------+--------+--------+-------+\n| Windows | 64 | 3.6 | Yes | No |\n+----------+------+--------+--------+-------+\n| Windows | 64 | 3.7 | Yes | No |\n+----------+------+--------+--------+-------+\n| OSX | 32 | - | No | No |\n+----------+------+--------+--------+-------+\n| OSX | 64 | 2.7 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| OSX | 64 | 3.5 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| OSX | 64 | 3.6 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| OSX | 64 | 3.7 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| Linux | 32 | - | No | No |\n+----------+------+--------+--------+-------+\n| Linux | 64 | 2.7 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| Linux | 64 | 3.5 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| Linux | 64 | 3.6 | Yes | Yes |\n+----------+------+--------+--------+-------+\n| Linux | 64 | 3.7 | Yes | Yes |\n+----------+------+--------+--------+-------+\n\nTo install via ``conda``::\n\n conda install -c sdrobert pydrobert-kaldi\n\nTo install via ``pip``::\n\n pip install pydrobert-kaldi\n\nYou can also try building from source, but you'll have to specify where your\nBLAS install is somehow::\n\n # for OpenBLAS\n OPENBLASROOT=/path/to/openblas/install pip install \\\n git+https://github.com/sdrobert/pydrobert-kaldi.git\n # for MKL\n MKLROOT=/path/to/mkl/install pip install \\\n git+https://github.com/sdrobert/pydrobert-kaldi.git\n # see setup.py for more options\n\nLicense\n-------\n\nThis code is licensed under Apache 2.0.\n\nCode found under the ``src/`` directory has been primarily copied from Kaldi.\n``setup.py`` is also strongly influenced by Kaldi's build\nconfiguration. Kaldi is also covered by the Apache 2.0 license; its specific\nlicense file was copied into ``src/COPYING_Kaldi_Project`` to live among its\nfellows.\n\n.. _Kaldi: http://kaldi-asr.org/\n.. _`Kaldi I/O`: http://kaldi-asr.org/doc/io.html\n.. _Swig: http://www.swig.org/\n.. _Numpy: http://www.numpy.org/\n.. _Conda: http://conda.pydata.org/docs/\n.. _PyPI: https://pypi.org/\n.. _PyTorch: https://pytorch.org/\n.. |travis| image:: https://travis-ci.com/sdrobert/pydrobert-kaldi.svg?branch=master\n :target: https://travis-ci.com/sdrobert/pydrobert-kaldi\n :alt: Travis Build Status\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/lvjhj9pgju90wn8j/branch/master?svg=true\n :target: https://ci.appveyor.com/project/sdrobert/pydrobert-kaldi\n :alt: AppVeyor Build Status\n.. |readthedocs| image:: https://readthedocs.org/projects/pydrobert-kaldi/badge/?version=stable\n :target: https://pydrobert-kaldi.readthedocs.io/en/stable/\n :alt: Documentation Status\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pydrobert-kaldi", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "pydrobert-kaldi", "package_url": "https://pypi.org/project/pydrobert-kaldi/", "platform": "", "project_url": "https://pypi.org/project/pydrobert-kaldi/", "project_urls": { "Homepage": "https://github.com/pydrobert-kaldi" }, "release_url": "https://pypi.org/project/pydrobert-kaldi/0.5.2/", "requires_dist": [ "numpy (>=1.11.3)", "six", "future", "enum34; python_version<\"3.4\"", "torch; extra == 'pytorch'" ], "requires_python": "", "summary": "Swig bindings for kaldi", "version": "0.5.2" }, "last_serial": 4741376, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "7044efc4a04cc73cc8b77f70b4324948", "sha256": "3a00cee1faf00e451d4d4c11e22544095af52e573a25e9aff95d21f658a4a413" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp27-cp27m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "7044efc4a04cc73cc8b77f70b4324948", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1192683, "upload_time": "2018-02-04T20:30:53", "url": "https://files.pythonhosted.org/packages/b9/45/ac71e959a19fead8d0ffc6399e0902cc431e255fd4520603c7b1c18f67dc/pydrobert_kaldi-0.5.0-cp27-cp27m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "894a7e2b625d4ff46a1144f69e2146cf", "sha256": "04b7f6c8259982950cd8b19cb3bff216d4e02400a18e7b034189f99595eabf38" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "894a7e2b625d4ff46a1144f69e2146cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17826295, "upload_time": "2018-02-04T20:26:23", "url": "https://files.pythonhosted.org/packages/1e/07/e77161feb7404262fcd42fd464b83263b56865c599371b2a8b0df410c57c/pydrobert_kaldi-0.5.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d01cdd5a68379970a304815a61d0fbbe", "sha256": "ebcb1e588ea591ecfa726462c0042ac88eff86f6d74888a683383fb5a20f6ba4" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d01cdd5a68379970a304815a61d0fbbe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20078202, "upload_time": "2018-02-04T20:27:08", "url": "https://files.pythonhosted.org/packages/0d/df/e0e06e87b2feee35b111a50ffccbf411062b04053982812f82a66f8dbf3d/pydrobert_kaldi-0.5.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "07c829521d25a925e8f440c26807d4c8", "sha256": "9590ce31059264c1762a9f8fd0e675081847097c0e8749710da7cfbbe2e8b7a3" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "07c829521d25a925e8f440c26807d4c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17826433, "upload_time": "2018-02-04T20:27:51", "url": "https://files.pythonhosted.org/packages/e6/9f/2afab413181d34719b70c0797bde78c052c5948a98b1f8c69b9b8cb3ce61/pydrobert_kaldi-0.5.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cf8c485a2658e1b2c7a55eba9609f7b0", "sha256": "0da47e64a214158a7e75d23b94d465975714478c8e7159f737228422ecc469e6" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cf8c485a2658e1b2c7a55eba9609f7b0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077765, "upload_time": "2018-02-04T20:28:24", "url": "https://files.pythonhosted.org/packages/6b/39/023ac3b44e76638a851a3dcf18cf76d2f60e48f7e4583a77990a3b5aa94f/pydrobert_kaldi-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "00087c5fac31a44eb399909fb2acd6b9", "sha256": "6d6124bb73d78b3f982bc1215e4b6310f7c9c64efeb4fac68d31ddf5c1fe0dc2" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "00087c5fac31a44eb399909fb2acd6b9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1215310, "upload_time": "2018-02-04T20:31:28", "url": "https://files.pythonhosted.org/packages/ea/f8/ef61fa7ea3adecba59eb9afc240f8a94732c143c9b481ae8c1dfba8dbd84/pydrobert_kaldi-0.5.0-cp35-cp35m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "68e97a14272e2a08c154735acd35a509", "sha256": "c441ca25d23856187aa42506ef92b4ea324be4e6347e67cf199d7e69bacf13da" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "68e97a14272e2a08c154735acd35a509", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17831823, "upload_time": "2018-02-04T20:29:07", "url": "https://files.pythonhosted.org/packages/53/da/9ab1031e8c05486bdd87893c6bd71b4a927121f3cd6794adb8dbab05a64a/pydrobert_kaldi-0.5.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d422b8b0b84f288fc6462955f342c01f", "sha256": "359dbecddc826f84fcc155cec53865b9661b14acd9b34bfe07075eb95b19afdd" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d422b8b0b84f288fc6462955f342c01f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20098514, "upload_time": "2018-02-04T20:29:20", "url": "https://files.pythonhosted.org/packages/2f/da/eb56f6841791c724f13f0da8316d120953bab1a7348c7bbed9926f960854/pydrobert_kaldi-0.5.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8bcaaf473c3674eac336dc393ef3219e", "sha256": "9f8b899e25a2a64a5ab6e821de2d8d876e87b777ceed8d2433ae77be8803e3d6" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "8bcaaf473c3674eac336dc393ef3219e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1215310, "upload_time": "2018-02-04T20:31:55", "url": "https://files.pythonhosted.org/packages/4b/a9/700f4c38b7f05c7f8f06e0e626a43486b861034857104c804c1716930c3e/pydrobert_kaldi-0.5.0-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6107843b6f94db0daa49a98c5dfcac30", "sha256": "3eff730529faca92f589d27cc51411ad6d7bbdfe561b3a34ff753174ae533720" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6107843b6f94db0daa49a98c5dfcac30", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17832365, "upload_time": "2018-02-04T20:29:57", "url": "https://files.pythonhosted.org/packages/f8/39/437e6a0bb3b5c671e7c9d6b3eb05f2491cac5f591edd8b3bb3aa8a83ce59/pydrobert_kaldi-0.5.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "219d09fc5b18f968d7ff7d1a07593333", "sha256": "f674b1a59cbf3ec0e4e3e5e0280696634be924cad38736a50587d0c712b4930b" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "219d09fc5b18f968d7ff7d1a07593333", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20098780, "upload_time": "2018-02-04T20:30:13", "url": "https://files.pythonhosted.org/packages/65/4f/72f890dc15f8c23fba8adb15b2aef77c564f10307a88a68cb8a40948e80e/pydrobert_kaldi-0.5.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "231275c25c116b4b50ed44936d727ecf", "sha256": "71b0eb9f68a794a7ea8f8211e74939db3a3fb320a8f87eb6b03aec6e4e16c29e" }, "downloads": -1, "filename": "pydrobert-kaldi-0.5.0.tar.gz", "has_sig": false, "md5_digest": "231275c25c116b4b50ed44936d727ecf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 512423, "upload_time": "2018-02-04T20:30:56", "url": "https://files.pythonhosted.org/packages/d1/13/2ca1ee49db98496ae58f33f587ab2434ce88581c181991573ada3380ee6f/pydrobert-kaldi-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "8f45de7bf87bfb36b49ab48793459f3a", "sha256": "36075250bff169064b3465278dda08dbbff381f7a3d9f3bedc35638cfbc0761f" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8f45de7bf87bfb36b49ab48793459f3a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1240697, "upload_time": "2018-11-16T20:33:07", "url": "https://files.pythonhosted.org/packages/a5/61/0f2500e6160016b8862205779dacc8ec38fe6464cd9ed4905eeb27757b65/pydrobert_kaldi-0.5.post1-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4b99f15d4da5d60fdb749e6304d0a8ed", "sha256": "da2e8052ebc65f538cc1d4a670c177965a2c648b42aab6bfd29ae1390b0501fa" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4b99f15d4da5d60fdb749e6304d0a8ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824572, "upload_time": "2018-11-16T20:27:58", "url": "https://files.pythonhosted.org/packages/42/22/7680f5a7866cc7e48e437a948e55ed5a3600645bfd737c2b7e41d5ffb6ea/pydrobert_kaldi-0.5.post1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7173363b1fe28b50853975282c2b7330", "sha256": "719ef9a12dfc457468b190a1e6ab691c5be3d8669685fc5f145db1555c5ad352" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7173363b1fe28b50853975282c2b7330", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20076790, "upload_time": "2018-11-16T20:31:31", "url": "https://files.pythonhosted.org/packages/01/36/f7846ef84765a88ddbb310b9855fac2c330076bac20094cdf0e36a253142/pydrobert_kaldi-0.5.post1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "25f20faa13c0574e14ed7a03814f8288", "sha256": "213124e550455b3798f87d530fb01bffea784bcfab2fddbfe6fbd2cfaf9b3d64" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "25f20faa13c0574e14ed7a03814f8288", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824414, "upload_time": "2018-11-16T20:31:39", "url": "https://files.pythonhosted.org/packages/30/0b/f57d3be9aecc7a8bdab5d488f29365e7dd9d2f33a8ba325ab73f09a64c13/pydrobert_kaldi-0.5.post1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "54ee8ddf3a61f3d6cdf53c91bdf7eac2", "sha256": "5206cac98e3ff11d661f5a4ba886b053b15f8f33127d040bcb4e86ef936bda48" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "54ee8ddf3a61f3d6cdf53c91bdf7eac2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077035, "upload_time": "2018-11-16T20:31:48", "url": "https://files.pythonhosted.org/packages/99/ec/4bdf281389438632815a0f62be55921caea17ba686287d42c22e07f48139/pydrobert_kaldi-0.5.post1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "220650fae59a8f78b7cfc044b452200d", "sha256": "35ed541d40870a59ffcb279fde2fa0a6f53b2a4ef333a51c9e2ec2d5cea68e7a" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp34-cp34m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "220650fae59a8f78b7cfc044b452200d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1268652, "upload_time": "2018-11-16T20:33:09", "url": "https://files.pythonhosted.org/packages/5b/20/fd8aab644e58654eddd4da12d2a5d9f5cd3cc3855ebfff1d507f3587bb26/pydrobert_kaldi-0.5.post1-cp34-cp34m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ca6fa8106228f046d055ea9b4f9e0c93", "sha256": "a30e242a5e9e3fdc091ab3301a4d3e2fa38f5e3a39255d9ef36aa5be5a4edcf6" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ca6fa8106228f046d055ea9b4f9e0c93", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17830845, "upload_time": "2018-11-16T20:31:59", "url": "https://files.pythonhosted.org/packages/c4/33/da7ad9327e9bd9fef40c1a3c8675408c4aa02e0d5a0afae6bdc6017fbfc6/pydrobert_kaldi-0.5.post1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "89788d77fad5ee15b516f252a146bc58", "sha256": "ee9dbc2bc7684598d268e7c6eaaa6ee61119b4343408c4389dd66e4332904111" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "89788d77fad5ee15b516f252a146bc58", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20097093, "upload_time": "2018-11-16T20:32:09", "url": "https://files.pythonhosted.org/packages/9a/b9/00efd155d7361efc6173a6047a188f9e7b92fdeda92b424827a8957be09d/pydrobert_kaldi-0.5.post1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4d980c4118261fc09a99a82c8a8e067d", "sha256": "521b53d15a48d34478f5cca8652dac02922c9fbea7149f6a8df527a4d0800ebc" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4d980c4118261fc09a99a82c8a8e067d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1268783, "upload_time": "2018-11-16T20:33:12", "url": "https://files.pythonhosted.org/packages/52/f3/e60f71a64cca43b3cf8d5d1d4b9f7b1e21529a142352ec1c15876946e7c1/pydrobert_kaldi-0.5.post1-cp35-cp35m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "52b291def899234e1bea05f88203b4b9", "sha256": "8975b90a6f0800da32938ff2bededf40da6d3a13a1bf6a94b2d352d42cbf0cef" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52b291def899234e1bea05f88203b4b9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17830667, "upload_time": "2018-11-16T20:32:17", "url": "https://files.pythonhosted.org/packages/ad/4b/8200891860a921ec931e210bc911211bdd338ba68d3a35d6835c7d1ed26a/pydrobert_kaldi-0.5.post1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9ff236a9083dbdf8ac11313ffdfffd3a", "sha256": "96bff6a11440ae6e445a8b9c3a29ab495f9aa2eff1943aa71a366dafd64487b0" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ff236a9083dbdf8ac11313ffdfffd3a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20097801, "upload_time": "2018-11-16T20:32:28", "url": "https://files.pythonhosted.org/packages/de/1a/6133aaddf31118a918f13de155c3347006ea59abfe07371c9dcaa96c7558/pydrobert_kaldi-0.5.post1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e525361cec10cfd6ced6bc3567038eff", "sha256": "b3828af2be74e5b80f23d658c17a0ef36a2df5f6c59e47c6b8caae8a398ccc39" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "e525361cec10cfd6ced6bc3567038eff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1268787, "upload_time": "2018-11-16T20:33:15", "url": "https://files.pythonhosted.org/packages/75/9b/9dac676f5ac7913ddc79a4c88f942dbc1aab9677c9676a20b2589006844d/pydrobert_kaldi-0.5.post1-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "913a7dc21e2ecbea02bf5820d87b796b", "sha256": "0aa63a95e44bc3dc5bb58b8410e6eae31a0b3ad4eda2b849b0cd3a4a22e1c04d" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "913a7dc21e2ecbea02bf5820d87b796b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17831613, "upload_time": "2018-11-16T20:32:36", "url": "https://files.pythonhosted.org/packages/af/21/9a965b95c5e2980c95d7a8a4ef4110812d3b728da09878abf6a6446a3d9a/pydrobert_kaldi-0.5.post1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "607cf70d6e5c0cee8c3f3827561d09a1", "sha256": "57bfb8a2141beb47e23ca1dd44b7f5ec19ffac21a862088f0d4707cb06c6d1bc" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "607cf70d6e5c0cee8c3f3827561d09a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20098717, "upload_time": "2018-11-16T20:32:46", "url": "https://files.pythonhosted.org/packages/a8/5f/013f8fc6579548075f94a03f2a46ea2b388981d9d14e65123058507a345b/pydrobert_kaldi-0.5.post1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0376760753e2e3e0779e4514b0129488", "sha256": "e5687d3bcaa0709774fc1ce959cf6031c03fd5010a4c2e6279f5fe654d9d2404" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "0376760753e2e3e0779e4514b0129488", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1268788, "upload_time": "2018-11-16T20:33:17", "url": "https://files.pythonhosted.org/packages/de/b3/ad08318f32e4c0198bcb91298d9cb933598a6d591f70816a7115ce1d5633/pydrobert_kaldi-0.5.post1-cp37-cp37m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4fb60e6247e22ae2ba50946945347df", "sha256": "da8a476d949d77f20ffc3e66efb6d7cedff7f9f69b0405a78f3e3e2249fb4c79" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c4fb60e6247e22ae2ba50946945347df", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17832206, "upload_time": "2018-11-16T20:32:54", "url": "https://files.pythonhosted.org/packages/90/7d/7f8f5fd922f2bf680a09e49506364ae338ee6be3116b6952c511f30c0ee2/pydrobert_kaldi-0.5.post1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7cf019c6810349b00fce33d9bf0447bf", "sha256": "ad3b00302f990dce9b710c81ed0e1d78746922088976caac543c799d6cd169cd" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7cf019c6810349b00fce33d9bf0447bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 20099734, "upload_time": "2018-11-16T20:33:04", "url": "https://files.pythonhosted.org/packages/53/cc/f3cab2d5aeb234cd7869ec7a2d3b38d666d5fab4eb276ca6565b4fb08a1e/pydrobert_kaldi-0.5.post1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "36889fa79aeccd1487489e028fbce225", "sha256": "4b7a1d7cd91062cdcd732f7cf4d763a343bb4a38a5640f5c459db602dcd97590" }, "downloads": -1, "filename": "pydrobert-kaldi-0.5.post1.tar.gz", "has_sig": false, "md5_digest": "36889fa79aeccd1487489e028fbce225", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 515163, "upload_time": "2018-11-16T20:33:58", "url": "https://files.pythonhosted.org/packages/e1/43/abb09f315c4d2f3c2b46e233e197966b619c5230e43a9c6562989d99c7c9/pydrobert-kaldi-0.5.post1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "4d7b09b6545a076abaa0ae21bbb38a21", "sha256": "845f954b73b090c493555eeb129d2f1af8baff68daec426e9cc4951086e1b0d1" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4d7b09b6545a076abaa0ae21bbb38a21", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1240678, "upload_time": "2019-01-25T18:52:25", "url": "https://files.pythonhosted.org/packages/b5/eb/3b60ffcffb2b05dbed64005527bb8153614b91465e7845b14d2e4200a9c2/pydrobert_kaldi-0.5.2-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd935f5faf87f7a9f3c2dd935660aec1", "sha256": "698388107a2698c153756ad17482fc3cdc0d54cb7bf8500f9d424e48f2a32948" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fd935f5faf87f7a9f3c2dd935660aec1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824165, "upload_time": "2019-01-25T18:50:36", "url": "https://files.pythonhosted.org/packages/63/22/c4cec7b64dce527089cec7b1a2423fc7946fdedb9e87f0bcf45dd4f7e862/pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a40ad7cd743e6ebe795645dc76b11f48", "sha256": "654690f003036434a2f092647e42b5c01b9ada834951041d13696edc9bdecf6d" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a40ad7cd743e6ebe795645dc76b11f48", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077566, "upload_time": "2019-01-25T18:50:46", "url": "https://files.pythonhosted.org/packages/84/b4/5c03f801de517c2eb4c229799b59f4d13ab525087a7e56b7d9616d2c2735/pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "228bbfb11d8e8884158f71a61c0914c8", "sha256": "f159b2fb408b1d62825a60c960f7e35af888815964a68f4213eefde69f00e29c" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "228bbfb11d8e8884158f71a61c0914c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824443, "upload_time": "2019-01-25T18:50:55", "url": "https://files.pythonhosted.org/packages/8d/9e/04b227037c8d82a347cf84b05890310935229fc556391de76ccbbf9294f5/pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "dbd73f42f52c42ff3f7543c4e0ff1acc", "sha256": "af43203bcad378c67636b7599f960927a6ed00d6745dd6cb51b0a3b1ae9763ef" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dbd73f42f52c42ff3f7543c4e0ff1acc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077664, "upload_time": "2019-01-25T18:51:04", "url": "https://files.pythonhosted.org/packages/18/d4/b7e18a241b93d2fb8aaee946e880f0ae03d03025a7b56cb7ceed1ca53834/pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2efa0e4dc47f4f3fce826f915829f7c7", "sha256": "e86e4d3711d214ca1ef86f1a91ac9566a3c48874622c257e5ccf13c404b8de8f" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2efa0e4dc47f4f3fce826f915829f7c7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1268814, "upload_time": "2019-01-25T18:52:32", "url": "https://files.pythonhosted.org/packages/a3/c0/9a233e5f9240d09cb3f1489772cac8bbe592679efd51ea94c6a2a678d690/pydrobert_kaldi-0.5.2-cp35-cp35m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a2ef28e998948991167c66b5e16ff38c", "sha256": "f87a5c80287140ab4cb56edd2d48d1d0eaf9fecf5a45db3faf1bf218d8bbd77f" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a2ef28e998948991167c66b5e16ff38c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17831045, "upload_time": "2019-01-25T18:51:14", "url": "https://files.pythonhosted.org/packages/16/fc/0ca62cd04d723521c768006c35cbaae482f34161d9c027e3a9e6785b8c99/pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "49b39e88ac38e83a683bb0a1ced34638", "sha256": "f27c267c0d7737e2b431b865733b2e809164dca6dc3b576d33746741e5976d14" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49b39e88ac38e83a683bb0a1ced34638", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20097422, "upload_time": "2019-01-25T18:51:23", "url": "https://files.pythonhosted.org/packages/ec/b3/b38cdf73aba0ac04057a64f5cf56147b166598e04726be0deb17bde8f23c/pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6a4e2604971a056ce9b07e36242f504a", "sha256": "62a97915d88d0a410fad665dbd1cfa1c4bbcaba569f4d251e9c10c01c4df29e6" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6a4e2604971a056ce9b07e36242f504a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1268809, "upload_time": "2019-01-25T18:52:37", "url": "https://files.pythonhosted.org/packages/c8/79/0291ad174a8cfe4bd40711ff397e2d9c023d8bd1feae3fc71aa75a7db42a/pydrobert_kaldi-0.5.2-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2393535beae86ff39655b508c93c9135", "sha256": "ec969d8f98cdbd1fc47b652d2f338bdf28b6efc481d9af85fddaa6f3c6753bba" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2393535beae86ff39655b508c93c9135", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17831374, "upload_time": "2019-01-25T18:51:33", "url": "https://files.pythonhosted.org/packages/95/e4/58f55649b0fa535097adc76d0accaf647b05bb2f468459b51e53bec529e8/pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "bdc50aff2475a4e1e8d85e6b83141364", "sha256": "76182ab640681fdcbf02b357955a8cec8d7dc8f6b998f73e00ad050cb7501c00" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bdc50aff2475a4e1e8d85e6b83141364", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20097901, "upload_time": "2019-01-25T18:51:44", "url": "https://files.pythonhosted.org/packages/72/f3/d8a466615411ccbb88cbdb0a2cf385b8719bc12c0b3694304e82ba39e08e/pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1ecfc1c6ba6e962c2451a2f664784617", "sha256": "5188c726bdc297528ab50728d9cb4bc844fc78001f61566d02abf9a9cb3d0b44" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1ecfc1c6ba6e962c2451a2f664784617", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1268807, "upload_time": "2019-01-25T18:52:44", "url": "https://files.pythonhosted.org/packages/07/d4/06b0aea2bfe82289ef7c8ae3e67a13e61df71f3cf39aaece757cfbd1a7f6/pydrobert_kaldi-0.5.2-cp37-cp37m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "63c9fdab6582f861ea3da53b538bec68", "sha256": "21b3664c608cf9bcdac78e70579b9f36a68cc6208773428250ab5d876bdb74f3" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "63c9fdab6582f861ea3da53b538bec68", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17832466, "upload_time": "2019-01-25T18:51:53", "url": "https://files.pythonhosted.org/packages/8b/ed/da3fbb275c0c83447a9daa939f89e19f323ca126abbf14068c5cd588936c/pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9533cb261fef7eeed720ee4c98053ea4", "sha256": "07ac99c45ef901dcb009e22f9866d728a5e78abfa04407b5314144c3226d2ad4" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9533cb261fef7eeed720ee4c98053ea4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 20100068, "upload_time": "2019-01-25T18:52:10", "url": "https://files.pythonhosted.org/packages/45/15/e6a7ccd8b1ebd1216c3c8955fd1fd9dca8994bc0178464aec4a6425cf652/pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be12bc62bb33609d5ba85539bc722006", "sha256": "0884f053b8ca6330bb45fb2ab85872aeddacd6de77775df48e0ff03c5d0b4061" }, "downloads": -1, "filename": "pydrobert-kaldi-0.5.2.tar.gz", "has_sig": false, "md5_digest": "be12bc62bb33609d5ba85539bc722006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 515081, "upload_time": "2019-01-25T18:53:28", "url": "https://files.pythonhosted.org/packages/24/80/e75cc4b5e2766b9ed4ac104d94a3b339e9b30477578ea01579d9b16b7d60/pydrobert-kaldi-0.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4d7b09b6545a076abaa0ae21bbb38a21", "sha256": "845f954b73b090c493555eeb129d2f1af8baff68daec426e9cc4951086e1b0d1" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4d7b09b6545a076abaa0ae21bbb38a21", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1240678, "upload_time": "2019-01-25T18:52:25", "url": "https://files.pythonhosted.org/packages/b5/eb/3b60ffcffb2b05dbed64005527bb8153614b91465e7845b14d2e4200a9c2/pydrobert_kaldi-0.5.2-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd935f5faf87f7a9f3c2dd935660aec1", "sha256": "698388107a2698c153756ad17482fc3cdc0d54cb7bf8500f9d424e48f2a32948" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fd935f5faf87f7a9f3c2dd935660aec1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824165, "upload_time": "2019-01-25T18:50:36", "url": "https://files.pythonhosted.org/packages/63/22/c4cec7b64dce527089cec7b1a2423fc7946fdedb9e87f0bcf45dd4f7e862/pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a40ad7cd743e6ebe795645dc76b11f48", "sha256": "654690f003036434a2f092647e42b5c01b9ada834951041d13696edc9bdecf6d" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a40ad7cd743e6ebe795645dc76b11f48", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077566, "upload_time": "2019-01-25T18:50:46", "url": "https://files.pythonhosted.org/packages/84/b4/5c03f801de517c2eb4c229799b59f4d13ab525087a7e56b7d9616d2c2735/pydrobert_kaldi-0.5.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "228bbfb11d8e8884158f71a61c0914c8", "sha256": "f159b2fb408b1d62825a60c960f7e35af888815964a68f4213eefde69f00e29c" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "228bbfb11d8e8884158f71a61c0914c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17824443, "upload_time": "2019-01-25T18:50:55", "url": "https://files.pythonhosted.org/packages/8d/9e/04b227037c8d82a347cf84b05890310935229fc556391de76ccbbf9294f5/pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "dbd73f42f52c42ff3f7543c4e0ff1acc", "sha256": "af43203bcad378c67636b7599f960927a6ed00d6745dd6cb51b0a3b1ae9763ef" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dbd73f42f52c42ff3f7543c4e0ff1acc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20077664, "upload_time": "2019-01-25T18:51:04", "url": "https://files.pythonhosted.org/packages/18/d4/b7e18a241b93d2fb8aaee946e880f0ae03d03025a7b56cb7ceed1ca53834/pydrobert_kaldi-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2efa0e4dc47f4f3fce826f915829f7c7", "sha256": "e86e4d3711d214ca1ef86f1a91ac9566a3c48874622c257e5ccf13c404b8de8f" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2efa0e4dc47f4f3fce826f915829f7c7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1268814, "upload_time": "2019-01-25T18:52:32", "url": "https://files.pythonhosted.org/packages/a3/c0/9a233e5f9240d09cb3f1489772cac8bbe592679efd51ea94c6a2a678d690/pydrobert_kaldi-0.5.2-cp35-cp35m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a2ef28e998948991167c66b5e16ff38c", "sha256": "f87a5c80287140ab4cb56edd2d48d1d0eaf9fecf5a45db3faf1bf218d8bbd77f" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a2ef28e998948991167c66b5e16ff38c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17831045, "upload_time": "2019-01-25T18:51:14", "url": "https://files.pythonhosted.org/packages/16/fc/0ca62cd04d723521c768006c35cbaae482f34161d9c027e3a9e6785b8c99/pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "49b39e88ac38e83a683bb0a1ced34638", "sha256": "f27c267c0d7737e2b431b865733b2e809164dca6dc3b576d33746741e5976d14" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49b39e88ac38e83a683bb0a1ced34638", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20097422, "upload_time": "2019-01-25T18:51:23", "url": "https://files.pythonhosted.org/packages/ec/b3/b38cdf73aba0ac04057a64f5cf56147b166598e04726be0deb17bde8f23c/pydrobert_kaldi-0.5.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6a4e2604971a056ce9b07e36242f504a", "sha256": "62a97915d88d0a410fad665dbd1cfa1c4bbcaba569f4d251e9c10c01c4df29e6" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6a4e2604971a056ce9b07e36242f504a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1268809, "upload_time": "2019-01-25T18:52:37", "url": "https://files.pythonhosted.org/packages/c8/79/0291ad174a8cfe4bd40711ff397e2d9c023d8bd1feae3fc71aa75a7db42a/pydrobert_kaldi-0.5.2-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2393535beae86ff39655b508c93c9135", "sha256": "ec969d8f98cdbd1fc47b652d2f338bdf28b6efc481d9af85fddaa6f3c6753bba" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2393535beae86ff39655b508c93c9135", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17831374, "upload_time": "2019-01-25T18:51:33", "url": "https://files.pythonhosted.org/packages/95/e4/58f55649b0fa535097adc76d0accaf647b05bb2f468459b51e53bec529e8/pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "bdc50aff2475a4e1e8d85e6b83141364", "sha256": "76182ab640681fdcbf02b357955a8cec8d7dc8f6b998f73e00ad050cb7501c00" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bdc50aff2475a4e1e8d85e6b83141364", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20097901, "upload_time": "2019-01-25T18:51:44", "url": "https://files.pythonhosted.org/packages/72/f3/d8a466615411ccbb88cbdb0a2cf385b8719bc12c0b3694304e82ba39e08e/pydrobert_kaldi-0.5.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1ecfc1c6ba6e962c2451a2f664784617", "sha256": "5188c726bdc297528ab50728d9cb4bc844fc78001f61566d02abf9a9cb3d0b44" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1ecfc1c6ba6e962c2451a2f664784617", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1268807, "upload_time": "2019-01-25T18:52:44", "url": "https://files.pythonhosted.org/packages/07/d4/06b0aea2bfe82289ef7c8ae3e67a13e61df71f3cf39aaece757cfbd1a7f6/pydrobert_kaldi-0.5.2-cp37-cp37m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "63c9fdab6582f861ea3da53b538bec68", "sha256": "21b3664c608cf9bcdac78e70579b9f36a68cc6208773428250ab5d876bdb74f3" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "63c9fdab6582f861ea3da53b538bec68", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17832466, "upload_time": "2019-01-25T18:51:53", "url": "https://files.pythonhosted.org/packages/8b/ed/da3fbb275c0c83447a9daa939f89e19f323ca126abbf14068c5cd588936c/pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9533cb261fef7eeed720ee4c98053ea4", "sha256": "07ac99c45ef901dcb009e22f9866d728a5e78abfa04407b5314144c3226d2ad4" }, "downloads": -1, "filename": "pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9533cb261fef7eeed720ee4c98053ea4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 20100068, "upload_time": "2019-01-25T18:52:10", "url": "https://files.pythonhosted.org/packages/45/15/e6a7ccd8b1ebd1216c3c8955fd1fd9dca8994bc0178464aec4a6425cf652/pydrobert_kaldi-0.5.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be12bc62bb33609d5ba85539bc722006", "sha256": "0884f053b8ca6330bb45fb2ab85872aeddacd6de77775df48e0ff03c5d0b4061" }, "downloads": -1, "filename": "pydrobert-kaldi-0.5.2.tar.gz", "has_sig": false, "md5_digest": "be12bc62bb33609d5ba85539bc722006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 515081, "upload_time": "2019-01-25T18:53:28", "url": "https://files.pythonhosted.org/packages/24/80/e75cc4b5e2766b9ed4ac104d94a3b339e9b30477578ea01579d9b16b7d60/pydrobert-kaldi-0.5.2.tar.gz" } ] }