

Now you have the dataset and ready to go….Choose ‘export chat’ and select without media option.Click on the 3 dot icon and go to more options.Go to that group or personal chat whose chat details you want to extract.

helper.py : We would be making some functions in this file that would be used in the main app.py file.app.py : This would be the main file where we would be creating the streamlit app.preprocessor.py : The input we take is a text file consisting of the chats (group chat or personal) so we need to do some preprocessing and get an dataframe out of it.We would be creating 3 files in our project we will be using python programming language for all the data analysis and pycharm would be used as IDE. It is compatible with major Python libraries such as scikit-learn, Keras, PyTorch, SymPy(latex), NumPy, pandas, Matplotlib etc.Īlso all the code written in this blog is available in my github :

It helps us create web apps for data science and machine learning in a short time. Streamlit is an open source app framework in Python language. Today in this blog we will be making a Whatsapp Chat Analyzer Web App using Streamlit. Hello people, I hope everyone is doing well. ĭocument.querySelector('#room-name-input').focus() ĭocument.querySelector('#room-name-input').Whatsapp Chat Analyzer Web App : End to End Streamlit Project chat/Ĭopy-paste below code in index.html file. Navigate to the chat app directory and create an app: python3 manage.py startapp chatĪdd chat app in installed apps in setting.py # chatapp/settings.pyĬreate templates/chat/index.html file to run chat UI. In Terminal, create a new Django project named chat app django-admin startproject chatapp
