update readme

This commit is contained in:
Yuxin Wu
2020-07-02 17:00:46 -07:00
parent a914018579
commit 100b8e2391
2 changed files with 6 additions and 8 deletions
+5 -8
View File
@@ -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:
+1
View File
@@ -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):