(self)
| 110 | return "" |
| 111 | |
| 112 | def run(self) -> CheckinResult: |
| 113 | formhash, info = self.fetch_formhash() |
| 114 | if not formhash: |
| 115 | return CheckinResult(False, "no_login_or_parse_failed", info) |
| 116 | |
| 117 | time.sleep(random.uniform(1.0, 2.5)) |
| 118 | return self.submit_checkin(formhash) |
| 119 | |
| 120 | def main(): |
| 121 | # 青龙面板专用:从环境变量获取Cookie |
no test coverage detected