Python 爬微信男女人数和各地区人数

需要导入wxpy模块

from wxpy import *

bot = Bot(cache_path=True)  # 用于解决每次扫码登录

friends_stat = bot.friends().stats()

friend_loc = []  # 每一个元素是一个二元列表,分别存储地区和人数信息
for province, count in friends_stat["province"].items():
    if province != "":
        friend_loc.append([province, count])

# 对人数倒序排序
friend_loc.sort(key=lambda x: x[1], reverse=True)

# 打印人数最多的10个地区
for item in friend_loc[:10]:
    print(item[0], item[1])
for sex, count in friends_stat["sex"].items():
    # 1代表男, 2代表女
    if sex == 1:
        print("男: %d" % count)
    elif sex == 2:
        print("女: %d" % count)

 

你可能感兴趣的:(爬虫)