How to use the textstat.textstat.textstat function in textstat

To help you get started, we’ve selected a few textstat examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github shivam5992 / textstat / textstat / __init__.py View on Github external
from .textstat import textstat


__version__ = (0, 5, 6)


for attribute in dir(textstat):
    if callable(getattr(textstat, attribute)):
        if not attribute.startswith("_"):
            globals()[attribute] = getattr(textstat, attribute)
github shivam5992 / textstat / textstat / __init__.py View on Github external
from .textstat import textstat


__version__ = (0, 5, 6)


for attribute in dir(textstat):
    if callable(getattr(textstat, attribute)):
        if not attribute.startswith("_"):
            globals()[attribute] = getattr(textstat, attribute)