{ "info": { "author": "Matthew Goldey", "author_email": "mgoldey@greenkeytech.com", "bugtrack_url": null, "classifiers": [ "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# GreenKey Automatic Speech Recognition (ASR) Toolkit [![Build Status](https://travis-ci.org/finos/greenkey-asrtoolkit.svg?branch=master)](https://travis-ci.org/finos/greenkey-asrtoolkit)\n\n\n\n---\n\n## The GreenKey ASRToolkit provides tools for file conversion and ASR corpora organization. These are intended to simplify the workflow for building, customizing, and analyzing ASR models, useful for scientists, engineers, and other technologists in speech recognition.\n\n### File formats supported\n\nFile formats have format-specific handlers in asrtoolkit/data_handlers. The scripts `convert_transcript` and `wer` support [`stm`](http://www1.icsi.berkeley.edu/Speech/docs/sctk-1.2/infmts.htm), [`srt`](http://zuggy.wz.cz/), [`vtt`](https://w3c.github.io/webvtt/), `txt`, and [GreenKey `json`](https://transcription.greenkeytech.com/) formatted transcripts. A custom `html` format is also available, though this should not be considered a stable format for long term storage as it is subject to change without notice.\n\n### convert_transcript \n```text\nusage: convert_transcript [-h] input_file output_file\n\nconvert a single transcript from one text file format to another\n\npositional arguments:\n input_file input file\n output_file output file\n\noptional arguments:\n -h, --help show this help message and exit\n```\nThis tool allows for easy conversion among file formats listed above.\n\nNote: Attributes of a segment object not present in a parsed file retain their default values\n\n- For example, a `segment` object is created for each line of an STM line\n- each is initialized with the following default values which are not encoded in STM files: `formatted_text=''`; `confidence=1.0` \n\n\n\n### wer\n```text\nusage: wer [-h] [--char-level] [--ignore-nsns]\n reference_file transcript_file\n\nCompares a reference and transcript file and calculates word error rate (WER)\nbetween these two files\n\npositional arguments:\n reference_file reference \"truth\" file\n transcript_file transcript possibly containing errors\n\noptional arguments:\n -h, --help show this help message and exit\n --char-level calculate character error rate instead of word error rate\n --ignore-nsns ignore non silence noises like um, uh, etc.\n\nThis tool allows for easy comparison of reference and hypothesis transcripts in any format listed above.\n```\n\n### clean_formatting \n```text\nusage: clean_formatting.py [-h] files [files ...]\n\ncleans input *.txt files and outputs *_cleaned.txt\n\npositional arguments:\n files list of input files\n\noptional arguments:\n -h, --help show this help message and exit\n\n```\nThis script standardizes how abbreviations, numbers, and other formatted text is expressed so that ASR engines can easily use these files as training or testing data. Standardizing the formatting of output is essential for reproducible measurements of ASR accuracy.\n\n### split_audio_file \n```text\nusage: split_audio_file [-h] [--target-dir TARGET_DIR] audio_file transcript\n\nSplit an audio file using valid segments from a transcript file. For this\nutility, transcript files must contain start/stop times.\n\npositional arguments:\n audio_file input audio file\n transcript transcript\n\noptional arguments:\n -h, --help show this help message and exit\n --target-dir TARGET_DIR\n Path to target directory\n```\n\n### prepare_audio_corpora\n```text\nusage: prepare_audio_corpora [-h] [--target-dir TARGET_DIR]\n corpora [corpora ...]\n\nCopy and organize specified corpora into a target directory. Training,\ntesting, and development sets will be created automatically if not already\ndefined.\n\npositional arguments:\n corpora Name of one or more directories in directory this\n script is run\n\noptional arguments:\n -h, --help show this help message and exit\n --target-dir TARGET_DIR\n Path to target directory\n```\nThis script scrapes a list of directories for paired STM and SPH files. If `train`, `test`, and `dev` folders are present, these labels are used for the output folder. By default, a target directory of 'input-data' will be created. Note that filenames with hyphens will be sanitized to underscores and that audio files will be forced to single channel, 16 kHz, signed PCM format. If two channels are present, only the first will be used.\n\n### degrade_audio_file \n```text\nusage: degrade_audio_file input_file1.wav input_file2.wav\n\nDegrade audio files to 8 kHz format similar to G711 codec\n```\nThis script reduces audio quality of input audio files so that acoustic models can learn features from telephony with the G711 codec.\n\n### extract_excel_spreadsheets\nNote that the use of this function requires the separate installation of `pandas`. This can be done via `pip install pandas`.\n\n```text\nusage: extract_excel_spreadsheets.py [-h] [--input-folder INPUT_FOLDER]\n [--output-corpus OUTPUT_CORPUS]\n\nconvert a folder of excel spreadsheets to a corpus of text files\n\noptional arguments:\n -h, --help show this help message and exit\n --input-folder INPUT_FOLDER\n input folder of excel spreadsheets ending in .xls or\n .xlsx\n --output-corpus OUTPUT_CORPUS\n output folder for storing text corpus\n```\n\n### Requirements\n\n- Python >= 3.5 with `pip`\n\n## Contributing\n\n### Code of Conduct\n\nPlease make sure you read and observe our [Code of Conduct](https://raw.githubusercontent.com/finos/greenkey-asrtoolkit/master/CODE_OF_CONDUCT.md).\n\n### Pull Request process\n\n1. Fork it\n1. Create your feature branch (`git checkout -b feature/fooBar`)\n1. Commit your changes (`git commit -am 'Add some fooBar'`)\n1. Push to the branch (`git push origin feature/fooBar`)\n1. Create a new Pull Request\n\n## Authors\n\n- [Matthew Goldey](https://github.com/mgoldey)\n- [Tejas Shastry](https://github.com/tshastry)\n- [Amy Geojo](https://github.com/ageojo)\n- [Svyat Vergun](https://github.com/sv-github)\n- [Ashley Shultz](https://github.com/AGiantSquid)\n- [Colin Brochtrup](https://github.com/cbrochtrup)\n\n## License\n\nThe code in this repository is distributed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).\n\nCopyright 2019 GreenKey Technologies\n\n\n[FINOS]: https://www.finos.org\n[Code of Conduct]: https://www.finos.org/code-of-conduct\n[Voice Program]: https://finosfoundation.atlassian.net/wiki/spaces/VOICE/overview\n[SemVer]: http://semver.org\n[list of contributors]: https://github.com/finos/greenkey-asrtoolkit/graphs/contributors\n[tags on this repository]: https://github.com/finos/greenkey-asrtoolkit/tags", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/finos-voice/greenkey-asrtoolkit", "keywords": "asr speech recognition greenkey word error rate", "license": "Apache v2", "maintainer": "", "maintainer_email": "", "name": "asrtoolkit", "package_url": "https://pypi.org/project/asrtoolkit/", "platform": "", "project_url": "https://pypi.org/project/asrtoolkit/", "project_urls": { "Homepage": "http://github.com/finos-voice/greenkey-asrtoolkit" }, "release_url": "https://pypi.org/project/asrtoolkit/0.1.20/", "requires_dist": null, "requires_python": "", "summary": "The GreenKey ASRToolkit provides tools for automatic speech recognition (ASR) file conversion and corpora organization.", "version": "0.1.20" }, "last_serial": 5858228, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "f5775db156dca371b416a518e3c7aeb9", "sha256": "ef1de670cde1be1eaf2c344041996d8457f549a16491215ffd657efee7567dfb" }, "downloads": -1, "filename": "asrtoolkit-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f5775db156dca371b416a518e3c7aeb9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26895, "upload_time": "2018-10-15T20:10:11", "url": "https://files.pythonhosted.org/packages/d8/ab/43d3082d8fd8876082bb8d0ccb797e4614cf3c6318af7f8a6e004878afd2/asrtoolkit-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2e701f75fc13eb541a382e6096be8c7", "sha256": "6dd5b88c74f994eeb61baf4b4386ca33151ff19ae527fc68540b8d37b5166b8f" }, "downloads": -1, "filename": "asrtoolkit-0.1.1.tar.gz", "has_sig": false, "md5_digest": "c2e701f75fc13eb541a382e6096be8c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14269, "upload_time": "2018-10-15T20:10:12", "url": "https://files.pythonhosted.org/packages/c4/1f/22c26bda4d151c15994a016cb6e47fbd5969caee5a9d7236e8f86920e939/asrtoolkit-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "2ae142561d17b29a59b431f38ad0a1bd", "sha256": "5a32201ada1b0481d4744c769044ab28c0a1a79c5302c7faad60f96f22d7b31c" }, "downloads": -1, "filename": "asrtoolkit-0.1.10.tar.gz", "has_sig": false, "md5_digest": "2ae142561d17b29a59b431f38ad0a1bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24353, "upload_time": "2018-11-02T18:05:06", "url": "https://files.pythonhosted.org/packages/99/e0/ec80764973fcea878a4041b31a35358dbba444b607f8606176fc2a05b518/asrtoolkit-0.1.10.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "6f9447258f75b76390473c931c25c5c9", "sha256": "103613ade28433ad0c13f1ac01b6602916ab70a00bbb36128fa5fcdd72546f8b" }, "downloads": -1, "filename": "asrtoolkit-0.1.12.tar.gz", "has_sig": false, "md5_digest": "6f9447258f75b76390473c931c25c5c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26305, "upload_time": "2019-01-11T20:09:26", "url": "https://files.pythonhosted.org/packages/69/aa/dc702c5efdefb4ca10ba99aef63afe644e74b3e6b87f226aaba190ced36b/asrtoolkit-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "a1a54dc21a852c243834698c62339d4e", "sha256": "54b0f119ec297f2ee4b0cb2b1991ad1dfc541f17847b9b4eb98f86540903c98c" }, "downloads": -1, "filename": "asrtoolkit-0.1.13.tar.gz", "has_sig": false, "md5_digest": "a1a54dc21a852c243834698c62339d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26488, "upload_time": "2019-02-28T20:16:08", "url": "https://files.pythonhosted.org/packages/fb/18/fe45a7e590663efd6b479d5dcf1836fe242f2cab8b68a7c2f3185367d307/asrtoolkit-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "84cc26a0e5e871a0f80b963105e74943", "sha256": "c6bb57d3daaa39cfd97f436f08d242d038f1f2f921ae6fa6b36e210ec597b3ac" }, "downloads": -1, "filename": "asrtoolkit-0.1.14-py3-none-any.whl", "has_sig": false, "md5_digest": "84cc26a0e5e871a0f80b963105e74943", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30396, "upload_time": "2019-05-09T17:32:38", "url": "https://files.pythonhosted.org/packages/c9/14/00282ab6fdbf696c60b9086676f77944d8e2c5ffeb4def88626ba4a81ffb/asrtoolkit-0.1.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "808e21bf76aefb4cd125f066869678d1", "sha256": "2694f29097519d92f663c3d7eed4f1463fa537d074845aedd4876a05529ca861" }, "downloads": -1, "filename": "asrtoolkit-0.1.14.tar.gz", "has_sig": false, "md5_digest": "808e21bf76aefb4cd125f066869678d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26516, "upload_time": "2019-05-09T17:30:05", "url": "https://files.pythonhosted.org/packages/ae/a6/bcaac4f18add862daa8a0b143e15de72009af705f6a8e4f1770a7d7bdae5/asrtoolkit-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "09189456f7de9322ab9d33108d938e97", "sha256": "5cdb865aa03271c269464174399f1a32f2c0aa3c53f1fa9b872a7604f8fd7a42" }, "downloads": -1, "filename": "asrtoolkit-0.1.15-py3-none-any.whl", "has_sig": false, "md5_digest": "09189456f7de9322ab9d33108d938e97", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30411, "upload_time": "2019-05-13T18:22:51", "url": "https://files.pythonhosted.org/packages/38/e8/63a0d11e790e93f52c730530a3fcbd214e6da892279824f600dced08ce5e/asrtoolkit-0.1.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8b403a9fbce637004f85724d094e016", "sha256": "c885c831798f4782e48072f33abf8e72ed159ec98be3d41e5a9b37f565bc3848" }, "downloads": -1, "filename": "asrtoolkit-0.1.15.tar.gz", "has_sig": false, "md5_digest": "c8b403a9fbce637004f85724d094e016", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26543, "upload_time": "2019-05-13T18:22:53", "url": "https://files.pythonhosted.org/packages/fb/61/c8aadb1ad938788c59aa835ed281f18aa86522d20c218acbe2d204d36e8f/asrtoolkit-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "cfd840c86b3c3c3ca1bc5db205c8cc47", "sha256": "7b832422ed099cd4205139352587f3a1346e06aa234a10cee291b39e0067c3dd" }, "downloads": -1, "filename": "asrtoolkit-0.1.16.tar.gz", "has_sig": false, "md5_digest": "cfd840c86b3c3c3ca1bc5db205c8cc47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26733, "upload_time": "2019-05-16T16:58:13", "url": "https://files.pythonhosted.org/packages/cb/de/24f195dedb95bb57b8e9d642f37adb13f8ec33ea6a0cafecd21a9e726ce5/asrtoolkit-0.1.16.tar.gz" } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "31151d69bef7d4be6b6f6f4b7e95f00f", "sha256": "fceba148e58e63bee144edfc0838378bb53a27633e58a024e9565f9bde63e28c" }, "downloads": -1, "filename": "asrtoolkit-0.1.17-py3.5.egg", "has_sig": false, "md5_digest": "31151d69bef7d4be6b6f6f4b7e95f00f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 69743, "upload_time": "2019-05-22T16:53:52", "url": "https://files.pythonhosted.org/packages/4d/e3/7c4d39fda80b3e082830f9692d41aa9e33b5b39c3c0844d107a78aad7603/asrtoolkit-0.1.17-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "608a7072dc06c5ddc9fa6fd2f55763dc", "sha256": "0e64d7b86b25e65ffb17d3f45084e29098e7441a21b61474ad93199133e9a225" }, "downloads": -1, "filename": "asrtoolkit-0.1.17.tar.gz", "has_sig": false, "md5_digest": "608a7072dc06c5ddc9fa6fd2f55763dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27039, "upload_time": "2019-05-22T16:53:54", "url": "https://files.pythonhosted.org/packages/8d/bd/44f036ca2db8881a89002eb4147ef887ba7fa30b0251f94c922a644ba641/asrtoolkit-0.1.17.tar.gz" } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "ba8d82c19331e7d25d499a931c8f007d", "sha256": "30f216c017191ac19bf4a2236f19cd0efac8fef7e91d83b81430ea3036a9e31e" }, "downloads": -1, "filename": "asrtoolkit-0.1.18.tar.gz", "has_sig": false, "md5_digest": "ba8d82c19331e7d25d499a931c8f007d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27421, "upload_time": "2019-05-23T16:21:41", "url": "https://files.pythonhosted.org/packages/88/ec/4d168255d49a51c557634b9e057de7112cc602313829f1cb15bf97cb0b9e/asrtoolkit-0.1.18.tar.gz" } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "524becedf66d679fac91c62a08a7d41e", "sha256": "8b57d462027c7183e944dff039d2ea31a9e9b9726132d7d31da61d570fabc7c2" }, "downloads": -1, "filename": "asrtoolkit-0.1.19.tar.gz", "has_sig": false, "md5_digest": "524becedf66d679fac91c62a08a7d41e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28523, "upload_time": "2019-06-26T15:04:54", "url": "https://files.pythonhosted.org/packages/f7/a2/c5b4874d93d02a59edd20fe8901345766d1a695efd317c07707ca5ff06f0/asrtoolkit-0.1.19.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "77e887006045301505710efaa2d66ed6", "sha256": "70e6b2cb848f27f9393539722fb850d34501146459fe927351c63367a0bf3146" }, "downloads": -1, "filename": "asrtoolkit-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "77e887006045301505710efaa2d66ed6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23128, "upload_time": "2018-10-18T16:30:08", "url": "https://files.pythonhosted.org/packages/47/08/d57554d677e92d35b1128c79c46569486f6ffe7cd0ffe4ac7f67d7e4455a/asrtoolkit-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2fcdb23c7397af37128830fde897359", "sha256": "377ab1424176f28e329704605f18f175375b0a46b6ba3a0a4a4df4d9be9930f5" }, "downloads": -1, "filename": "asrtoolkit-0.1.2.tar.gz", "has_sig": false, "md5_digest": "d2fcdb23c7397af37128830fde897359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14671, "upload_time": "2018-10-18T16:30:09", "url": "https://files.pythonhosted.org/packages/4a/33/2b89fa64870c0489e5fbdc8246fb4fea7fa1cea18a3dd2028b5f3d361397/asrtoolkit-0.1.2.tar.gz" } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "f50332d1dca56e5dd3e6c5e8c1b957a3", "sha256": "ffe2430b08a79cbc2a9b5e2c6fa75a9c8867035fa25c899dc1776e8bae59a332" }, "downloads": -1, "filename": "asrtoolkit-0.1.20.tar.gz", "has_sig": false, "md5_digest": "f50332d1dca56e5dd3e6c5e8c1b957a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31891, "upload_time": "2019-09-19T19:02:47", "url": "https://files.pythonhosted.org/packages/9a/0b/2d09ef78f504204f658443252d8d691a9880c4ce307262149aabb7391af8/asrtoolkit-0.1.20.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "c28145f182e7e654fb5d2103175b9487", "sha256": "644bf8af32c2a22ab74215322a9dc5c628a335b95642265015fdecd7981aa22c" }, "downloads": -1, "filename": "asrtoolkit-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c28145f182e7e654fb5d2103175b9487", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28389, "upload_time": "2018-10-18T20:37:46", "url": "https://files.pythonhosted.org/packages/e2/4d/b69f4d6681c46101d5e09fa1d3e8f149f1beb4d38142fbeed3f4dc01b307/asrtoolkit-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cef538ee2e7a79f561c2b69cbbb0552a", "sha256": "94a280a23c7059e787f16dbdf28fcf0221866c7568c735147bee4af6f9b3fae7" }, "downloads": -1, "filename": "asrtoolkit-0.1.3.tar.gz", "has_sig": false, "md5_digest": "cef538ee2e7a79f561c2b69cbbb0552a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15319, "upload_time": "2018-10-18T20:37:48", "url": "https://files.pythonhosted.org/packages/31/37/3df189f497c34faa61aac48ff5a90e0a31223cec6d22b50bc44b35cb32fb/asrtoolkit-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "fe8f1f67003cc54376b77bbce0365f71", "sha256": "a22d62498d8f6d13026bbda316eea8f6290e85c7ae4ad02f9f46bc26745c9675" }, "downloads": -1, "filename": "asrtoolkit-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fe8f1f67003cc54376b77bbce0365f71", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28412, "upload_time": "2018-10-18T20:50:20", "url": "https://files.pythonhosted.org/packages/1b/e5/f846226e0e10a6795f94d463ebbafd8201a86deb04da82c2747d9cb3c5ba/asrtoolkit-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e15e0c6473e71780135e1030b6501b8", "sha256": "94aa616a2be4ed67e0aabac4f4bc06774e72425bc633ea1da330b1bf9b720a83" }, "downloads": -1, "filename": "asrtoolkit-0.1.4.tar.gz", "has_sig": false, "md5_digest": "3e15e0c6473e71780135e1030b6501b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15343, "upload_time": "2018-10-18T20:50:22", "url": "https://files.pythonhosted.org/packages/3e/e7/8a62f0bc9e2217038022e6eb07cff555d72aded2a0afc6ba3aa38a1a41a1/asrtoolkit-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "d943997f0bc17ca66e22d7bcbb5bbcf2", "sha256": "2ac4b15d7371be7ac585381cbfaac41512020f9caca568134cb4d16c01655bf3" }, "downloads": -1, "filename": "asrtoolkit-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "d943997f0bc17ca66e22d7bcbb5bbcf2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26732, "upload_time": "2018-10-19T17:16:09", "url": "https://files.pythonhosted.org/packages/ff/86/6de8327d62b533fcd1c41bc2a514dfb47db7aae0e073f79c982e7f65538d/asrtoolkit-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae5afb579b87e271e2bfbd7a2384d7da", "sha256": "097d6d344716b35cc49d34334f5c8f5655857509d7cecc8dc35fdd4489e03900" }, "downloads": -1, "filename": "asrtoolkit-0.1.5.tar.gz", "has_sig": false, "md5_digest": "ae5afb579b87e271e2bfbd7a2384d7da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18087, "upload_time": "2018-10-19T17:16:11", "url": "https://files.pythonhosted.org/packages/60/6e/6e4fb76d7e60b2f46f871182319f760d0303e7360225954d18d122283f94/asrtoolkit-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "63481cbc4321863718fe6ea4843e4480", "sha256": "98baef5382849772eb4223b6415b646608e3f30c77bb68d83e0fa3e786f1c6d8" }, "downloads": -1, "filename": "asrtoolkit-0.1.6.tar.gz", "has_sig": false, "md5_digest": "63481cbc4321863718fe6ea4843e4480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19074, "upload_time": "2018-10-31T21:48:01", "url": "https://files.pythonhosted.org/packages/91/09/eece66c2375194409c68e3fc3e158add3861768304cf5dcdc2c4cb3a9fbf/asrtoolkit-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "c07e0a13a857a0db64389f9a3d745e8a", "sha256": "990a9f76d9f21aab78fb3334c4ae6ec02d7f47e51ab8cadaeba64ac0171ebd28" }, "downloads": -1, "filename": "asrtoolkit-0.1.7.tar.gz", "has_sig": false, "md5_digest": "c07e0a13a857a0db64389f9a3d745e8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24403, "upload_time": "2018-10-31T22:00:22", "url": "https://files.pythonhosted.org/packages/92/bc/44029f092073e31bdb5c8616b6c25c9f3f57c9100cbae610fd918f140efa/asrtoolkit-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "c0160f334fe8a5a2fed5755c68490cda", "sha256": "909ee416888b9442b43592c4509c414b7bb76ae4637e5c9b02f9ed20696cc909" }, "downloads": -1, "filename": "asrtoolkit-0.1.8.tar.gz", "has_sig": false, "md5_digest": "c0160f334fe8a5a2fed5755c68490cda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24253, "upload_time": "2018-11-01T16:01:13", "url": "https://files.pythonhosted.org/packages/55/ac/6e2db80417110b6e8a7195c24152e3a8de97744b250328e0bd047ef82b81/asrtoolkit-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "d54b92fb592eb0237ada1d50ca2616d4", "sha256": "5e22c93c82d8d4432fb280a402ffcb22e9cb744cb288ca12889d1973333c612b" }, "downloads": -1, "filename": "asrtoolkit-0.1.9.tar.gz", "has_sig": false, "md5_digest": "d54b92fb592eb0237ada1d50ca2616d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24235, "upload_time": "2018-11-01T16:33:18", "url": "https://files.pythonhosted.org/packages/1d/f7/4f53ffee6d6cd9169061c6b2448ffc1d400001e7dfc539c9560d9f0c2d31/asrtoolkit-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f50332d1dca56e5dd3e6c5e8c1b957a3", "sha256": "ffe2430b08a79cbc2a9b5e2c6fa75a9c8867035fa25c899dc1776e8bae59a332" }, "downloads": -1, "filename": "asrtoolkit-0.1.20.tar.gz", "has_sig": false, "md5_digest": "f50332d1dca56e5dd3e6c5e8c1b957a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31891, "upload_time": "2019-09-19T19:02:47", "url": "https://files.pythonhosted.org/packages/9a/0b/2d09ef78f504204f658443252d8d691a9880c4ce307262149aabb7391af8/asrtoolkit-0.1.20.tar.gz" } ] }