7 lines
203 B
Python
7 lines
203 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
class CrawlerManagement:
|
||
|
|
def __init__(self, config_data: Dict[str, Any]):
|
||
|
|
self.config_data = config_data
|
||
|
|
self.redis_conn = RedisTaskManager(self.config_data)
|