wxpy微信应用

Posted yan1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wxpy微信应用相关的知识,希望对你有一定的参考价值。

 

技术分享图片
import wxpy
bot = wxpy.Bot(console_qr=-1, cache_path=True)

my_friends = bot.friends()
male = 0
female = 0
other = 0
for friend in my_friends:
    if friend.sex == 1:
        male += 1
    elif friend.sex == 2:
        female += 1
    else:
        other += 1       
print("male = ", male)
print("female = ", female)
print("total numbers = ", len(my_friends))
好友性别统计

 

以上是关于wxpy微信应用的主要内容,如果未能解决你的问题,请参考以下文章

使用wxpy怎么制作一个属于自己的微信机器人

Python使用wxpy模块实现微信两两群组消息同步

wxpy 微信机器人

Python-wxpy信息爬取发送至微信(小白级)

Python-WXPY实现微信监控报警

wxpy微信模块学习之消息处理