├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── data ├── chat_parsed │ └── .gitkeep ├── chat_raw │ ├── telegram │ │ ├── .gitkeep │ │ └── exported_structure.json │ └── whatsapp │ │ └── .gitkeep ├── resources │ ├── Telegram_stopwords.txt │ └── WhatsApp_stopwords.txt └── word_cloud │ └── .gitkeep ├── requirements.txt └── src ├── __init__.py ├── joiner.py ├── telegram_parser.py ├── utils ├── __init__.py ├── utils.py └── word_cloud.py └── whatsapp_parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/README.md -------------------------------------------------------------------------------- /data/chat_parsed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/chat_raw/telegram/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/chat_raw/telegram/exported_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/data/chat_raw/telegram/exported_structure.json -------------------------------------------------------------------------------- /data/chat_raw/whatsapp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/resources/Telegram_stopwords.txt: -------------------------------------------------------------------------------- 1 | https 2 | type -------------------------------------------------------------------------------- /data/resources/WhatsApp_stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/data/resources/WhatsApp_stopwords.txt -------------------------------------------------------------------------------- /data/word_cloud/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/joiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/src/joiner.py -------------------------------------------------------------------------------- /src/telegram_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/src/telegram_parser.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/src/utils/utils.py -------------------------------------------------------------------------------- /src/utils/word_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/src/utils/word_cloud.py -------------------------------------------------------------------------------- /src/whatsapp_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pistocop/messaging-chat-parser/HEAD/src/whatsapp_parser.py --------------------------------------------------------------------------------