歡迎光臨
每天分享高質量文章

Python分析微信好友性別比例和省份城市分佈比例,基於itchat模組

(點選上方公眾號,可快速關註一起學Python)

作者:TANKING    原文連結:

https://segmentfault.com/a/1190000018713959

 

安裝itchat

pip install itchat

 

使用

 

新建wxfx.py,複製以下程式碼

 

# -*- coding: utf-8 -*-

#匯入模組
from wxpy import *

'''
微信機器人登入有3種樣式,
(1)極簡樣式:robot = Bot()
(2)終端樣式:robot = Bot(console_qr=True)
(3)快取樣式(可保持登入狀態):robot = Bot(cache_path=True)
'''
#初始化機器人,選擇快取樣式(掃碼)登入
robot = Bot(cache_path=True)

#獲取好友、群、公眾號資訊
robot.chats()

#獲取好友的統計資訊
Friends = robot.friends()
print(Friends.stats_text())

 

執行

 

CMD->CD到wxfx.py所在目錄執行,然後掃碼登入

 

結果

 

    贊(0)

    分享創造快樂