11 lines
183 B
Python
11 lines
183 B
Python
|
# encoding: UTF-8
|
|||
|
|
|||
|
"""
|
|||
|
立即下载数据到数据库中,用于手动执行更新操作。
|
|||
|
"""
|
|||
|
|
|||
|
from dataService import *
|
|||
|
|
|||
|
|
|||
|
if __name__ == '__main__':
|
|||
|
downloadAllMinuteBar(1000)
|