8 lines
176 B
Python
8 lines
176 B
Python
# app/etl_idle.py
|
|
def run():
|
|
"""
|
|
闲时抓取逻辑。
|
|
可以做全量同步、大批量历史修正等。
|
|
"""
|
|
print("Running idle-period ETL...")
|
|
# ... |