1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalpack/stars/api_cvstats_latest.py
2020-06-26 16:13:11 +02:00

18 lines
524 B
Python

import royalnet.utils as ru
import royalnet.constellation.api as rca
from ..tables import Cvstats
class ApiCvstatsLatestStar(rca.ApiStar):
path = "/api/cvstats/latest/v1"
tags = ["cvstats"]
@rca.magic
async def get(self, data: rca.ApiData) -> ru.JSON:
"""Get the latest 500 cvstats recorded."""
CvstatsT = self.alchemy.get(Cvstats)
cvstats = data.session.query(CvstatsT).order_by(CvstatsT.timestamp.desc()).limit(500).all()
return list(map(lambda c: c.json(), cvstats))