{ "info": { "author": "Shivam Bansal, Chaitanya Aggarwal", "author_email": "shivam5992@gmail.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7" ], "description": "# textstat \r\nPython package to calculate statistics from text to determine readability, complexity and grade level of a particular corpus.\r\n\r\n[![Downloads](https://img.shields.io/badge/dynamic/json.svg?url=https://pypistats.org/api/packages/textstat/recent?mirrors=false&label=downloads&query=$.data.last_month&suffix=/month)](https://pypistats.org/packages/textstat)\r\n\r\n## Usage\r\n\r\n```python\r\n>>> import textstat\r\n\r\n>>> test_data = (\r\n \"Playing games has always been thought to be important to \"\r\n \"the development of well-balanced and creative children; \"\r\n \"however, what part, if any, they should play in the lives \"\r\n \"of adults has never been researched that deeply. I believe \"\r\n \"that playing games is every bit as important for adults \"\r\n \"as for children. Not only is taking time out to play games \"\r\n \"with our children and other adults valuable to building \"\r\n \"interpersonal relationships but is also a wonderful way \"\r\n \"to release built up tension.\"\r\n)\r\n\r\n>>> textstat.flesch_reading_ease(test_data)\r\n>>> textstat.smog_index(test_data)\r\n>>> textstat.flesch_kincaid_grade(test_data)\r\n>>> textstat.coleman_liau_index(test_data)\r\n>>> textstat.automated_readability_index(test_data)\r\n>>> textstat.dale_chall_readability_score(test_data)\r\n>>> textstat.difficult_words(test_data)\r\n>>> textstat.linsear_write_formula(test_data)\r\n>>> textstat.gunning_fog(test_data)\r\n>>> textstat.text_standard(test_data)\r\n```\r\n\r\nThe argument (text) for all the defined functions remains the same -\r\ni.e the text for which statistics need to be calculated.\r\n\r\n## Install\r\n\r\nYou can install textstat either via the Python Package Index (PyPI) or from source.\r\n\r\n#### Install using pip\r\n\r\n```shell\r\npip install textstat\r\n```\r\n\r\n#### Install using easy_install\r\n\r\n```shell\r\neasy_install textstat\r\n```\r\n\r\n#### Install lastest version from GitHub\r\n\r\n```shell\r\ngit clone https://github.com/shivam5992/textstat.git\r\ncd textstat\r\npip install .\r\n```\r\n\r\n#### Install from PyPI\r\n\r\nDownload the latest version of textstat from http://pypi.python.org/pypi/textstat/\r\n\r\nYou can install it by doing the following:\r\n\r\n```shell\r\ntar xfz textstat-*.tar.gz\r\ncd textstat-*/\r\npython setup.py build\r\npython setup.py install # as root\r\n```\r\n\r\n## List of Functions\r\n\r\n### Syllable Count\r\n\r\n```python\r\ntextstat.syllable_count(text, lang='en_US')\r\n```\r\n\r\nReturns the number of syllables present in the given text.\r\n\r\nUses the Python module [Pyphen](https://github.com/Kozea/Pyphen)\r\nfor syllable calculation. Optional `lang` specifies to\r\nPyphen which language dictionary to use.\r\n\r\nDefault is `'en_US'`, `'en_GB'` will also work.\r\n\r\n\r\n### Lexicon Count\r\n\r\n```python\r\ntextstat.lexicon_count(text, removepunct=True)\r\n```\r\n\r\nCalculates the number of words present in the text.\r\nOptional `removepunct` specifies whether we need to take\r\npunctuation symbols into account while counting lexicons.\r\nDefault value is `True`, which removes the punctuation\r\nbefore counting lexicon items.\r\n\r\n### Sentence Count\r\n\r\n```python\r\ntextstat.sentence_count(text)\r\n```\r\n\r\nReturns the number of sentences present in the given text.\r\n\r\n\r\n### The Flesch Reading Ease formula\r\n\r\n```python\r\ntextstat.flesch_reading_ease(text)\r\n```\r\n\r\nReturns the Flesch Reading Ease Score.\r\n\r\nThe following table can be helpful to assess the ease of\r\nreadability in a document.\r\n\r\nThe table is an _example_ of values. While the\r\nmaximum score is 121.22, there is no limit on how low\r\nthe score can be. A negative score is valid.\r\n\r\n| Score | Difficulty |\r\n|-------|-------------------|\r\n|90-100 | Very Easy |\r\n| 80-89 | Easy |\r\n| 70-79 | Fairly Easy |\r\n| 60-69 | Standard |\r\n| 50-59 | Fairly Difficult |\r\n| 30-49 | Difficult |\r\n| 0-29 | Very Confusing |\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests#Flesch_reading_ease)\r\n\r\n### The Flesch-Kincaid Grade Level\r\n\r\n```python\r\ntextstat.flesch_kincaid_grade(text)\r\n```\r\n\r\nReturns the Flesch-Kincaid Grade of the given text. This is a grade\r\nformula in that a score of 9.3 means that a ninth grader would be able to\r\nread the document.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests#Flesch%E2%80%93Kincaid_grade_level)\r\n\r\n### The Fog Scale (Gunning FOG Formula)\r\n\r\n```python\r\ntextstat.gunning_fog(text)\r\n```\r\n\r\nReturns the FOG index of the given text. This is a grade formula in that\r\na score of 9.3 means that a ninth grader would be able to read the document.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Gunning_fog_index)\r\n\r\n### The SMOG Index\r\n\r\n```python\r\ntextstat.smog_index(text)\r\n```\r\n\r\nReturns the SMOG index of the given text. This is a grade formula in that\r\na score of 9.3 means that a ninth grader would be able to read the document.\r\n\r\nTexts of fewer than 30 sentences are statistically invalid, because\r\nthe SMOG formula was normed on 30-sentence samples. textstat requires atleast\r\n3 sentences for a result.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/SMOG)\r\n\r\n### Automated Readability Index\r\n\r\n```python\r\ntextstat.automated_readability_index(text)\r\n```\r\n\r\nReturns the ARI (Automated Readability Index) which outputs\r\na number that approximates the grade level needed to\r\ncomprehend the text.\r\n\r\nFor example if the ARI is 6.5, then the grade level to comprehend\r\nthe text is 6th to 7th grade.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Automated_readability_index)\r\n\r\n### The Coleman-Liau Index\r\n\r\n```python\r\ntextstat.coleman_liau_index(text)\r\n```\r\n\r\nReturns the grade level of the text using the Coleman-Liau Formula. This is\r\na grade formula in that a score of 9.3 means that a ninth grader would be\r\nable to read the document.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Coleman%E2%80%93Liau_index)\r\n\r\n### Linsear Write Formula\r\n\r\n```python\r\ntextstat.linsear_write_formula(text)\r\n```\r\n\r\nReturns the grade level using the Linsear Write Formula. This is\r\na grade formula in that a score of 9.3 means that a ninth grader would be\r\nable to read the document.\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Linsear_Write)\r\n\r\n### Dale-Chall Readability Score\r\n\r\n```python\r\ntextstat.dale_chall_readability_score(text)\r\n```\r\n\r\nDifferent from other tests, since it uses a lookup table\r\nof the most commonly used 3000 English words. Thus it returns\r\nthe grade level using the New Dale-Chall Formula.\r\n\r\n| Score | Understood by |\r\n|-------------|-----------------------------------------------|\r\n|4.9 or lower | average 4th-grade student or lower |\r\n| 5.0\u20135.9 | average 5th or 6th-grade student |\r\n| 6.0\u20136.9 | average 7th or 8th-grade student |\r\n| 7.0\u20137.9 | average 9th or 10th-grade student |\r\n| 8.0\u20138.9 | average 11th or 12th-grade student |\r\n| 9.0\u20139.9 | average 13th to 15th-grade (college) student |\r\n\r\n> Further reading on\r\n[Wikipedia](https://en.wikipedia.org/wiki/Dale%E2%80%93Chall_readability_formula)\r\n\r\n### Readability Consensus based upon all the above tests\r\n\r\n```python\r\ntextstat.text_standard(text, float_output=False)\r\n```\r\n\r\nBased upon all the above tests, returns the estimated school\r\ngrade level required to understand the text.\r\n\r\nOptional `float_output` allows the score to be returned as a\r\n`float`. Defaults to `False`.\r\n\r\n\r\n\r\n## Contributing\r\n\r\nIf you find any problems, you should open an\r\n[issue](https://github.com/shivam5992/textstat/issues).\r\n\r\nIf you can fix an issue you've found, or another issue, you should open\r\na [pull request](https://github.com/shivam5992/textstat/pulls).\r\n\r\n1. Fork this repository on GitHub to start making your changes to the master\r\nbranch (or branch off of it).\r\n2. Write a test which shows that the bug was fixed or that the feature works as expected.\r\n3. Send a pull request!\r\n\r\n### Development setup\r\n\r\n> It is recommended you use a [virtual environment](\r\nhttps://docs.python.org/3/tutorial/venv.html), or [Pipenv](\r\nhttps://docs.pipenv.org/) to keep your development work isolated from your\r\nsystems Python installation.\r\n\r\n```bash\r\n$ git clone https://github.com//textstat.git # Clone the repo from your fork\r\n$ cd textstat\r\n$ pip install -r requirements.txt # Install all dependencies\r\n\r\n$ # Make changes\r\n\r\n$ python -m unittest test.py # Run tests\r\n```\r\n\r\n\r\n\r\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/shivam5992/textstat", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "textstat", "package_url": "https://pypi.org/project/textstat/", "platform": "", "project_url": "https://pypi.org/project/textstat/", "project_urls": { "Homepage": "https://github.com/shivam5992/textstat" }, "release_url": "https://pypi.org/project/textstat/0.5.6/", "requires_dist": [ "pyphen", "repoze.lru" ], "requires_python": "", "summary": "Calculate statistical features from text", "version": "0.5.6" }, "last_serial": 4992495, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b8ab47fe14eeb936ac5e70c1e181df91", "sha256": "394c5ad076efea174616bf904db776ac2a77196da13d4f35afd5d8349aba56aa" }, "downloads": -1, "filename": "textstat-0.1.tar.gz", "has_sig": false, "md5_digest": "b8ab47fe14eeb936ac5e70c1e181df91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4161, "upload_time": "2014-06-30T06:44:53", "url": "https://files.pythonhosted.org/packages/2d/9f/6c3dc1d0792552ddbba923f8b65e47894f8a90583389ab8cb1d8520d1577/textstat-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "24bfc12f7ccdc486f94be42e71370baf", "sha256": "6d6f9267885b4c21d8df072e10f7f3e962cd35e49d3c6cfb51ba5543eb6243eb" }, "downloads": -1, "filename": "textstat-0.1.1.tar.gz", "has_sig": false, "md5_digest": "24bfc12f7ccdc486f94be42e71370baf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3906, "upload_time": "2014-06-30T06:55:04", "url": "https://files.pythonhosted.org/packages/92/69/f2ec3e66b750550bd8b20ec8560823437d3e11edc2410eacbb8c61f03653/textstat-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "cb863a2afea1ce97720afbe8d50d1075", "sha256": "a5dfea378f2332f646812c8fd0ee6e1174721b04904eb2a154f943f90075c0ca" }, "downloads": -1, "filename": "textstat-0.1.2.tar.gz", "has_sig": false, "md5_digest": "cb863a2afea1ce97720afbe8d50d1075", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2212, "upload_time": "2014-06-30T07:37:03", "url": "https://files.pythonhosted.org/packages/78/be/8b6fdb66e834ac0280318330e13cae0718de709e9f626232dcb5f0c13d06/textstat-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "95757338a1efc1fe81872fe6d6035c92", "sha256": "c67b9aebde9a9112cb1d49086b37677bc785dd66308d728294a91bb6699029ff" }, "downloads": -1, "filename": "textstat-0.1.3.tar.gz", "has_sig": false, "md5_digest": "95757338a1efc1fe81872fe6d6035c92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5079, "upload_time": "2014-07-03T09:04:52", "url": "https://files.pythonhosted.org/packages/f5/73/b46cd8cc2a9c8b70b469cf260b44bad87bf2d3e14d9446887921510607bf/textstat-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "18d26e6f1116784384158ec216157798", "sha256": "e081b00be9923b1d3c8dc9fd504d462dbbeee56ec0e46bef96bf2b827fcc2c64" }, "downloads": -1, "filename": "textstat-0.1.4.tar.gz", "has_sig": false, "md5_digest": "18d26e6f1116784384158ec216157798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4975, "upload_time": "2014-07-04T03:55:15", "url": "https://files.pythonhosted.org/packages/e2/3d/e0c6fda06b67cb9f513b7774486a4ba93f2abf00fe395347623214b5950d/textstat-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "1d9a656421cdb9d2cbcb0965ad39e0ae", "sha256": "c5ba609b71702d5fd8ae5eabd8d4a1b355bf1af8af868da4b2cbe82233b8429d" }, "downloads": -1, "filename": "textstat-0.1.5.tar.gz", "has_sig": false, "md5_digest": "1d9a656421cdb9d2cbcb0965ad39e0ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15699, "upload_time": "2014-07-04T10:23:09", "url": "https://files.pythonhosted.org/packages/b9/71/8e154c8324b910267112cc37b06b99c59bf07ee46944f203d7d73a2c3a63/textstat-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "762759879ef2ef4ffe0be173612b4b87", "sha256": "8f458d70ccb2d1c9ee91894d8307e4ab5cf0365ee2d695c04b91eef72d71d9b9" }, "downloads": -1, "filename": "textstat-0.1.6.tar.gz", "has_sig": false, "md5_digest": "762759879ef2ef4ffe0be173612b4b87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15796, "upload_time": "2014-07-04T16:37:57", "url": "https://files.pythonhosted.org/packages/fa/0e/416bff9ef5650fe170f8e7ac97920cedfd410e4bcb9154c90e48886c9a9f/textstat-0.1.6.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "d1efad405c490da0c7fbed7833308579", "sha256": "2a21e4db4d0c458f346e46ee579bad5c367b6fcad0e73ad9aa5516bb9ae637d2" }, "downloads": -1, "filename": "textstat-0.2.tar.gz", "has_sig": false, "md5_digest": "d1efad405c490da0c7fbed7833308579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15731, "upload_time": "2015-11-13T16:24:50", "url": "https://files.pythonhosted.org/packages/38/7c/da2363da8a65a993e2277445769c9e5309b659f63d9428fe60ec3bcd52f4/textstat-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "80d2bdc17c82be969e5e9d7604a0e0a1", "sha256": "d2449fff6e51e52279f47d4971cd12321d7de97974eb0c546e5e3a93405f7d42" }, "downloads": -1, "filename": "textstat-0.3.tar.gz", "has_sig": false, "md5_digest": "80d2bdc17c82be969e5e9d7604a0e0a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5383, "upload_time": "2016-08-08T09:29:14", "url": "https://files.pythonhosted.org/packages/c1/75/6b1716f3e716d0453f7181dee2245c47aa77272dfc0b997b9002330f2088/textstat-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e99922f214d94bcb1cde821dfb2254b6", "sha256": "14154a3d8932655ac5b2088d322d3dadbb51a3ee477997a2c7f12de5cabc59a3" }, "downloads": -1, "filename": "textstat-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e99922f214d94bcb1cde821dfb2254b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15626, "upload_time": "2016-08-10T06:52:56", "url": "https://files.pythonhosted.org/packages/ab/07/3659a750b1d0e45571bcd2b97ca541685e185593ef739d736c836caa352e/textstat-0.3.1.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "2958ad2b94f8429eea8e243c5e33826d", "sha256": "f26f156dcd019a4dfaabccfc70fb60d82c72e0fb77c679d19994dbe1604ccecc" }, "downloads": -1, "filename": "textstat-0.4.1.tar.gz", "has_sig": false, "md5_digest": "2958ad2b94f8429eea8e243c5e33826d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15900, "upload_time": "2017-11-30T06:18:21", "url": "https://files.pythonhosted.org/packages/1c/32/018fc612219b4dc27c263f24844fc7bef8eeb9ba78b6e973f4f50e5607d8/textstat-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "6fe64427fbf3c69dc52f856756418048", "sha256": "a3510338f94eb7e2cb314b8361a70e9165b03ce31a31a0a5605bb0c9adf2d6c3" }, "downloads": -1, "filename": "textstat-0.5.0.tar.gz", "has_sig": false, "md5_digest": "6fe64427fbf3c69dc52f856756418048", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19138, "upload_time": "2018-10-24T12:54:49", "url": "https://files.pythonhosted.org/packages/4b/99/9d98cb0682445a535f68f1ec0b440da053d39824e54eba2810abaf409e46/textstat-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "792119f7660269d22e5bca7e0cd1e019", "sha256": "2fd888191f4d312b2c639f0bf7fb44ed60890fb7c125f72df0d8f1d377b24a5d" }, "downloads": -1, "filename": "textstat-0.5.1.tar.gz", "has_sig": false, "md5_digest": "792119f7660269d22e5bca7e0cd1e019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19114, "upload_time": "2018-10-28T17:11:07", "url": "https://files.pythonhosted.org/packages/9a/b0/15bbb9ee607f3635c6c484d557ff4c84e3dc061aba17971f7edc6b8197c5/textstat-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "d84a37938aef0df583d4252550002c7b", "sha256": "73733c93a09405c3340d0d907279766309859d13152d0e1c1de4c26bb5f5afcc" }, "downloads": -1, "filename": "textstat-0.5.2.tar.gz", "has_sig": false, "md5_digest": "d84a37938aef0df583d4252550002c7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18719, "upload_time": "2018-11-12T17:29:37", "url": "https://files.pythonhosted.org/packages/87/d3/de224980b0b1786b66f2ab6dc3907849fb1c633ac967933b489bbcd7953f/textstat-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "aa3a26ab7fd004b447cabc7702e6555b", "sha256": "a9e9a3c20c18bc2587d1c668fa8867430b6148aff68b95632827f74abd25d492" }, "downloads": -1, "filename": "textstat-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "aa3a26ab7fd004b447cabc7702e6555b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16012, "upload_time": "2018-11-21T22:13:58", "url": "https://files.pythonhosted.org/packages/12/30/3c32d72c5e08936ba094c248c59b4a3e280364a3973c566316f7fa6f5672/textstat-0.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e439c133ad09ddcccce8cddc3580c862", "sha256": "68cab6ea173c08219066c89ecbd9abe5605f55de5cc4790316173458321e7cb2" }, "downloads": -1, "filename": "textstat-0.5.3.tar.gz", "has_sig": false, "md5_digest": "e439c133ad09ddcccce8cddc3580c862", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18871, "upload_time": "2018-11-21T22:14:02", "url": "https://files.pythonhosted.org/packages/de/93/d3513bc3526b705deff466a2211c0915e11b611da1dfa0d8415ab7d9c0a1/textstat-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "2a281162f5cb49fe1cd210dbc87755aa", "sha256": "66e24bbb8ae8b7b616f605588033b7860f850f1fcc72a5da8c838c8cda8c397d" }, "downloads": -1, "filename": "textstat-0.5.4.tar.gz", "has_sig": false, "md5_digest": "2a281162f5cb49fe1cd210dbc87755aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19305, "upload_time": "2018-12-02T16:21:51", "url": "https://files.pythonhosted.org/packages/9b/78/a050fa0f13c04db10c891167204e2cd0c0ae1be40842a10eaf5348360f94/textstat-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "fac2c8a2d2019a5466509844a9479ccd", "sha256": "35cd37b5db1f8569cc56b82563db469347fba1b346ce65599bc7638487e2f7a3" }, "downloads": -1, "filename": "textstat-0.5.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fac2c8a2d2019a5466509844a9479ccd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16194, "upload_time": "2019-03-21T16:49:41", "url": "https://files.pythonhosted.org/packages/4c/92/95fe083fb083b69ff6c319451c60dbd0eaea09a14bb4252bdfec666bb821/textstat-0.5.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06effc42c9e40ca10431b95a79306b9b", "sha256": "fc5aefd15e8f8c00bff13b28c5af3d5dfbe97abd71681758fad61bfc08b97ee1" }, "downloads": -1, "filename": "textstat-0.5.5.tar.gz", "has_sig": false, "md5_digest": "06effc42c9e40ca10431b95a79306b9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19046, "upload_time": "2019-03-21T16:49:43", "url": "https://files.pythonhosted.org/packages/70/d1/3b60df03a5206dc4243832ffe83936231310e5744fb1917103ef2dfca8e7/textstat-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "ee9f9ee64f382ba494b28f047e730fd3", "sha256": "c50ad2691763c74508e35e554da2ad8aee748537c999388f93e218fcab9ab12f" }, "downloads": -1, "filename": "textstat-0.5.6-py2-none-any.whl", "has_sig": false, "md5_digest": "ee9f9ee64f382ba494b28f047e730fd3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16257, "upload_time": "2019-03-27T12:31:47", "url": "https://files.pythonhosted.org/packages/8c/d9/ca110b1e5e410ebe1d4cae0f082c15a7b2e4cfcd9c1c07eedd6a499c6013/textstat-0.5.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4d67cb24ff9fb78b4d347ac6c2626f6", "sha256": "fd225f95cb558fa2923b2bea4991f77e8dcd66eb9b544824a297b04a6a0d4425" }, "downloads": -1, "filename": "textstat-0.5.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a4d67cb24ff9fb78b4d347ac6c2626f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16202, "upload_time": "2019-03-27T12:31:49", "url": "https://files.pythonhosted.org/packages/66/73/97bb64c89d6f2b24be6ad76007823e19b4c32ed4d484420b3ec6892ac440/textstat-0.5.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7c0aa86b6e5e4032ba353f41516d0d2", "sha256": "5e1342bf87b4660f5437a36ce0a12cc987885187527c97c6b1f19557811df4d6" }, "downloads": -1, "filename": "textstat-0.5.6.tar.gz", "has_sig": false, "md5_digest": "a7c0aa86b6e5e4032ba353f41516d0d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19231, "upload_time": "2019-03-27T12:31:50", "url": "https://files.pythonhosted.org/packages/54/5c/bb959d97c28f321483dc37da8b3cb85ba9a3904deba967f917b7dc401121/textstat-0.5.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ee9f9ee64f382ba494b28f047e730fd3", "sha256": "c50ad2691763c74508e35e554da2ad8aee748537c999388f93e218fcab9ab12f" }, "downloads": -1, "filename": "textstat-0.5.6-py2-none-any.whl", "has_sig": false, "md5_digest": "ee9f9ee64f382ba494b28f047e730fd3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16257, "upload_time": "2019-03-27T12:31:47", "url": "https://files.pythonhosted.org/packages/8c/d9/ca110b1e5e410ebe1d4cae0f082c15a7b2e4cfcd9c1c07eedd6a499c6013/textstat-0.5.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4d67cb24ff9fb78b4d347ac6c2626f6", "sha256": "fd225f95cb558fa2923b2bea4991f77e8dcd66eb9b544824a297b04a6a0d4425" }, "downloads": -1, "filename": "textstat-0.5.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a4d67cb24ff9fb78b4d347ac6c2626f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16202, "upload_time": "2019-03-27T12:31:49", "url": "https://files.pythonhosted.org/packages/66/73/97bb64c89d6f2b24be6ad76007823e19b4c32ed4d484420b3ec6892ac440/textstat-0.5.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7c0aa86b6e5e4032ba353f41516d0d2", "sha256": "5e1342bf87b4660f5437a36ce0a12cc987885187527c97c6b1f19557811df4d6" }, "downloads": -1, "filename": "textstat-0.5.6.tar.gz", "has_sig": false, "md5_digest": "a7c0aa86b6e5e4032ba353f41516d0d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19231, "upload_time": "2019-03-27T12:31:50", "url": "https://files.pythonhosted.org/packages/54/5c/bb959d97c28f321483dc37da8b3cb85ba9a3904deba967f917b7dc401121/textstat-0.5.6.tar.gz" } ] }