gitextract_d9nsa0ec/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── build-release.yml ├── .gitignore ├── .konchrc ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── NOTICE ├── README.rst ├── RELEASING.md ├── SECURITY.md ├── docs/ │ ├── Makefile │ ├── _templates/ │ │ ├── side-primary.html │ │ └── side-secondary.html │ ├── _themes/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── flask_theme_support.py │ │ ├── kr/ │ │ │ ├── layout.html │ │ │ ├── relations.html │ │ │ ├── static/ │ │ │ │ ├── flasky.css_t │ │ │ │ └── small_flask.css │ │ │ └── theme.conf │ │ └── kr_small/ │ │ ├── layout.html │ │ ├── static/ │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── advanced_usage.rst │ ├── api_reference.rst │ ├── authors.rst │ ├── changelog.rst │ ├── classifiers.rst │ ├── conf.py │ ├── contributing.rst │ ├── extensions.rst │ ├── index.rst │ ├── install.rst │ ├── license.rst │ ├── make.bat │ └── quickstart.rst ├── pyproject.toml ├── src/ │ └── textblob/ │ ├── __init__.py │ ├── _text.py │ ├── base.py │ ├── blob.py │ ├── classifiers.py │ ├── decorators.py │ ├── download_corpora.py │ ├── en/ │ │ ├── __init__.py │ │ ├── en-context.txt │ │ ├── en-entities.txt │ │ ├── en-lexicon.txt │ │ ├── en-morphology.txt │ │ ├── en-sentiment.xml │ │ ├── en-spelling.txt │ │ ├── inflect.py │ │ ├── np_extractors.py │ │ ├── parsers.py │ │ ├── sentiments.py │ │ └── taggers.py │ ├── exceptions.py │ ├── formats.py │ ├── inflect.py │ ├── mixins.py │ ├── np_extractors.py │ ├── parsers.py │ ├── sentiments.py │ ├── taggers.py │ ├── tokenizers.py │ ├── utils.py │ └── wordnet.py ├── tests/ │ ├── __init__.py │ ├── data.csv │ ├── data.json │ ├── data.tsv │ ├── test_blob.py │ ├── test_classifiers.py │ ├── test_decorators.py │ ├── test_formats.py │ ├── test_inflect.py │ ├── test_np_extractor.py │ ├── test_parsers.py │ ├── test_sentiments.py │ ├── test_taggers.py │ ├── test_tokenizers.py │ └── test_utils.py └── tox.ini