本文将利用Python编写一个B站全自动抽奖的小程序,可以实时监控自己关注的UP主,如果关注的UP主中有人发布了抽奖的动态,就自动参与这个抽奖。这样就能不错过任何一个可以暴富的机会了。需要的可以参考一下
导语
应好友邀请,帮他写了个小程序,功能类似于实时监控自己关注的UP主,如果关注的UP主中有人发布了抽奖的动态,就自动参与这个抽奖。这样就能不错过任何一个可以暴富的机会了。写完之后感觉这个想法还是挺有意思的,于是上来分享一波。
废话不多说,让我们愉快地开始吧~
开发工具
Python版本:3.7.8
相关模块:
DecryptLogin模块;
以及一些python自带的模块。
环境搭建
安装Python并添加到环境变量,pip安装需要的相关模块即可。
原理简介
我们主要用到的工具是公众号前几天刚发布的DecryptLogin包
首先,我们需要用它来模拟登录B站,具体而言,需要先pip安装一下:
1 | pip install DecryptLogin |
然后利用Client类来实现模拟登录,该类可以保存当前的登录会话,在该会话没过期之前再次运行程序是不需要重复发送登录请求的,可以避免因为频繁登录账号而触发网站的风控机制:
1 2 3 4 5 | from DecryptLogin import login client = login.Client() bili = client.bilibili(reload_history = True ) infos_return, session = bili.login( self .username, 'scanqr' ) |
接着,我们来抓包看看抓取自己的关注列表要请求哪个API吧,具体而言,如下图所示:
代码简单实现如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | '''获得关注列表''' def getfollowings( self , session, infos_return): url = 'https://api.bilibili.com/x/relation/followings' params = { 'vmid' : infos_return[ 'data' ][ 'mid' ], 'pn' : '1' , 'ps' : '20' , 'order' : 'desc' , 'order_type' : 'attention' , 'jsonp' : 'jsonp' , } response = session.get(url, params = params, headers = self .headers) total = response.json()[ 'data' ][ 'total' ] followings_ids, page = [], 1 while True : for item in response.json()[ 'data' ][ 'list' ]: followings_ids.append(item[ 'mid' ]) if len (followings_ids) > = total: break page + = 1 params[ 'pn' ] = str (page) response = session.get(url, params = params, headers = self .headers) return followings_ids |
类似地,我们可以获得我们关注的UP主的当前所有动态的接口如下:
1 2 3 4 5 6 7 8 9 10 | '''获得UP主的动态''' def getupdates( self , infos_return, host_uid, session): url = f 'https://api.vc.bilibili.com/dynamic_svr/v1/dynamic_svr/space_history?visitor_uid={infos_return["data"]["mid"]}&host_uid={host_uid}&offset_dynamic_id=0&need_top=1&platform=web' response = session.get(url, headers = self .headers) response_json, updates = response.json(), {} for card in response_json[ 'data' ][ 'cards' ]: dynamic_id = card[ 'desc' ][ 'dynamic_id' ] desp = re.findall(r '"description":"(.*?)"' , card[ 'card' ])[ 0 ] updates[dynamic_id] = desp return updates |
转发动态的接口如下:
1 2 3 4 5 6 7 8 9 10 11 12 | '''转发动态''' def forwardupdate( self , session, infos_return, dynamic_id): url = 'http://api.vc.bilibili.com/dynamic_repost/v1/dynamic_repost/repost' data = { 'uid' : infos_return[ 'data' ][ 'mid' ], 'dynamic_id' : dynamic_id, 'content' : random.choice( self .comments), 'ctrl' : '[{"data":"5581898","location":2,"length":4,"type":1},{"data":"10462362","location":7,"length":5,"type":1},{"data":"1577804","location":13,"length":4,"type":1}]' , 'csrf_token' : session.cookies.get( 'bili_jct' ) } response = session.post(url, data = data, headers = self .headers) return response.json() |
接下来要做的就是如何判断这个动态是不是抽奖动态了,这里我们设置利用关键词作为判断依据:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # 监控新的动态 self .logging( '开始监控是否有新的抽奖信息发布' ) while True : time.sleep( self .time_interval) self .logging( '开始检测是否有新的抽奖信息发布' ) for userid in tqdm(followings_ids): updates_old = followings_infos.pop(userid) updates_latest = self .getupdates(infos_return, userid, session) for dynamic_id in updates_latest.keys(): if dynamic_id not in updates_old: desp = updates_latest[dynamic_id] if '#互动抽取#' in desp: result = self .forwardupdate(session, infos_return, dynamic_id) self .logging( '检测到有新的抽奖信息发布, 已经尝试转发, 返回的结果为{result}' ) followings_infos[userid] = updates_latest |
即当动态中有#互动抽取#这四个字的时候,我们就认定这是一条抽奖用的动态,并对其进行转发。至此,我们的小程序就完成啦,它可以实时监控我们关注的UP主是否有发布新的抽奖信息,如果有,则第一时间参与这个抽奖。我们需要做的就是多关注一些经常发布抽奖信息的UP主就行了,接下来能不能暴富就看运气了。
最终代码的使用方式如下:
1 2 3 4 5 6 7 8 9 10 | usage: bilibililottery.py [ - h] [ - - username USERNAME] [ - - time_interval TIME_INTERVAL] B站监控关注的UP主并自动转发抽奖 optional arguments: - h, - - help show this help message and exit - - username USERNAME 用于存储历史cookies的唯一标识 ID - - time_interval TIME_INTERVAL 查询UP主的动态的间隔时间 |
到此这篇关于基于Python编写一个B站全自动抽奖的小程序的文章就介绍到这了。
点击拿去
50G+学习视频教程
100+Python初阶、中阶、高阶电子书籍