Metadata-Version: 2.1
Name: bda-chatbot
Version: 1.0.0
Summary: Source code for the bda chatbot bachelor thesis fs19
Home-page: https://github.com/bda-19fs/bda-chatbot
Author: Alan Meile, Cyrill Jauner
Author-email: alan.meile@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >3.6
Description-Content-Type: text/markdown
Requires-Dist: Click (==7.0)
Requires-Dist: nltk (==3.4)
Requires-Dist: numpy (==1.16.2)
Requires-Dist: pandas (==0.24.2)
Requires-Dist: untangle (==1.1.1)


BDA Chatbot fs19

BDA Chatbot implementation for NLP Pipeline. Currently supports following NLP strategies:
- normalization
- remove stopwords
- stemming
- lemmatization

Example
> echo "Hallo liebe Welt!" | python3 normalize.py | python3 stemm.py

hallo lieb welt


