14 lines
294 B
Python
14 lines
294 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from web.service.training_sensitive_word_service import TrainingSensitiveWordService
|
|
|
|
|
|
class BaseSpider:
|
|
"""
|
|
Spider层的基类
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.training_sensitive_word_service = TrainingSensitiveWordService()
|