(self)
| 184 | |
| 185 | # 领潮金币签到 |
| 186 | def check_in(self): |
| 187 | url = 'https://app.dewu.com/hacking-game-center/v1/sign/sign' |
| 188 | response = self.session.post(url, headers=self.headers) |
| 189 | response_dict = response.json() |
| 190 | # myprint(response_dict) |
| 191 | if response_dict.get('code') == 200: |
| 192 | myprint(f"签到成功!") |
| 193 | return |
| 194 | myprint(f"签到失败! {response_dict.get('msg')}") |
| 195 | |
| 196 | # 水滴7天签到 |
| 197 | def droplet_check_in(self): |
no test coverage detected