• 【分享】获取微信通讯录python代码形式实现


    具体流程就是:

    1. 打开微信

    2. 点击通讯录

    3. 滚动鼠标到最顶部(防止已经滚动了一部分了)

    4. 获取联系人列表

    5. 找到最后一个空格所在的位置(后一个就是真正的联系人了)

    6. 点击第一个联系人

    7.记录下上一个联系人的微信号

    7. 无限循环按键盘下箭头

    当前微信号与上一个相同的时候,说明到底部了,可以跳出循环

    获取详情中的以下元素内容

    “微信号”, “昵称”, “地区”, “备注”, “标签”, “签名”, “来源”

    逐行写入excel

    效果图:

    详细代码:

    import datetime
    import uiautomation as uia
    from openpyxl import Workbook, load_workbook
    from openpyxl.styles import Font, PatternFill
    
    # 获取所有的会话列表
    # pip install openpyxl pandas uiautomation
    # 初始化微信窗口控件
    wechat_window = uia.WindowControl(ClassName='WeChatMainWndForPC')
    wechat_window.SwitchToThisWindow()
    wechat_window.MoveToCenter()
    # 获取窗口的坐标和尺寸
    window_rect = wechat_window.BoundingRectangle
    window_left, window_top, window_width, window_height = window_rect.left, window_rect.top, window_rect.width(), window_rect.height()
    print("微信窗口坐标:", window_left, window_top)
    print("微信窗口宽度:", window_width)
    print("微信窗口高度:", window_height)
    
    toolBar = wechat_window.ToolBarControl(Name="导航")
    # 用于存储获取到的昵称和微信号名称
    contacts = []
    
    toolBar.GetChildren()[2].Click()
    
    # 滚动到顶部
    prevTop = ""
    sameTopCount = 0
    while sameTopCount < 2:
        session_list = wechat_window.ListControl(Name='联系人')
        currentTop = session_list.GetChildren()[0].Name
    
        if currentTop == prevTop:
            sameTopCount += 1
        else:
            sameTopCount = 0
        prevTop = currentTop
        session_list.WheelUp(wheelTimes=20, waitTime=0.1)
    
    # 循环通讯录
    # 记录上一次微信号
    preWechatCode = ""
    # 重新获取会话列表控件
    session_list = wechat_window.ListControl(Name='联系人').GetChildren()
    # 从后往前找空格
    index = len(session_list)
    for index, item in reversed(list(enumerate(session_list))):
        if item.Name == "":
            break
    # 第一个联系人点击
    session_list[index + 1].Click()
    # 获取当前时间
    current_time = datetime.datetime.now().strftime("%Y-%m-%d")
    filename = f"通讯录{current_time}.xlsx"
    # 创建新的工作簿和工作表
    wb = Workbook()
    ws = wb.active
    # 写入标题行
    headers = ["code", "nickname", "area", "remark", "tag", "sign", "from"]
    headersName = ["微信号", "昵称", "地区", "备注", "标签", "签名", "来源"]
    # 设置字体颜色为白色,背景色为蓝色
    font_color = Font(color="FFFFFF")
    fill_color = PatternFill(start_color="0000FF", end_color="0000FF", fill_type="solid")
    
    for col_num, header in enumerate(headersName, 1):
        cell = ws.cell(row=1, column=col_num, value=header)
        cell.font = font_color
        cell.fill = fill_color
    wb.save(filename)
    
    while True:
        try:
    
            wechatCodeTag = wechat_window.TextControl(Name="微信号:")
            if not wechatCodeTag.Exists(0.1):
                wechat_window.SendKeys("{DOWN}")
                continue
            contact = {"code": wechatCodeTag.GetNextSiblingControl().Name, "nickname": "", "area": "", "remark": "",
                       "tag": "", "sign": "", "from": ""}
            # 到底部
            if preWechatCode == contact["code"]:
                break
            preWechatCode = contact["code"]
            contact["nickname"] = wechat_window.ButtonControl(Name="更多").GetPreviousSiblingControl().Name
            nicknameTag = wechat_window.TextControl(Name="昵称:")
            if nicknameTag.Exists(0.1):
                contact["remark"] = contact["nickname"]
                contact["nickname"] = nicknameTag.GetNextSiblingControl().Name
    
            areaTag = wechat_window.TextControl(Name="地区:")
            if areaTag.Exists(0.1):
                contact["area"] = areaTag.GetNextSiblingControl().Name
    
            signTag = wechat_window.TextControl(Name="个性签名")
            if signTag.Exists(0.1):
                contact["sign"] = signTag.GetNextSiblingControl().Name
    
            tagTag = wechat_window.TextControl(Name="标签")
            if tagTag.Exists(0.1):
                contact["tag"] = tagTag.GetNextSiblingControl().Name
    
            fromTag = wechat_window.TextControl(Name="来源")
            if fromTag.Exists(0.1):
                contact["from"] = fromTag.GetNextSiblingControl().Name
    
            print(contact)
            # 加载当前的Excel文件
            wb = load_workbook(filename)
            ws = wb.active
    
            # 追加数据
            row = [contact[key] for key in headers]
            ws.append(row)
            # 保存到Excel文件
            wb.save(filename)
            print(f"数据已写入{filename}")
    
            wechat_window.SendKeys("{DOWN}")
        except Exception as e:
            print(e)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119

  • 相关阅读:
    达梦数据库将DMHR模式下的表(迁移)导出为EXCEL文件
    MES生产管理系统与供应链协同管理
    APP性能测试指标
    Fundamentals of Electrostatic Discharge-WHO DEVELOPS STANDARDS?
    [附源码]计算机毕业设计JAVA火车票订票管理系统
    C# 12 拦截器 Interceptors
    Leetcode《图解数据结构》刷题日志【第三周】(2022/10/31-2022/11/06)
    CTF-Web(2)SQL注入
    mysql索引和事务
    从零学算法 (LCR 177. 撞色搭配)
  • 原文地址:https://blog.csdn.net/taoshihan/article/details/133744980