├── .github ├── FUNDING.yml └── workflows │ ├── publish_to_pypi.yml │ └── run_unit_test.yml ├── .gitignore ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── __init__.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_results └── .gitignore ├── tests ├── __init__.py ├── run_tests.py └── text_preprocessing_test.py └── text_preprocessing ├── __init__.py ├── data ├── custom_substitutions.csv └── ignore_spellcheck_words.txt └── text_preprocessing.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: berknology 2 | -------------------------------------------------------------------------------- /.github/workflows/publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/.github/workflows/publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/run_unit_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/.github/workflows/run_unit_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.1' -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/setup.py -------------------------------------------------------------------------------- /test_results/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/text_preprocessing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/tests/text_preprocessing_test.py -------------------------------------------------------------------------------- /text_preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/text_preprocessing/__init__.py -------------------------------------------------------------------------------- /text_preprocessing/data/custom_substitutions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/text_preprocessing/data/custom_substitutions.csv -------------------------------------------------------------------------------- /text_preprocessing/data/ignore_spellcheck_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/text_preprocessing/data/ignore_spellcheck_words.txt -------------------------------------------------------------------------------- /text_preprocessing/text_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berknology/text-preprocessing/HEAD/text_preprocessing/text_preprocessing.py --------------------------------------------------------------------------------