This commit is contained in:
aaron 2025-05-15 19:43:24 +08:00
parent 124d4a609f
commit 3c697a304c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ async def get_crypto_kline(symbol: str, timeframe: Optional[str] = None, limit:
binance_api = get_binance_api()
kline = binance_api.get_historical_klines(symbol=symbol, interval=timeframe, limit=limit, ts_transform=False)
kline = binance_api.get_historical_klines(symbol=symbol, interval=timeframe, limit=limit, ts_transform=False).to_dict(orient="records")
# data_processor = DataProcessor()

View File

@ -29,7 +29,7 @@ services:
cryptoai-api:
build: .
container_name: cryptoai-api
image: cryptoai-api:0.1.0
image: cryptoai-api:0.1.1
restart: always
ports:
- "8000:8000"