12 lines
200 B
Python
12 lines
200 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
# @Time : 2024/11/15 下午7:32
|
||
|
|
# @Author : 河瞬
|
||
|
|
# @FileName: __init__.py
|
||
|
|
# @Software: PyCharm
|
||
|
|
|
||
|
|
from .caltech import PsycologySpider
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"PsycologySpider"
|
||
|
|
]
|