Explorar el Código

删除无用任务类

dzr hace 8 meses
padre
commit
5e2c5f17b5
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1 3
      produce_task.py

+ 1 - 3
produce_task.py

@@ -2,14 +2,13 @@
 """
 Created on 2023-04-24 
 ---------
-@summary: 分布式任务管理服务
+@summary: 通用采集基础服务
 ---------
 @author: Dzr
 """
 from common.log import logger
 from services import (
     CompetitiveProductServer,
-    SiteMonitorServer,
     ProxyPoolServer,
     NMPAServer,
 )
@@ -21,7 +20,6 @@ def create_server():
         # NMPAServer('国家药品监督管理局', 'py_theme', 'nmpa_c', 100),
         # CompetitiveProductServer('元博网', 'ybw', 'py_spider', 'ybw_list', 1000),
         CompetitiveProductServer('中国招标与采购网', 'zbytb', 'py_spider', 'zbytb_list', 1000),
-        # SiteMonitorServer('网站监控', 'monitor', 'py_spider', 'site_monitor'),
         ProxyPoolServer('代理池', 'proxy', 'socks5'),
         # ProxyPoolServer('代理池', 'proxy', 'http')
     ]