{"id":20618212,"url":"https://github.com/tddschn/whatsapp-chat-analyze","last_synced_at":"2026-06-04T19:31:45.755Z","repository":{"id":238618444,"uuid":"796500574","full_name":"tddschn/whatsapp-chat-analyze","owner":"tddschn","description":"Command Line Tool to Generate Pretty Charts from Whatsapp Exported Chats","archived":false,"fork":false,"pushed_at":"2026-02-11T14:31:59.000Z","size":99,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-16T21:06:10.953Z","etag":null,"topics":["data-analysis","data-visualization","plotly","python","whatsapp","whatsapp-data"],"latest_commit_sha":null,"homepage":"https://teddysc.me/blog/whatsapp-chat-analyze","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tddschn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-06T04:17:28.000Z","updated_at":"2025-11-20T20:30:30.000Z","dependencies_parsed_at":"2024-05-07T04:28:40.145Z","dependency_job_id":"7bf48df7-f4cf-4a5c-83df-fc3d8760f136","html_url":"https://github.com/tddschn/whatsapp-chat-analyze","commit_stats":null,"previous_names":["tddschn/whatsapp-chat-analyze"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/tddschn/whatsapp-chat-analyze","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Fwhatsapp-chat-analyze","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Fwhatsapp-chat-analyze/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Fwhatsapp-chat-analyze/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Fwhatsapp-chat-analyze/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tddschn","download_url":"https://codeload.github.com/tddschn/whatsapp-chat-analyze/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Fwhatsapp-chat-analyze/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33829418,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-analysis","data-visualization","plotly","python","whatsapp","whatsapp-data"],"created_at":"2024-11-16T12:07:35.866Z","updated_at":"2026-06-04T19:31:45.733Z","avatar_url":"https://github.com/tddschn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# whatsapp-chat-analyze\n\nCommand line tool to analyze WhatsApp exported chat data (accepts .txt and .zip) and plot pretty interactive charts.\n\n- [whatsapp-chat-analyze](#whatsapp-chat-analyze)\n  - [Demo](#demo)\n  - [Features](#features)\n  - [Installation](#installation)\n    - [pipx](#pipx)\n    - [pip](#pip)\n  - [Usage](#usage)\n  - [Develop](#develop)\n  - [Limitations](#limitations)\n\n## Demo\n\n![](https://github.com/cli/cli/assets/45612704/08026ab5-24c0-4ec1-8afe-903d57654e15)\n\nFor more plots and interactity, check out the blog post: https://teddysc.me/blog/whatsapp-chat-analyze .\n\n## Features\n\n- Simple to install and use, no cloning involved, supports modern Python versions \n- Extracts chat data from .txt or .zip files\n- Export to csv (`-c`)\n- Pretty interactive charts with plotly and save them to HTML files\n- 6 different plots, see [demo](#demo)\n- Anonymize sender names to `A`, `B`, `C`, etc. (`-a`)\n\n## Installation\n\nPython\u003e=3.10 required.\n\n### pipx\n\nThis is the recommended installation method.\n\n```\n$ pipx install whatsapp-chat-analyze\n```\n\n### [pip](https://pypi.org/project/whatsapp-chat-analyze/)\n\n```\n$ pip install whatsapp-chat-analyze\n```\n\n## Usage\n\n```plain\n$ whatsapp-chat-analyze --help\n\nusage: whatsapp-chat-analyze [-h] [-n name] [-o base] [-d] [-E] [-c] [-a] file\n\nAnalyze Whatsapp Exported .txt or .zip (will be automatically extracted) chat file\n\npositional arguments:\n  file                  Chat file (_chat.txt or *.zip) to analyze\n\noptions:\n  -h, --help            show this help message and exit\n  -n name, --chat-name name\n                        Name of the chat (default: Chat)\n  -o base, --output-base-name base\n                        Output base name for the plots (default: whatsapp-chat)\n  -d, --by-day-only     Plot messages per day only (default: False)\n  -E, --extract-only    Extract the chat and exit (default: False)\n  -c, --to-csv-only     Convert chat to csv and exit (default: False)\n  -a, --anonymize       Anonymize the chat by replacing author names with generic names (default: False)\n\n```\n\n## Develop\n\n```\n$ git clone https://github.com/tddschn/whatsapp-chat-analyze.git\n$ cd whatsapp-chat-analyze\n$ poetry install\n```\n\n## Limitations\n\n- Parsing of chat data uses simple regex, and author names in non-latin languages may not be parsed correctly","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftddschn%2Fwhatsapp-chat-analyze","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftddschn%2Fwhatsapp-chat-analyze","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftddschn%2Fwhatsapp-chat-analyze/lists"}