资源简介

对于微信小程序《抽奖助手》的爬虫代码,实现自动抽奖。 只需替换自己的授权码就可以使用

资源截图

代码片段和文件信息


# coding=utf-8

import requests
headers = {“Authorization“: “Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXV...换成自己的授权码“}
def main():
i = 0
print(“现在进行每日福利抽奖:“)
url = “https://lucky.nocode.com/public_lottery?page=1&size=5“
res = requests.get(url headers=headers)
lotteries = res.json().get(“data“)
join_url = “https://lucky.nocode.com/lottery/{id}/join“
for lottery in lotteries:
res = requests.post(join_url.format(id=lottery.get(“id“)) headers=headers)
data = res.json()
if res.status_code == 200 and ‘errors‘ not in data:
i += 1
print(“%d 成功参与抽奖:《%s》“ %(ilottery.get(“prizes“).get(“data“)[0].get(“name“)))

de

评论

共有 条评论