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):