Metadata-Version: 1.0 Name: ReadabilityCalculator Version: 0.1.6 Summary: Estimate the readability of a text, e.g., the required reading skill level to understand a text. Home-page: http://pypi.python.org/pypi/ReadabilityCalculator/ Author: Joao Palotti Author-email: joaopalotti@gmail.com License: LICENSE.txt Description: ====================== Readability Calculator ====================== Readability calculator is a simple program to estimate how skilled a reader must be to understand a piece of text. There is a large number of methods for that. The following ones are implemented in the current version of this program: 1. `Flesh Reading Ease `_ 2. `Flesh Kincaid Grade Level `_ 3. `Coleman Liau Index `_ 4. `Gunning Fog Index `_ 5. `SMOG Index `_ 6. `ARI Index `_ 7. `LIX Index `_ 8. `Dale-Chall Score `_ Usage ----- #!/usr/bin/env python from readcalc import readcalc calc = readcalc.ReadCalc("This is a simple text.") print calc.get_smog_index() Platform: UNKNOWN