You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
703 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 数据源配置文件
# 统一数据获取接口的配置参数
# 数据源类型配置
# 可选值: tqsdk, rqdata
DATA_ADAPTER_TYPE = "tqsdk"
# TQSDK账号配置可选
# 未配置时会使用模拟数据
TQSDK_USERNAME = "windsdreamer"
TQSDK_PASSWORD = "1qazse42W3"
# RQData账号配置可选
# 未配置时会使用模拟数据
RQDATA_USERNAME = "18600025116"
RQDATA_PASSWORD = "1qazse42W3"
# 调试模式配置
# 设置为True时启用详细日志
DEBUG = False
# 数据源连接超时设置(秒)
CONNECTION_TIMEOUT = 30
# 数据缓存配置
# 设置为True时启用数据缓存提高重复查询性能
ENABLE_CACHE = True
# 缓存过期时间(秒)
CACHE_EXPIRY = 3600