1 Star 3 Fork 3

laku/wechat_ana

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 676 Bytes
一键复制 编辑 原始数据 按行查看 历史
laku 提交于 2022-02-22 07:11 . update test.py.
from analyze import WeChatData
from qq import QQData
from wordCloud import MyWordCloud
def main():
chat_file = r"data\xxx\xxx.txt"
name = 'xxx'
# Data = WeChatData(chat_file, name, refresh=False) # 微信聊天内容统计
Data = QQData(chat_file, name, refresh=True) # QQ聊天内容统计
Data.saveChat()
Data.draw()
Data.timeSta()
Data.countPeoNum()
Data.countChar()
# 生成词云
if False:
txt_path = Data.getChatPath()
mask_path = r"mask\flower.png"
save_path = r"outputs\{}\wordcloud.png".format(name)
MyWordCloud(txt_path, mask_path, save_path)()
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lakuite/wechat_analyze.git
git@gitee.com:lakuite/wechat_analyze.git
lakuite
wechat_analyze
wechat_ana
master

搜索帮助