├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── chat_example.txt ├── chatline.py ├── font_color.py ├── patterns.py ├── requirements.txt ├── stop-words ├── .gitignore ├── LICENSE ├── README.md ├── arabic.txt ├── bulgarian.txt ├── catalan.txt ├── czech.txt ├── danish.txt ├── dutch.txt ├── english.txt ├── finnish.txt ├── french.txt ├── german.txt ├── hebrew.txt ├── hindi.txt ├── hungarian.txt ├── indonesian.txt ├── italian.txt ├── languages.json ├── malaysian.txt ├── norwegian.txt ├── polish.txt ├── portuguese.txt ├── romanian.txt ├── russian.txt ├── slovak.txt ├── spanish.txt ├── swedish.txt ├── turkish.txt ├── ukrainian.txt └── vietnamese.txt ├── tests └── test_chatline.py └── whatsapp_analyzer.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /chat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/chat_example.txt -------------------------------------------------------------------------------- /chatline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/chatline.py -------------------------------------------------------------------------------- /font_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/font_color.py -------------------------------------------------------------------------------- /patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/patterns.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dateutil 2 | emoji>=1.7.0 -------------------------------------------------------------------------------- /stop-words/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /stop-words/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/LICENSE -------------------------------------------------------------------------------- /stop-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/README.md -------------------------------------------------------------------------------- /stop-words/arabic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/arabic.txt -------------------------------------------------------------------------------- /stop-words/bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/bulgarian.txt -------------------------------------------------------------------------------- /stop-words/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/catalan.txt -------------------------------------------------------------------------------- /stop-words/czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/czech.txt -------------------------------------------------------------------------------- /stop-words/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/danish.txt -------------------------------------------------------------------------------- /stop-words/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/dutch.txt -------------------------------------------------------------------------------- /stop-words/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/english.txt -------------------------------------------------------------------------------- /stop-words/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/finnish.txt -------------------------------------------------------------------------------- /stop-words/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/french.txt -------------------------------------------------------------------------------- /stop-words/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/german.txt -------------------------------------------------------------------------------- /stop-words/hebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/hebrew.txt -------------------------------------------------------------------------------- /stop-words/hindi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/hindi.txt -------------------------------------------------------------------------------- /stop-words/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/hungarian.txt -------------------------------------------------------------------------------- /stop-words/indonesian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/indonesian.txt -------------------------------------------------------------------------------- /stop-words/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/italian.txt -------------------------------------------------------------------------------- /stop-words/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/languages.json -------------------------------------------------------------------------------- /stop-words/malaysian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/malaysian.txt -------------------------------------------------------------------------------- /stop-words/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/norwegian.txt -------------------------------------------------------------------------------- /stop-words/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/polish.txt -------------------------------------------------------------------------------- /stop-words/portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/portuguese.txt -------------------------------------------------------------------------------- /stop-words/romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/romanian.txt -------------------------------------------------------------------------------- /stop-words/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/russian.txt -------------------------------------------------------------------------------- /stop-words/slovak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/slovak.txt -------------------------------------------------------------------------------- /stop-words/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/spanish.txt -------------------------------------------------------------------------------- /stop-words/swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/swedish.txt -------------------------------------------------------------------------------- /stop-words/turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/turkish.txt -------------------------------------------------------------------------------- /stop-words/ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/ukrainian.txt -------------------------------------------------------------------------------- /stop-words/vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/stop-words/vietnamese.txt -------------------------------------------------------------------------------- /tests/test_chatline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/tests/test_chatline.py -------------------------------------------------------------------------------- /whatsapp_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetengDedet/WhatsApp-Analyzer/HEAD/whatsapp_analyzer.py --------------------------------------------------------------------------------