{ "info": { "author": "Carmine DiMAscio", "author_email": "cdimascio@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# py-readability-metrics\n\n![Travis Build](https://travis-ci.org/cdimascio/py-readability-metrics.svg?branch=master) ![Python](https://img.shields.io/badge/python-%203.4%20%7C%203.5%20%7C%203.6-blue.svg) [![Documentation Status](https://readthedocs.org/projects/py-readability-metrics/badge/?version=latest)](https://py-readability-metrics.readthedocs.io/en/latest/?badge=latest) [![wheel](https://img.shields.io/badge/wheel-yes-ff00c9.svg)](https://pypi.org/project/py-readability-metrics/)\n [![MIT license](https://img.shields.io/badge/License-MIT-green.svg)](https://lbesson.mit-license.org/)\n\nScore the _readability_ of text using popular readability metrics including: [Flesch Kincaid Grade Level](#flesch-kincaid-grade-level), [Flesch Reading Ease](#flesch-reading-ease), [Gunning Fog Index](#gunning-fog), [Dale Chall Readability](#dale-chall-readability), [Automated Readability Index (ARI)](#automated-readability-index-ari), [Coleman Liau Index](#coleman-liau-index), [Linsear Write](#linsear-write), and [SMOG](#smog)\n\n

\n \n

\n\n## Install\n\n```shell\npip install py-readability-metrics\npython -m nltk.downloader punkt\n```\n\n## Usage\n\n```python\nfrom readability import Readability\n\nr = Readability(text)\n\nr.flesch_kincaid()\nr.flesch()\nr.gunning_fog()\nr.coleman_liau()\nr.dale_chall()\nr.ari()\nr.linsear_write()\nr.smog()\n```\n\n**\\*Note:** `text` must contain >= 100 words\\*\n\n## Supported Metrics\n\n- [Flesch Kincaid Grade Level](#flesch-kincaid-grade-level)\n- [Flesch Reading Ease](#flesch-reading-ease)\n- [Dale Chall Readability](#dale-chall-readability)\n- [Automated Readability Index (ARI)](#automated-readability-index-ari)\n- [Coleman Liau Index](#coleman-liau-index)\n- [Gunning Fog](#gunning-fog)\n- [SMOG](#smog)\n- [Linsear Write](#linsear-write)\n\n## Readability Metric Details and Properties\n\nAll metrics provide a `score` attribute. Indvidual metrics provide additional properties to increased interpretability. See details below to capture per metric details.\n\n_Note:_ In all examples below `r` is:\n\n```python\nr = Readability(text)\n```\n\n### Flesch-Kincaid Grade Level\n\nThe U.S. Army uses Flesch-Kincaid Grade Level for assessing the difficulty of technical manuals. The commonwealth of Pennsylvania uses Flesch-Kincaid Grade Level for scoring automobile insurance policies to ensure their texts are no higher than a ninth grade level of reading difficulty. Many other U.S. states also use Flesch-Kincaid Grade Level to score other legal documents such as business policies and financial forms.\n\n**_call:_**\n\n```python\nr.flesch_kincaid()\n```\n\n**_example:_**\n\n```python\nfk = r.flesch_kincaid()\nprint(fk.score)\nprint(fk.grade_level)\n```\n\n### Flesch Reading Ease\n\nThe U.S. Department of Defense uses the Reading Ease test as the standard test of readability for its documents and forms. Florida requires that life insurance policies have a Flesch Reading Ease score of 45 or greater.\n\n**_call:_**\n\n```python\nr.flesch()\n```\n\n**_example:_**\n\n```python\nf = r.flesch()\nprint(f.score)\nprint(f.ease)\nprint(f.grade_levels)\n```\n\n### Dale Chall Readability\n\nThe Dale-Chall Formula is an accurate readability formula for the simple reason that it is based on the use of familiar words, rather than syllable or letter counts. Reading tests show that readers usually find it easier to read, process and recall a passage if they find the words familiar.\n\n**_call:_**\n\n```python\nr.dale_chall()\n```\n\n**_example:_**\n\n```python\ndc = dale_chall()\nprint(dc.score)\nprint(dc.grade_levels)\n```\n\n### Automated Readability Index (ARI)\n\nUnlike the other indices, the ARI, along with the Coleman-Liau, relies on a factor of characters per word, instead of the usual syllables per word. ARI is widely used on all types of texts.\n\n**_call:_**\n\n```python\nr.ari()\n```\n\n**_example:_**\n\n```python\nari = r.ari()\nprint(ari.score)\nprint(ari.grade_levels)\nprint(ari.ages)\n```\n\n### Coleman Liau Index\n\nThe Coleman-Liau Formula usually gives a lower grade value than any of the Kincaid, ARI and Flesch values when applied to technical documents.\n\n**_call:_**\n\n```python\nr.coleman_liau()\n```\n\n**_example:_**\n\n```python\ncl = r.coleman_liau()\nprint(cl.score)\nprint(cl.grade_level)\n```\n\n### Gunning Fog\n\nThe Gunning fog index measures the readability of English writing. The index estimates the years of formal education needed to understand the text on a first reading. A fog index of 12 requires the reading level of a U.S. high school senior (around 18 years old).\n\n**_call:_**\n\n```python\nr.gunning_fog()\n```\n\n**_example:_**\n\n```python\ngf = r.gunning_fog()\nprint(gf.score)\nprint(gf.grade_level)\n```\n\n### SMOG\n\nThe SMOG Readability Formula (Simple Measure of Gobbledygook) is a popular method to use on health literacy materials.\n\n**_call:_**\n\n```python\nr.smog()\n```\n\n**_example:_**\n\n```python\ns = r.smog()\nprint(s.score)\nprint(s.grade_level)\n```\n\n### Linsear Write\n\nLinsear Write is a readability metric for English text, purportedly developed for the United States Air Force to help them calculate the readability of their technical manuals.\n\n**_call:_**\n\n```python\nr.linsear_write()\n```\n\n**_example:_**\n\n```python\nlw = r.linsear_write()\nprint(lw.score)\nprint(lw.grade_level)\n```\n\n## [Contributing](CONTRIBUTING.md)\n\nContributions are welcome!\n\n## References\n\n- [Readability Formulas](http://readabilityformulas.com/)\n\n## License\n\n[MIT](LICENSE)\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/cdimascio/py-readability-metrics", "keywords": "readability metrics text difficulty grade level", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "py-readability-metrics", "package_url": "https://pypi.org/project/py-readability-metrics/", "platform": "", "project_url": "https://pypi.org/project/py-readability-metrics/", "project_urls": { "Homepage": "https://github.com/cdimascio/py-readability-metrics" }, "release_url": "https://pypi.org/project/py-readability-metrics/1.3.5/", "requires_dist": [ "nltk" ], "requires_python": "", "summary": "Score text \"Readability\" with popular metrics such as Flesch-Kincaid, Gunning Fog, ARI, Dale Chall, SMOG, and more", "version": "1.3.5" }, "last_serial": 4667098, "releases": { "0.11.7": [ { "comment_text": "", "digests": { "md5": "dd3968fa8a462dcfe0a856bcd54bc4c7", "sha256": "01dce0deb36227a9dd39f4fc369098e0f4dd4df507a14b8f13f9b2935a7de1df" }, "downloads": -1, "filename": "py_readability_metrics-0.11.7-py3-none-any.whl", "has_sig": false, "md5_digest": "dd3968fa8a462dcfe0a856bcd54bc4c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7830, "upload_time": "2019-01-01T02:31:37", "url": "https://files.pythonhosted.org/packages/17/95/8c2e4b13555aba6b892002c8217e487f2088b8a50873d8e6c1ab69a77362/py_readability_metrics-0.11.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "067f890e7088584667edd0a8d607ca08", "sha256": "91c3ec91283389df97a3a71da48eab3aa7d6d006a9e0a79e832d91745515697c" }, "downloads": -1, "filename": "py-readability-metrics-0.11.7.tar.gz", "has_sig": false, "md5_digest": "067f890e7088584667edd0a8d607ca08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4035, "upload_time": "2019-01-01T02:31:39", "url": "https://files.pythonhosted.org/packages/4f/8f/175e12b197cf59193a82006a2cc38441560dd2a83de78943408de5114bdf/py-readability-metrics-0.11.7.tar.gz" } ], "0.11.8": [ { "comment_text": "", "digests": { "md5": "3602c8d474651dd2b868ff16c9d2b6d0", "sha256": "14e3f72cfebcebd026fa149a081e61e696e906e6c457978976ac958cc3eeb899" }, "downloads": -1, "filename": "py_readability_metrics-0.11.8-py3-none-any.whl", "has_sig": false, "md5_digest": "3602c8d474651dd2b868ff16c9d2b6d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7991, "upload_time": "2019-01-01T02:47:14", "url": "https://files.pythonhosted.org/packages/5a/17/b2ae497005070ea53ba7e675c39adf3c01f0c6e22bb43122ba091c74aa2a/py_readability_metrics-0.11.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7be0d61a0d38440ad3d09212bf6b76b3", "sha256": "1c5cf67b449bf01cf21574abdfc2715f0034a3bfadb633083f3a0ef94e71be30" }, "downloads": -1, "filename": "py-readability-metrics-0.11.8.tar.gz", "has_sig": false, "md5_digest": "7be0d61a0d38440ad3d09212bf6b76b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4226, "upload_time": "2019-01-01T02:47:16", "url": "https://files.pythonhosted.org/packages/33/43/5c44ed0190de24ddccfa4235cbf566884c850d175d92dd4cf254b01796fe/py-readability-metrics-0.11.8.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "59546d86b7dafc1bf8b532e87f629f51", "sha256": "42c3882f29aa6af202d39bca91311af36b3b04c9b7e226611e612ae16a28539f" }, "downloads": -1, "filename": "py_readability_metrics-0.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "59546d86b7dafc1bf8b532e87f629f51", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8206, "upload_time": "2019-01-01T04:45:16", "url": "https://files.pythonhosted.org/packages/dd/2f/85a2c79385b9dbe17b03082da19b20f967f67a312e320b37fb4cc969c3f6/py_readability_metrics-0.12.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2117ed50c12b48e2c64a3911bbd0e443", "sha256": "f38d2d649a35a4baeeeaa8930d57424480c82cb8e847d49ddf92186446717b60" }, "downloads": -1, "filename": "py-readability-metrics-0.12.1.tar.gz", "has_sig": false, "md5_digest": "2117ed50c12b48e2c64a3911bbd0e443", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4468, "upload_time": "2019-01-01T04:45:17", "url": "https://files.pythonhosted.org/packages/a4/d5/402d1b13e20641b583dee68443ace609addbe7382d35ad81eb1531078e03/py-readability-metrics-0.12.1.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "b79b415bc1acd09f7aec057213c19bb6", "sha256": "3488f17debb9c544a84cf8038eb36c34a852080ffe17c68f6362d4c8d8c19330" }, "downloads": -1, "filename": "py_readability_metrics-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b79b415bc1acd09f7aec057213c19bb6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8881, "upload_time": "2019-01-01T04:57:45", "url": "https://files.pythonhosted.org/packages/53/a0/4a9f733d420d5e182151e1051fc24c1f8004385b0feac45935fb784de36a/py_readability_metrics-0.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b621e638120248948ed233a25e514e80", "sha256": "0128214135a2c8bbf37e095b1fb24bc930fc7a9bcc801eabe172e786cda6430a" }, "downloads": -1, "filename": "py-readability-metrics-0.13.1.tar.gz", "has_sig": false, "md5_digest": "b621e638120248948ed233a25e514e80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4704, "upload_time": "2019-01-01T04:57:45", "url": "https://files.pythonhosted.org/packages/a6/d2/fe10cb93361e55fa27baee124e837350a612c951d1c4607a067b8d0b4a36/py-readability-metrics-0.13.1.tar.gz" } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "e0a872c777eccba379ef211579335423", "sha256": "eb862a435795b2556275366cf53afa4bd1ffa8bbbe347f3027db1e64689cc41d" }, "downloads": -1, "filename": "py_readability_metrics-0.17.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e0a872c777eccba379ef211579335423", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10880, "upload_time": "2019-01-01T18:09:42", "url": "https://files.pythonhosted.org/packages/3d/fd/b511ece15d12a8c7eb08f74b5c91a64eac7c032a3b978d0bc30b2af14e9b/py_readability_metrics-0.17.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50f7d2d6999ee03432c2cd8d2b7e4aa9", "sha256": "4b4d0e2ca155682374c7272f531b4e1b792b0a99d909e6662219bd652607d484" }, "downloads": -1, "filename": "py-readability-metrics-0.17.1.tar.gz", "has_sig": false, "md5_digest": "50f7d2d6999ee03432c2cd8d2b7e4aa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6290, "upload_time": "2019-01-01T18:09:43", "url": "https://files.pythonhosted.org/packages/1e/94/ffc88ea5634624c12f6a9ee01ca10f2d98eda8d6011f5aa9a8d6b03e9d90/py-readability-metrics-0.17.1.tar.gz" } ], "0.17.2": [ { "comment_text": "", "digests": { "md5": "45048b65638c24ba5b4aaffb20fb817b", "sha256": "6638b2f559e97bf3190cc629bf90d512e60083284a6a611607ea564905e34759" }, "downloads": -1, "filename": "py_readability_metrics-0.17.2-py3-none-any.whl", "has_sig": false, "md5_digest": "45048b65638c24ba5b4aaffb20fb817b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10882, "upload_time": "2019-01-01T18:16:27", "url": "https://files.pythonhosted.org/packages/f8/40/26f94dbfb51a0e73f607dc499785f6c669b114073d4ff1bb02e142336c12/py_readability_metrics-0.17.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "801fcf7625ee34973ce9db14776875d9", "sha256": "c3c3c75dedb9ed6ef6496d8c4609f29775ac794649103a9d41a264bf05d041a8" }, "downloads": -1, "filename": "py-readability-metrics-0.17.2.tar.gz", "has_sig": false, "md5_digest": "801fcf7625ee34973ce9db14776875d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6325, "upload_time": "2019-01-01T18:16:28", "url": "https://files.pythonhosted.org/packages/12/b7/d71ff90181fb01c6aeec68a1c9a57ca7c4133af1fba7847e442d8499c170/py-readability-metrics-0.17.2.tar.gz" } ], "0.17.3": [ { "comment_text": "", "digests": { "md5": "ef9d024dbb7516caf5e18afee6bac7e2", "sha256": "3e0ff2a6b744ca708b4a92437c01af4c38f337dc67567e51a9752967324fbafc" }, "downloads": -1, "filename": "py_readability_metrics-0.17.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ef9d024dbb7516caf5e18afee6bac7e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18489, "upload_time": "2019-01-01T18:19:13", "url": "https://files.pythonhosted.org/packages/b8/2e/70222d4ba621070af1ec472a9f59b7b642ee65c069e078d7b3fe7f716c92/py_readability_metrics-0.17.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d405798a5ffa3fe5429c8165ce2218be", "sha256": "4ad48d58ad7ce41e2cf213b5624eb7c531ee66b7845588ceca395a75d120103d" }, "downloads": -1, "filename": "py-readability-metrics-0.17.3.tar.gz", "has_sig": false, "md5_digest": "d405798a5ffa3fe5429c8165ce2218be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6331, "upload_time": "2019-01-01T18:19:14", "url": "https://files.pythonhosted.org/packages/22/b7/1c2c501bd8a98f09c0a967ff6a896b4e8edde4029ef6a1d299cc85749a11/py-readability-metrics-0.17.3.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "60aa9bff8b3d341f89f85389e0106335", "sha256": "59f7b75a87fd1bd94c0bc4ecc167915c40b0362b29ae5abbfcc7533530e820c6" }, "downloads": -1, "filename": "py_readability_metrics-0.21.1-py3-none-any.whl", "has_sig": false, "md5_digest": "60aa9bff8b3d341f89f85389e0106335", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19427, "upload_time": "2019-01-01T18:52:52", "url": "https://files.pythonhosted.org/packages/56/61/3ea51f629003e2ad2c730a1b64dc2256fd53390313d5f44c212ca2e1643d/py_readability_metrics-0.21.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b95d6cd27139ffa7e58ca7bc2f2c6f59", "sha256": "1d0caa6d290c17dc8c0940215f4568056bccdc73d3741543f13c5d92031aedb6" }, "downloads": -1, "filename": "py-readability-metrics-0.21.1.tar.gz", "has_sig": false, "md5_digest": "b95d6cd27139ffa7e58ca7bc2f2c6f59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6865, "upload_time": "2019-01-01T18:52:53", "url": "https://files.pythonhosted.org/packages/8e/29/27049f4047d7c03345e933326873be92c5e2b3dbc10c70f7807a977803f7/py-readability-metrics-0.21.1.tar.gz" } ], "0.22.1": [ { "comment_text": "", "digests": { "md5": "390eb4721b7a690a930f3b80c01c58f2", "sha256": "c72c65b147f91650f1a8b80180c43902757fda8fdfbb38ce81946b160b70ecfb" }, "downloads": -1, "filename": "py_readability_metrics-0.22.1-py3-none-any.whl", "has_sig": false, "md5_digest": "390eb4721b7a690a930f3b80c01c58f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20156, "upload_time": "2019-01-01T19:10:12", "url": "https://files.pythonhosted.org/packages/61/d5/c90d1ac3ab6f94669f32470579ad0006c0acdcceebb4bcec79b8e5c2c210/py_readability_metrics-0.22.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43f86a1e8d9b30767f9e375b9706260b", "sha256": "1666eabf948f81a98f012efb7255112fc16c26017d39c309107ff257add75088" }, "downloads": -1, "filename": "py-readability-metrics-0.22.1.tar.gz", "has_sig": false, "md5_digest": "43f86a1e8d9b30767f9e375b9706260b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7117, "upload_time": "2019-01-01T19:10:13", "url": "https://files.pythonhosted.org/packages/50/ac/9e3778b01de0a62c7253d44c04dcc9ca356c4a47f0dd0656098a40c7bf6a/py-readability-metrics-0.22.1.tar.gz" } ], "0.23.2": [ { "comment_text": "", "digests": { "md5": "db042ae7dce26bd29e7b6a2adf029017", "sha256": "f1962df1c68515e15d0587ccfabc18d6c15f2c0b604734aef46af634dcbcf049" }, "downloads": -1, "filename": "py_readability_metrics-0.23.2-py3-none-any.whl", "has_sig": false, "md5_digest": "db042ae7dce26bd29e7b6a2adf029017", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21180, "upload_time": "2019-01-01T22:00:38", "url": "https://files.pythonhosted.org/packages/1e/83/9ba552cdc5b918cf84427b40aa55b0894ed554069ab20622541e75c4f249/py_readability_metrics-0.23.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1209be795fa0c1ff3d60897fee51cba8", "sha256": "b69f51ad1587583c0fcaa38af7427fb3a4862f8a38c04544b4d931a2589de90a" }, "downloads": -1, "filename": "py-readability-metrics-0.23.2.tar.gz", "has_sig": false, "md5_digest": "1209be795fa0c1ff3d60897fee51cba8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7808, "upload_time": "2019-01-01T22:00:40", "url": "https://files.pythonhosted.org/packages/53/7a/17fffff1a7f46bc93900cb6910299637bb6e7811f3be9749f6d6b50f6960/py-readability-metrics-0.23.2.tar.gz" } ], "0.23.3": [ { "comment_text": "", "digests": { "md5": "058ad7552f1a839adf791b02315fd2cd", "sha256": "22bcc1619269d5b6ac9c3d0e9b0db9fa59d03066e5abda9ea95024f4eb15fad7" }, "downloads": -1, "filename": "py_readability_metrics-0.23.3-py3-none-any.whl", "has_sig": false, "md5_digest": "058ad7552f1a839adf791b02315fd2cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21185, "upload_time": "2019-01-01T22:01:57", "url": "https://files.pythonhosted.org/packages/d7/00/ec78c32c48c3b9a090c26391b59f8f9a26ba5099466e42ebc124daf9ceec/py_readability_metrics-0.23.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e3f6171927c4f93a2de19dd3dc86246", "sha256": "ab8d9cf10a82a41d623cb58cc7adca67e58d5ffd6e8e27cf20974b3e06bc4766" }, "downloads": -1, "filename": "py-readability-metrics-0.23.3.tar.gz", "has_sig": false, "md5_digest": "4e3f6171927c4f93a2de19dd3dc86246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7814, "upload_time": "2019-01-01T22:01:59", "url": "https://files.pythonhosted.org/packages/ea/6a/72126cbdaab00e4ff80534548545ebcee3002bf034ecea4648f147d224e8/py-readability-metrics-0.23.3.tar.gz" } ], "0.23.4": [ { "comment_text": "", "digests": { "md5": "f71ec73125e0ef94966a9456985b0f06", "sha256": "d984d8602cf73dd925578b60423a09e746dd58c866432024bcbad9282100f612" }, "downloads": -1, "filename": "py_readability_metrics-0.23.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f71ec73125e0ef94966a9456985b0f06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21195, "upload_time": "2019-01-02T04:26:09", "url": "https://files.pythonhosted.org/packages/8f/9c/538b4d696e7fc07d8f95aeadb2b18ee050c98ad54a815560cd1d4d2cecbc/py_readability_metrics-0.23.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "186d847e856bc4c2837b6930c57244e1", "sha256": "dc8af6567e60c8bfc351cbbc8fb5a2c504f6e708071965e7c8fa5da7848c510b" }, "downloads": -1, "filename": "py-readability-metrics-0.23.4.tar.gz", "has_sig": false, "md5_digest": "186d847e856bc4c2837b6930c57244e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7831, "upload_time": "2019-01-02T04:26:11", "url": "https://files.pythonhosted.org/packages/f0/4c/695b2d37b610994646f26760df449c52b67894407c67fe11d37a7a285d11/py-readability-metrics-0.23.4.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "bf072735ac843c110d426baa888148d9", "sha256": "7e5054c766818a115caeca4b9191784d3695dcd0f8105a1ce9663b7237b63d77" }, "downloads": -1, "filename": "py-readability-metrics-1.2.1.tar.gz", "has_sig": false, "md5_digest": "bf072735ac843c110d426baa888148d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8179, "upload_time": "2019-01-06T02:46:23", "url": "https://files.pythonhosted.org/packages/01/51/233d42b1b57653ae60abc3a629214a4f0727553ea3e34fdca99ea8904421/py-readability-metrics-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "da2e51cdf8b503ad618d89132d424a1a", "sha256": "e6ab82209dce4ab42926ae0d986b1fa561487d9071018df1ac6bc800f1f40bd0" }, "downloads": -1, "filename": "py_readability_metrics-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da2e51cdf8b503ad618d89132d424a1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21533, "upload_time": "2019-01-06T18:11:53", "url": "https://files.pythonhosted.org/packages/64/e9/dd59b2bb6fedb30a200852613b71482706e9820ba884c6b77a7acf88dd9c/py_readability_metrics-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e917d7dc92597de6f75b9df6ca18d641", "sha256": "7294e20d607da51062d2e7a1f9facaee567b0a40ed242cd7920585594690a05d" }, "downloads": -1, "filename": "py-readability-metrics-1.3.0.tar.gz", "has_sig": false, "md5_digest": "e917d7dc92597de6f75b9df6ca18d641", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8183, "upload_time": "2019-01-06T18:11:55", "url": "https://files.pythonhosted.org/packages/84/cb/76f82a4f0c98d2bb9ad37d18ef6e98694d67d1613db4a974849fc392b421/py-readability-metrics-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "d8154aaeb9cb96cffbf6465aea925162", "sha256": "134806b78eb9c29e5ca81063b3c94e9a647f4a0173114c1362bd07b3f981c32c" }, "downloads": -1, "filename": "py_readability_metrics-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d8154aaeb9cb96cffbf6465aea925162", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21534, "upload_time": "2019-01-06T18:31:12", "url": "https://files.pythonhosted.org/packages/84/5a/1b6b9b9de6a4ce2c87e3bd656fa67b30d3fc9e2b96d573d4f2f440bf341c/py_readability_metrics-1.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d85e571a5ac4e3d93c6c89ef87531f71", "sha256": "90d28ecba57844899021b3d84f5fce8a93e571973c478f757164ec62ca2f3f1e" }, "downloads": -1, "filename": "py-readability-metrics-1.3.1.tar.gz", "has_sig": false, "md5_digest": "d85e571a5ac4e3d93c6c89ef87531f71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8183, "upload_time": "2019-01-06T18:31:13", "url": "https://files.pythonhosted.org/packages/dd/3a/1bde9ba6a608a067901ec41a9880cb81160bbf1ac29b5d435dd2e8ca38f1/py-readability-metrics-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "618596ec57c431c5baec01358fd51f7f", "sha256": "13c5d9c375299cd1f8b285c438c0016de56845c6af4a37f2eb26e9539e781711" }, "downloads": -1, "filename": "py_readability_metrics-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "618596ec57c431c5baec01358fd51f7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21599, "upload_time": "2019-01-07T00:00:11", "url": "https://files.pythonhosted.org/packages/30/78/56690f8dd82ad9f5b264af91cdaaccb13fe9d963a3c7dfaa594cbb2711cc/py_readability_metrics-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e5d6b7a95d7a34b9665f18c1e92bc4f", "sha256": "e7c38208c19b54c7c6d42147f1e6037634603fc3826c0a1a719dcdd3332c40ca" }, "downloads": -1, "filename": "py-readability-metrics-1.3.2.tar.gz", "has_sig": false, "md5_digest": "0e5d6b7a95d7a34b9665f18c1e92bc4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8244, "upload_time": "2019-01-07T00:00:13", "url": "https://files.pythonhosted.org/packages/f9/b2/27ba863e558e3876cbcca28c3adb04dea459d204e8ffc6d0734f87b6653d/py-readability-metrics-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "954502e1cf6d3902f989a27b7a92a3a7", "sha256": "cc1c3c148a541dd26375d1c133a175dc792fa02e41b84c123c57cf5989b97250" }, "downloads": -1, "filename": "py_readability_metrics-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "954502e1cf6d3902f989a27b7a92a3a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21627, "upload_time": "2019-01-07T00:42:58", "url": "https://files.pythonhosted.org/packages/c1/54/fab103815414646eac852e2941cf1c1bcf1cf567944ad0f4ffd981d7dc33/py_readability_metrics-1.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b9bd043b21e2ab87e4cb6f4e5b3c79a", "sha256": "18650c5299bf7551c18545db8f58d009a8733051800106a9cad0d04b0e63677c" }, "downloads": -1, "filename": "py-readability-metrics-1.3.3.tar.gz", "has_sig": false, "md5_digest": "7b9bd043b21e2ab87e4cb6f4e5b3c79a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8276, "upload_time": "2019-01-07T00:43:00", "url": "https://files.pythonhosted.org/packages/71/2c/54c2197ccd7632ba63866870f19c366cc7539f3d05153b267fbf77bdb674/py-readability-metrics-1.3.3.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "3f379b9417918f0e50377575f2900fa0", "sha256": "f392eb2577853ee75dd31cfbee1bb396c8b4fe701b676f790df51f1c31096d1a" }, "downloads": -1, "filename": "py_readability_metrics-1.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "3f379b9417918f0e50377575f2900fa0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21628, "upload_time": "2019-01-07T01:52:24", "url": "https://files.pythonhosted.org/packages/0f/f7/df6faee55e4b008b398cd3d68ef8d4a263c5342973c808b8ff87e62cf6db/py_readability_metrics-1.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb4f2485801a95b8e9a41874bec4a998", "sha256": "fbf95c2cfd79d37d0c3384fcaaa9aad0fd3ed4df69bcd419b054a01b01e82bef" }, "downloads": -1, "filename": "py-readability-metrics-1.3.5.tar.gz", "has_sig": false, "md5_digest": "eb4f2485801a95b8e9a41874bec4a998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8276, "upload_time": "2019-01-07T01:52:25", "url": "https://files.pythonhosted.org/packages/0e/bc/abb83a20fedc07bab92ddc538ff9a6bf4793d1979a5f204995ec75adc8e3/py-readability-metrics-1.3.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3f379b9417918f0e50377575f2900fa0", "sha256": "f392eb2577853ee75dd31cfbee1bb396c8b4fe701b676f790df51f1c31096d1a" }, "downloads": -1, "filename": "py_readability_metrics-1.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "3f379b9417918f0e50377575f2900fa0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21628, "upload_time": "2019-01-07T01:52:24", "url": "https://files.pythonhosted.org/packages/0f/f7/df6faee55e4b008b398cd3d68ef8d4a263c5342973c808b8ff87e62cf6db/py_readability_metrics-1.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb4f2485801a95b8e9a41874bec4a998", "sha256": "fbf95c2cfd79d37d0c3384fcaaa9aad0fd3ed4df69bcd419b054a01b01e82bef" }, "downloads": -1, "filename": "py-readability-metrics-1.3.5.tar.gz", "has_sig": false, "md5_digest": "eb4f2485801a95b8e9a41874bec4a998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8276, "upload_time": "2019-01-07T01:52:25", "url": "https://files.pythonhosted.org/packages/0e/bc/abb83a20fedc07bab92ddc538ff9a6bf4793d1979a5f204995ec75adc8e3/py-readability-metrics-1.3.5.tar.gz" } ] }