15 lines
223 B
Python
15 lines
223 B
Python
![]() |
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
"""
|
||
|
task基类
|
||
|
"""
|
||
|
from web.handler.crawl_data_handler import CrawlDataHandler
|
||
|
|
||
|
|
||
|
class BaseTask:
|
||
|
|
||
|
def __init__(self):
|
||
|
self.crawl_data_handler = CrawlDataHandler()
|