wa_msg_parser 0.2.3

a little Library to parse the Whatsapp Message Export txt to a Message Struct
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Whatsapp Export MSG Parser


a little Rust Library to parse WhatsApp Message Exports into
an Vector of Messages

Message Struct
```rust
pub struct Message {
    pub date: String,
    pub datetime: String,
    pub sender: String,
    pub message: String,
}
```

Libary includes optional conversion to serde or JSON