摘要:
''' 爬取所有微信好友的信息 ''' import itchat from pandas import DataFrame itchat.login() friends = itchat.get_friends(update=True)[0:] def get_var(var): variable = [] for i in friends: value... 阅读全文
摘要:
前提: 1、微信号 2、pip install wxpy 3、pip install requests 代码: 关于wxpy模块可以参考http://wxpy.readthedocs.io/zh/latest/bot.html 阅读全文