(self)
| 136 | |
| 137 | # 执行欢太商城实例对象 |
| 138 | def start(self): |
| 139 | self.sess.headers.update({ |
| 140 | "User-Agent":self.dic['UA'] |
| 141 | }) |
| 142 | self.sess.cookies.update({ |
| 143 | "Cookie": self.dic['CK'] |
| 144 | }) |
| 145 | if self.login() == True: |
| 146 | if self.getDailyCashTask() == True: |
| 147 | self.runtimeReward() |
| 148 | notify('*' * 40 + '\n') |
| 149 | |
| 150 | # 检测CK是否存在必备参数 |
| 151 | def checkHT(dic): |
no test coverage detected