Ejemplo n.º 1
0
 def get_top10_standing(query: Query = None) -> List[Dict[str, Any]]:
     return db.get_topn_standing(query, topn=10)
Ejemplo n.º 2
0
 def get_topn_standing(query: Query = None,
                       topn: int = 10) -> List[Dict[str, Any]]:
     return db.get_topn_standing(query, topn=topn)
Ejemplo n.º 3
0
 def get_top10_standing(query=None):
     return db.get_topn_standing(query, topn=10)
Ejemplo n.º 4
0
 def get_top10_standing(query: Query=None) -> List[Dict[str, Any]]:
     return db.get_topn_standing(query, topn=10)