16 lines
227 B
Python
16 lines
227 B
Python
|
# encoding: utf-8
|
||
|
'''
|
||
|
@author: 温进
|
||
|
@file: __init__.py.py
|
||
|
@time: 2023/11/21 下午2:02
|
||
|
@desc:
|
||
|
'''
|
||
|
from .zip_crawler import ZipCrawler
|
||
|
from .dir_crawler import DirCrawler
|
||
|
|
||
|
|
||
|
__all__ = [
|
||
|
'ZipCrawler',
|
||
|
'DirCrawler'
|
||
|
]
|