17 lines
275 B
Python
17 lines
275 B
Python
|
|
#!/usr/bin/env python3
|
|||
|
|
# -*- coding: utf-8 -*-
|
|||
|
|
|
|||
|
|
"""
|
|||
|
|
XHS Spider Module
|
|||
|
|
小红书爬虫模块
|
|||
|
|
|
|||
|
|
作为core的子模块,提供小红书数据爬取功能
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from .main import Data_Spider
|
|||
|
|
from .apis.xhs_pc_apis import XHS_Apis
|
|||
|
|
|
|||
|
|
__all__ = [
|
|||
|
|
'Data_Spider',
|
|||
|
|
'XHS_Apis'
|
|||
|
|
]
|