├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_template.md │ └── feature_request_template.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── ENV ├── .env └── docker.env ├── GSSoC.md ├── LICENSE ├── README.md ├── analysis ├── featuresDump.csv ├── sentences.csv └── sentences_new.csv ├── app.py ├── chatbot.py ├── cleardb.py ├── config.py ├── constants.py ├── databaseconnect.py ├── db-init └── init.sql ├── docker-compose.yml ├── docker-entrypoint.sh ├── features.py ├── featuresDump.py ├── googleMapsApiModule.py ├── init.py ├── logger_config.py ├── model.joblib ├── requirements.txt ├── slackbot.py ├── static └── js │ ├── sugg_button.js │ └── user_input.js ├── suggestive_chatbot.py ├── telegram.py ├── templates └── index.html ├── test_chatbot.py ├── test_databaseconnect.py ├── test_googleMapsApiModule.py ├── test_utilities.py ├── utilities.py └── webapp.py /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .dockerignore 3 | stanford-corenlp-full-2018-10-05/ 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/.github/ISSUE_TEMPLATE/feature_request_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /ENV/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/ENV/.env -------------------------------------------------------------------------------- /ENV/docker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/ENV/docker.env -------------------------------------------------------------------------------- /GSSoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/GSSoC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/README.md -------------------------------------------------------------------------------- /analysis/featuresDump.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/analysis/featuresDump.csv -------------------------------------------------------------------------------- /analysis/sentences.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/analysis/sentences.csv -------------------------------------------------------------------------------- /analysis/sentences_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/analysis/sentences_new.csv -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/app.py -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/chatbot.py -------------------------------------------------------------------------------- /cleardb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/cleardb.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/config.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/constants.py -------------------------------------------------------------------------------- /databaseconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/databaseconnect.py -------------------------------------------------------------------------------- /db-init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/db-init/init.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/features.py -------------------------------------------------------------------------------- /featuresDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/featuresDump.py -------------------------------------------------------------------------------- /googleMapsApiModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/googleMapsApiModule.py -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/init.py -------------------------------------------------------------------------------- /logger_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/logger_config.py -------------------------------------------------------------------------------- /model.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/model.joblib -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /slackbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/slackbot.py -------------------------------------------------------------------------------- /static/js/sugg_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/static/js/sugg_button.js -------------------------------------------------------------------------------- /static/js/user_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/static/js/user_input.js -------------------------------------------------------------------------------- /suggestive_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/suggestive_chatbot.py -------------------------------------------------------------------------------- /telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/telegram.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/templates/index.html -------------------------------------------------------------------------------- /test_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/test_chatbot.py -------------------------------------------------------------------------------- /test_databaseconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/test_databaseconnect.py -------------------------------------------------------------------------------- /test_googleMapsApiModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/test_googleMapsApiModule.py -------------------------------------------------------------------------------- /test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/test_utilities.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/utilities.py -------------------------------------------------------------------------------- /webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/MapBot/HEAD/webapp.py --------------------------------------------------------------------------------