This commit is contained in:
aaron 2025-05-19 18:10:38 +08:00
parent 24ce138770
commit 25335e5633
2 changed files with 7 additions and 7 deletions

View File

@ -38,13 +38,13 @@ async def get_stock_base(stock_code: str):
core_index = api.get_stock_finance_core_index(stock_code)
result["finance_core_index"] = json.loads(core_index.to_json(orient="records"))
# 获取股本信息
stock_shares = api.get_stock_shares(stock_code)
result["stock_shares"] = json.loads(stock_shares.to_json(orient="records"))
# # 获取股本信息
# stock_shares = api.get_stock_shares(stock_code)
# result["stock_shares"] = json.loads(stock_shares.to_json(orient="records"))
# 获取概念板块
concept_east = api.get_concept_east(stock_code)
result["concept_east"] = json.loads(concept_east.to_json(orient="records"))
# # 获取概念板块
# concept_east = api.get_concept_east(stock_code)
# result["concept_east"] = json.loads(concept_east.to_json(orient="records"))
# 获取板块
plate_east = api.get_plate_east(stock_code)

View File

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