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.
13 lines
418 B
13 lines
418 B
#!/usr/bin/env python3
|
|
"""amazingData SDK 最小测试"""
|
|
import sys
|
|
sys.path.insert(0, '/app/working/workspaces/developer/projects/20260330_kline_system/backend')
|
|
|
|
from app.services.amazing_data_service import amazing_data_service
|
|
|
|
print("连接测试...")
|
|
success = amazing_data_service.connect()
|
|
print(f"连接结果:{success}")
|
|
print(f"连接状态:{amazing_data_service._connected}")
|
|
print("测试完成!")
|