├── .gitignore ├── ChatbotWebsite ├── __init__.py ├── chatbot │ ├── __init__.py │ ├── chatbot.py │ ├── mindfulness.py │ ├── routes.py │ ├── test.py │ └── topic.py ├── config.py ├── errors │ ├── __init__.py │ └── handlers.py ├── journal │ ├── __init__.py │ ├── forms.py │ └── routes.py ├── main │ ├── __init__.py │ └── routes.py ├── models.py ├── static │ ├── data │ │ ├── intents.json │ │ ├── tests.json │ │ └── topics.json │ ├── images │ │ ├── chatbot.png │ │ ├── login.jpg │ │ └── register.jpg │ ├── mindfulness │ │ ├── Body Scan Meditation.mp3 │ │ ├── Breathing Retraining.mp3 │ │ ├── Mountain Meditation.mp3 │ │ ├── Rain and Thunder Sounds.mp3 │ │ └── mindfulness.json │ ├── profile_images │ │ ├── 0023216fc20a64d3.jpg │ │ ├── 0b40903005efd89f.jpg │ │ ├── 2f12b59e46bc6aea.jpg │ │ ├── 4b82c58907cec905.jpg │ │ ├── 4feec96cfa232985.jpg │ │ ├── 61dd13c272933f74.jpg │ │ ├── 87b0ba193daa5560.jpg │ │ ├── b3f5d2f484606d3d.jpg │ │ ├── bdd8be57c55c7642.jpg │ │ ├── ca9cda153d5a8c02.jpg │ │ ├── default.jpg │ │ ├── dfe816808fc94101.jpg │ │ └── f349114efbafa4f8.jpg │ └── styles │ │ ├── chat.css │ │ └── layout.css ├── templates │ ├── about.html │ ├── account.html │ ├── all_journals.html │ ├── chat │ │ ├── chat.html │ │ └── send_function.html │ ├── create_journal.html │ ├── errors │ │ ├── 403.html │ │ ├── 404.html │ │ └── 500.html │ ├── home.html │ ├── journal.html │ ├── layout.html │ ├── login.html │ ├── register.html │ ├── reset_request.html │ ├── reset_token.html │ └── sos.html └── users │ ├── __init__.py │ ├── forms.py │ ├── routes.py │ └── utils.py ├── LICENSE ├── README.md ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | chatbot-model.h5 3 | data.pickle -------------------------------------------------------------------------------- /ChatbotWebsite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/__init__.py -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/chatbot/chatbot.py -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/mindfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/chatbot/mindfulness.py -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/chatbot/routes.py -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/chatbot/test.py -------------------------------------------------------------------------------- /ChatbotWebsite/chatbot/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/chatbot/topic.py -------------------------------------------------------------------------------- /ChatbotWebsite/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/config.py -------------------------------------------------------------------------------- /ChatbotWebsite/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatbotWebsite/errors/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/errors/handlers.py -------------------------------------------------------------------------------- /ChatbotWebsite/journal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatbotWebsite/journal/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/journal/forms.py -------------------------------------------------------------------------------- /ChatbotWebsite/journal/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/journal/routes.py -------------------------------------------------------------------------------- /ChatbotWebsite/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatbotWebsite/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/main/routes.py -------------------------------------------------------------------------------- /ChatbotWebsite/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/models.py -------------------------------------------------------------------------------- /ChatbotWebsite/static/data/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/data/intents.json -------------------------------------------------------------------------------- /ChatbotWebsite/static/data/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/data/tests.json -------------------------------------------------------------------------------- /ChatbotWebsite/static/data/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/data/topics.json -------------------------------------------------------------------------------- /ChatbotWebsite/static/images/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/images/chatbot.png -------------------------------------------------------------------------------- /ChatbotWebsite/static/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/images/login.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/images/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/images/register.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/mindfulness/Body Scan Meditation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/mindfulness/Body Scan Meditation.mp3 -------------------------------------------------------------------------------- /ChatbotWebsite/static/mindfulness/Breathing Retraining.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/mindfulness/Breathing Retraining.mp3 -------------------------------------------------------------------------------- /ChatbotWebsite/static/mindfulness/Mountain Meditation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/mindfulness/Mountain Meditation.mp3 -------------------------------------------------------------------------------- /ChatbotWebsite/static/mindfulness/Rain and Thunder Sounds.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/mindfulness/Rain and Thunder Sounds.mp3 -------------------------------------------------------------------------------- /ChatbotWebsite/static/mindfulness/mindfulness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/mindfulness/mindfulness.json -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/0023216fc20a64d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/0023216fc20a64d3.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/0b40903005efd89f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/0b40903005efd89f.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/2f12b59e46bc6aea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/2f12b59e46bc6aea.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/4b82c58907cec905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/4b82c58907cec905.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/4feec96cfa232985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/4feec96cfa232985.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/61dd13c272933f74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/61dd13c272933f74.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/87b0ba193daa5560.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/87b0ba193daa5560.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/b3f5d2f484606d3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/b3f5d2f484606d3d.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/bdd8be57c55c7642.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/bdd8be57c55c7642.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/ca9cda153d5a8c02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/ca9cda153d5a8c02.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/default.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/dfe816808fc94101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/dfe816808fc94101.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/profile_images/f349114efbafa4f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/profile_images/f349114efbafa4f8.jpg -------------------------------------------------------------------------------- /ChatbotWebsite/static/styles/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/styles/chat.css -------------------------------------------------------------------------------- /ChatbotWebsite/static/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/static/styles/layout.css -------------------------------------------------------------------------------- /ChatbotWebsite/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/about.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/account.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/all_journals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/all_journals.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/chat/chat.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/chat/send_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/chat/send_function.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/create_journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/create_journal.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/errors/403.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/errors/404.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/errors/500.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/home.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/journal.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/layout.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/login.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/register.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/reset_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/reset_request.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/reset_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/reset_token.html -------------------------------------------------------------------------------- /ChatbotWebsite/templates/sos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/templates/sos.html -------------------------------------------------------------------------------- /ChatbotWebsite/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatbotWebsite/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/users/forms.py -------------------------------------------------------------------------------- /ChatbotWebsite/users/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/users/routes.py -------------------------------------------------------------------------------- /ChatbotWebsite/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/ChatbotWebsite/users/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheanYeeSin/Python-Mental-Health-Chatbot/HEAD/run.py --------------------------------------------------------------------------------