├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── analysis_functions.py ├── aux_functions.py ├── display.txt ├── images ├── example.png ├── export-whatsapp-chat.png ├── logo.png └── logo_small.png ├── main.py ├── requirements.txt └── results └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/README.md -------------------------------------------------------------------------------- /analysis_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/analysis_functions.py -------------------------------------------------------------------------------- /aux_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/aux_functions.py -------------------------------------------------------------------------------- /display.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/display.txt -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/images/example.png -------------------------------------------------------------------------------- /images/export-whatsapp-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/images/export-whatsapp-chat.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/images/logo_small.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/AnalyzeTheChat/HEAD/results/readme.md --------------------------------------------------------------------------------