|
@@ -16,9 +16,9 @@ class cookie_update:
|
|
|
@staticmethod
|
|
|
def get_cookie_handler():
|
|
|
sql = "select cookie ,phone_num from kwai_promoter.kuaishou_supply_chain_cookie where status =0"
|
|
|
- result = MysqlUtils().QueryOne(sql)
|
|
|
- print(result)
|
|
|
- return result
|
|
|
+ result = MysqlUtils().QueryOne(sql)[0]
|
|
|
+ print(result[0])
|
|
|
+ return result[0]
|
|
|
|
|
|
@staticmethod
|
|
|
def update_cookie_handler(phone_num):
|