17 lines
275 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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'
]