From 100b8e23915438464d58dbbd6c6e0f8a5c4b2aea Mon Sep 17 00:00:00 2001 From: Yuxin Wu Date: Thu, 2 Jul 2020 17:00:46 -0700 Subject: [PATCH] update readme --- README.md | 13 +++++-------- wechat/parser.py | 1 + 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a617f89..e49b353 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,12 @@ ## Dump WeChat Messages from Android -## 导出安卓微信聊天数据 +## 导出安卓微信消息记录 -WeChat(微信), as the most popular mobile IM app in China, doesn't give users any way to export well-formatted history messages. -This tool can parse and export WeChat messages on a rooted android phone. +WeChat, as the most popular mobile IM app in China, doesn't provide any options to export structured message history. +This tool can decrypt and parse WeChat messages on a rooted android phone, +and dump messages into self-contained html files including voice messages, images, emojis, videos, etc. -Right now the tool can dump chat messages to self-contained html files including voice messages, images, emojis, videos, etc. -It can also dump messages to texts. - -If this tools works for you, please take a moment to __add your phone/OS to__ [the wiki](https://github.com/ppwwyyxx/wechat-dump/wiki). -If it doesn't work, you probably have to do some investigation before posting an issue, as the behavior may be different on each phone. +If the tool works for you, please take a moment to __add your phone/OS to__ [the wiki](https://github.com/ppwwyyxx/wechat-dump/wiki). ### How to use: diff --git a/wechat/parser.py b/wechat/parser.py index 5d18654..78c2b98 100644 --- a/wechat/parser.py +++ b/wechat/parser.py @@ -121,6 +121,7 @@ SELECT {} FROM message def get_emoji_encryption_key(self): # obtain local encryption key in a special entry in the database + # this also equals to md5(imei) query = self.cc.execute("SELECT md5 FROM EmojiInfo where catalog == 153") results = list(query) if len(results):