16 lines
324 B
Python
16 lines
324 B
Python
|
|
"""Data collection module for Tushare.
|
||
|
|
|
||
|
|
Provides simplified interfaces for fetching and storing Tushare data.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from src.data.config import Config, get_config
|
||
|
|
from src.data.client import TushareClient
|
||
|
|
from src.data.storage import Storage
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Config",
|
||
|
|
"get_config",
|
||
|
|
"TushareClient",
|
||
|
|
"Storage",
|
||
|
|
]
|