Posted in Python onAugust 21, 2019
首先需要安装itchat库,可以pip install itchat安装,也可以在pycharm里安装
# -*- coding:utf-8 -*- __author__ = "MuT6 Sch01aR" import itchat def get_friends(): friends = itchat.get_friends(update=True) #获取微信好友列表,如果设置update=True将从服务器刷新列表 for i in friends: print(i) def main(): itchat.auto_login(hotReload=True) #登录,会下载二维码给手机扫描登录,hotReload设置为True表示以后自动登录 get_friends() itchat.run() #让itchat一直运行 if __name__ == "__main__": main()
运行结果如下
用手机微信扫一下二维码
登录成功
获取好友列表的结果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
基于Python的微信机器人开发 微信登录和获取好友列表实现解析
- Author -
Sch01aR#声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@