15 lines
338 B
Python
Executable File
15 lines
338 B
Python
Executable File
#!/usr/bin/env python2
|
|
# -*- coding: UTF-8 -*-
|
|
# File: list-chats.py
|
|
# Author: Yuxin Wu <[email protected]>
|
|
|
|
from wechat.parser import WeChatDBParser
|
|
import sys
|
|
|
|
db_file = sys.argv[1]
|
|
|
|
parser = WeChatDBParser(db_file)
|
|
chats = parser.msgs_by_chat.keys()
|
|
for k in chats:
|
|
print k.encode('utf-8'), parser.contacts_rev[k].encode('utf-8')
|