{"id":19551421,"url":"https://github.com/brunozell/whatsappparser","last_synced_at":"2026-05-16T19:10:51.697Z","repository":{"id":115864772,"uuid":"155794050","full_name":"BrunoZell/WhatsAppParser","owner":"BrunoZell","description":"Light-weight C# parser for exported WhatsApp chat histories","archived":false,"fork":false,"pushed_at":"2018-11-05T04:16:36.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-03-28T18:37:48.648Z","etag":null,"topics":["parser","whatsapp"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BrunoZell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-11-02T00:50:36.000Z","updated_at":"2018-11-05T04:10:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"a1afbafc-505f-41cc-9ec0-c394525087d5","html_url":"https://github.com/BrunoZell/WhatsAppParser","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoZell%2FWhatsAppParser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoZell%2FWhatsAppParser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoZell%2FWhatsAppParser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoZell%2FWhatsAppParser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BrunoZell","download_url":"https://codeload.github.com/BrunoZell/WhatsAppParser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240807564,"owners_count":19860772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["parser","whatsapp"],"created_at":"2024-11-11T04:13:49.756Z","updated_at":"2026-05-16T19:10:46.633Z","avatar_url":"https://github.com/BrunoZell.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# WhatspApp chat history parser\nA light-weight C# library that parses exported chat histories from WhatsApp.\n\n[![NuGet](https://img.shields.io/nuget/v/BrunoZell.WhatsAppParser.svg)](https://www.nuget.org/packages/BrunoZell.WhatsAppParser)\n![GitHub top language](https://img.shields.io/github/languages/top/BrunoZell/WhatsAppParser.svg)\n\n``` c#\n// Create a parser from an exported chat history\nvar parser = new Parser(\"chat.txt\");\n\n// Enumerate all messages in that history file\nforeach (var message in parser.Messages()) {\n    Console.WriteLine($\"{message.Timestamp:yyyy-MM-dd HH:mm} {message.Sender}: {message.Content}\");\n}\n```\n\n`Parser.Messages` is an enumerator, that means it will only read that many messages as you really need by leveraging the power of Linq.\n\nIt will return `Message` objects. They have three properties:\n\n- **Timestamp** The point in time the message was sent down to the minute.\n- **Sender** String representation of the message author. This can be the telephone number or the contact name behind this number.\n- **Content** The actual message sent by the sender. This might be multi-line.\n\nBe aware that history entries like encryption information or group invitations are ignored when parsing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunozell%2Fwhatsappparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunozell%2Fwhatsappparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunozell%2Fwhatsappparser/lists"}