creditrating/BM02_指标计算/流动性/净稳定资金率.py

24 lines
488 B
Python
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.

from fastapi import APIRouter
from pydantic import BaseModel
INDEX = "净稳定资金率(%"
router = APIRouter()
class Params(BaseModel):
可用稳定资金: float
所需稳定资金: float
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
result = p.可用稳定资金 / p.所需稳定资金 * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"