You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 从当前模块(或父模块)导入 Module 类
|
|
from .module import Module
|
|
|
|
|
|
class Crawl(Module):
|
|
"""
|
|
爬虫基类
|
|
该类继承自 Module 类,用于构建爬虫的基础功能和结构。
|
|
"""
|
|
def __init__(self):
|
|
# 调用父类 Module 的构造函数,初始化继承的功能
|
|
Module.__init__(self)
|