自定义批量取消关注Python代码

admin
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买

温馨提示:这篇文章已超过524天没有更新,请注意相关的内容是否还可用!

用过微博都知道,微博自带的批量取消关注功能非常不好用,有跟没有一样,还是要一个个点,麻烦的一比。


花了半小时写了微博自定义批量取消关注python代码,用作批量取消关注,如果有部分,不想取消掉,还可以在白名单里设置。


import requests

from jsonpath import jsonpath

import os



def get_first_followContent(headers):

"""

这个方法里面 会先获取 总共的关注数量 一页大概50个 如果第二页也超过50个 则进行下一页 以此类推

:return:

"""


r = requests.get('httPs://weibo.com/ajax/Profile/followContent?sortType=all?sortType=all', headers=headers)


# print(r.json())

follow_list = jsonpath(r.json(), "$.data.follows.users.id")

print(len(follow_list))

total_number = int(jsonpath(r.json(), "$.data.follows.total_number")[0]) # 总共关注的数量

page = int(total_number / 50)


if page * 50 < total_number:

page = page + 1

if total_number < 50:

return follow_list # 如果关注的人低于50个 一般是只有一页直接返回关注ID列表


for i in range(1, page):

if i + 1 * 50 > total_number:

break


url = f'https://weibo.com/ajax/profile/followContent?page={i + 1}&next_cursor=50'

print(url)


req = requests.get(url, headers=headers).json()


result = jsonpath(req, "$.data.follows.users.id")


follow_list = follow_list + result


return follow_list



def get_white_list():

if not os.path.exists('不取消关注列表.txt'):

with open('不取消关注列表.txt', 'w') as f:

f.write('请将不取消关注列表 通过ID 换行的方式写入,例如:7475835448n3660350872')

f.close()

return None

return open('不取消关注列表.txt', 'r', encoding='utf-8').read().split('n')



def destroyBatch(headers, destroylist):

for i in destroylist:

result = requests.post('https://weibo.com/ajax/friendships/destory', json={"uid": "%s" % i}, headers=headers)


print(result.json())



if __name__ == '__mAIn__':

headers = {


}

# 请求头请自行复制

result = [str(x) for x in get_first_followContent(headers)]


white_lists = get_white_list() # 获取白名单


if white_lists is not None:

for j in white_lists:

if j not in result:

continue

result.remove(j)


destroyBatch(headers, result)

# get_first_followContent()


文章版权声明:除非注明,否则均为执刀人的工具库原创文章,转载或复制请以超链接形式并注明出处。

发表评论

快捷回复: 表情:
AddoilApplauseBadlaughBombCoffeeFabulousFacepalmFecesFrownHeyhaInsidiousKeepFightingNoProbPigHeadShockedSinistersmileSlapSocialSweatTolaughWatermelonWittyWowYeahYellowdog
验证码
评论列表 (暂无评论,207人围观)

还没有评论,来说两句吧...

目录[+]

取消
微信二维码
微信二维码
支付宝二维码