This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if __name__ == '__main__': | |
sys.path.insert(0,os.path.dirname( | |
os.path.dirname(os.path.realpath(__file__)))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def all_thread_action(): | |
scheduler = BackgroundScheduler() | |
# 交易日 更新 | |
jiao_yi_ri_cache_action() | |
trigger1 = CronTrigger(hour='00', minute='00', second='10') | |
scheduler.add_job(id='cache_jiaoyiri', func=jiao_yi_ri_cache_action, trigger=trigger1, jitter=10, max_instances=6) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding=utf-8 | |
import sys | |
import os | |
if __name__ == '__main__': | |
sys.path.insert(0, os.path.dirname( | |
os.path.dirname(os.path.realpath(__file__)))) | |
sys.path.insert(0, os.path.abspath('./dzh_pb2/')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ycyj_kline.tools.log_ext import init_logger | |
def main(): | |
init_logger("ycyj_hangqing_app") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fun(): | |
pass |
NewerOlder