From fa28c99032af4adbb030bc6a167a48201a1479ce Mon Sep 17 00:00:00 2001 From: Germey Date: Mon, 31 Jul 2017 02:25:40 +0800 Subject: [PATCH] update scheduler --- cookiespool/scheduler.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cookiespool/scheduler.py b/cookiespool/scheduler.py index aef6206..8910a89 100644 --- a/cookiespool/scheduler.py +++ b/cookiespool/scheduler.py @@ -6,6 +6,7 @@ from cookiespool.config import * from cookiespool.generator import * from cookiespool.tester import * + class Scheduler(object): @staticmethod def valid_cookie(cycle=CYCLE): @@ -20,7 +21,7 @@ class Scheduler(object): time.sleep(cycle) except Exception as e: print(e.args) - + @staticmethod def generate_cookie(cycle=CYCLE): while True: @@ -34,22 +35,21 @@ class Scheduler(object): time.sleep(cycle) except Exception as e: print(e.args) - + @staticmethod def api(): print('API接口开始运行') app.run(host=API_HOST, port=API_PORT) - + def run(self): + if API_PROCESS: + api_process = Process(target=Scheduler.api) + api_process.start() + if GENERATOR_PROCESS: generate_process = Process(target=Scheduler.generate_cookie) generate_process.start() - + if VALID_PROCESS: valid_process = Process(target=Scheduler.valid_cookie) valid_process.start() - - if API_PROCESS: - api_process = Process(target=Scheduler.api) - api_process.start() -