auto_trade_sys/trading_system/requirements.txt
2026-01-20 15:55:34 +08:00

20 lines
610 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 交易系统依赖
python-binance==1.0.19
websocket-client==1.6.1
aiohttp==3.9.1
# 数据库依赖(用于从数据库读取配置)
pymysql==1.1.0
python-dotenv==1.0.0
# Redis 缓存依赖
# redis-py 4.2+ 同时支持同步和异步客户端
# - redis.Redis: 同步客户端用于backend/config_manager
# - redis.asyncio.Redis: 异步客户端用于trading_system替代aioredis
redis>=4.2.0
# 保留aioredis作为备选向后兼容如果某些代码仍在使用
aioredis==2.0.1
# 安全加密存储敏感字段API KEY/SECRET后端 models 复用)
cryptography>=42.0.0