├── .gitignore ├── README.md ├── analyze.py ├── commonWords.txt ├── graphs.py ├── requirements.txt └── src ├── date_activity.png ├── person_activity.png ├── time_activity.png └── word_frequency.png /.gitignore: -------------------------------------------------------------------------------- 1 | Media 2 | Data 3 | output 4 | __pycache__/ 5 | *.py[cod] 6 | venv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/analyze.py -------------------------------------------------------------------------------- /commonWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/commonWords.txt -------------------------------------------------------------------------------- /graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/graphs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/date_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/src/date_activity.png -------------------------------------------------------------------------------- /src/person_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/src/person_activity.png -------------------------------------------------------------------------------- /src/time_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/src/time_activity.png -------------------------------------------------------------------------------- /src/word_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashsara/whatsapp-message-analysis/HEAD/src/word_frequency.png --------------------------------------------------------------------------------