├── .gitignore ├── LICENSE ├── README.md ├── ptwist_logo.png ├── requirements.txt ├── requirements_installer.py ├── tests ├── test_cases_generator.py └── twitter_preprocessor_tests.py ├── twitter_logo.png └── twitter_preprocessor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /ptwist_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/ptwist_logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nltk 2 | -------------------------------------------------------------------------------- /requirements_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/requirements_installer.py -------------------------------------------------------------------------------- /tests/test_cases_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/tests/test_cases_generator.py -------------------------------------------------------------------------------- /tests/twitter_preprocessor_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/tests/twitter_preprocessor_tests.py -------------------------------------------------------------------------------- /twitter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/twitter_logo.png -------------------------------------------------------------------------------- /twitter_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasisouv/tweets-preprocessor/HEAD/twitter_preprocessor.py --------------------------------------------------------------------------------