├── .gitignore ├── .igitignore ├── __init__.py ├── appos ├── __init__.py └── appos.py ├── cleaner.py ├── emoticons ├── __init__.py ├── emo.py ├── emoticons.py ├── emoticons.txt └── tryin.py ├── readme.md ├── slangs ├── __init__.py └── slangs.py └── stopwords ├── __init__.py └── stopwords.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.igitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appos/appos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/appos/appos.py -------------------------------------------------------------------------------- /cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/cleaner.py -------------------------------------------------------------------------------- /emoticons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emoticons/emo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/emoticons/emo.py -------------------------------------------------------------------------------- /emoticons/emoticons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/emoticons/emoticons.py -------------------------------------------------------------------------------- /emoticons/emoticons.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emoticons/tryin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/emoticons/tryin.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/readme.md -------------------------------------------------------------------------------- /slangs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slangs/slangs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/slangs/slangs.py -------------------------------------------------------------------------------- /stopwords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stopwords/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amansrivastava17/text-preprocess-python/HEAD/stopwords/stopwords.py --------------------------------------------------------------------------------