Conditions | 2 |
Total Lines | 8 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | # -*- coding: utf-8 -*- |
||
30 | def main(self): |
||
31 | url = "https://aiqicha.baidu.com/usercenter/getBenefitStatusAjax" |
||
32 | headers = { |
||
33 | "User-Agent": self.get_ua("Safari"), |
||
34 | "Referer": f"https://aiqicha.baidu.com/m/usercenter/exchangeList?VNK={self.randomstr(8)}", |
||
35 | } |
||
36 | if requests.get(url, headers=headers).json()["data"]["AQ03008"] == 1: |
||
37 | send("爱企查e卡监控", "爱企查京东e卡有货,请进行兑换") |
||
38 | |||
45 |