Exemplo n.º 1
0
def GetLatestMatches():
    """Returns the last 500 matches (sorted by match_seq_num) that were parsed into MatchDetails. 
    """
    return MatchDetails.exclude_low_priority().filter(
        lobby_type=0).order_by('-match_seq_num')[:500]
Exemplo n.º 2
0
def GetLatestMatches():
    """Returns the last 500 matches (sorted by match_seq_num) that were parsed into MatchDetails. 
    """
    return MatchDetails.exclude_low_priority().filter(lobby_type=0).order_by('-match_seq_num')[:500]