美文网首页
基于python的itchat模块进行分析群组成员的信息

基于python的itchat模块进行分析群组成员的信息

作者: watson168 | 来源:发表于2017-12-26 12:29 被阅读2023次
# coding:utf-8

import itchat
name = 'xxxx群'

def getroom_message():
    '''获取群的username,对群成员进行分析需要用到'''
    itchat.dump_login_status() # 显示所有的群聊信息,默认是返回保存到通讯录中的群聊
    RoomList =  itchat.search_chatrooms(name=name)
    if RoomList is None:
            print("%s group is not found!" % (name))
    else:
        return RoomList[0]['UserName']

    '''返回所有的群组信息'''
    # RoomList = itchat.get_chatrooms(update=True)[0:]
    # for k in RoomList:        # 获取群名称以及它的username,此方法将会获取到所有的群原因是微信可能不会
    #     print(k['NickName'], k['UserName'])


def AnalyseChatFemale():
    '''对目标群进行女性的分析,update_chatroom()方法中第一个参数就是getroot_message()中获取到的UserName'''
    global total
    ChatRoom = itchat.update_chatroom(getroom_message(), detailedMember=True)
    total = len(ChatRoom['MemberList'])
    female = 0
    print("女生名单及个性签名:")
    for i in range(total):
        if ChatRoom['MemberList'][i]['Sex'] == 2:
            female += 1
            print(ChatRoom['MemberList'][i]['DisplayName'], ChatRoom['MemberList'][i]["NickName"], ChatRoom['MemberList'][i]['Signature'], sep='******')
    print("女生共有%s人" % (female))


def AnalyseChatMale():
    '''对目标群进行男性的分析'''
    global total
    ChatRoom = itchat.update_chatroom(getroom_message(), detailedMember=True)
    total = len(ChatRoom['MemberList'])
    male = 0
    print("男生名单及个性签名:")
    for i in range(total):
        if ChatRoom['MemberList'][i]['Sex'] == 1:
            male += 1
            print(ChatRoom['MemberList'][i]['DisplayName'], ChatRoom['MemberList'][i]["NickName"], ChatRoom['MemberList'][i]['Signature'], sep='*****')

    print("男生共有%s人" % (male))


def CheckSex():
       '''检测没有备注性别的用户'''
    ChatRoom = itchat.update_chatroom(getroom_message(), detailedMember=True)
    total = len(ChatRoom['MemberList'])
    for i in range(total):
        if ChatRoom['MemberList'][i]['Sex'] != 1 and ChatRoom['MemberList'][i]['Sex'] != 2:
            print("这位朋友性别不详:",ChatRoom['MemberList'][i]['DisplayName'], ChatRoom['MemberList'][i]["NickName"], ChatRoom['MemberList'][i]['Signature'], sep='///////////////////')


def AnalyseChat():
    '''对目标群进行分析'''
    AnalyseChatFemale()
    print("---------------------------")
    AnalyseChatMale()
    CheckSex()
    print("%s 中共有%s人" % (name, total))


if __name__ == '__main__':
    itchat.auto_login(hotReload=True)
    getroom_message()   # 当需要更新username的时候执行这个方法,可以将下方分析的方法注释掉
    # AnalyseChat()  # 同理当进行分析的时候可以将获取username的方法注释掉
    

相关文章

网友评论

      本文标题:基于python的itchat模块进行分析群组成员的信息

      本文链接:https://www.haomeiwen.com/subject/olwdgxtx.html