blob: 996a399e7751ae332bba845f6a4c7c65b59a95f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from jfr_playoff.data.info import ResultInfoClient
class TournamentInfoClient(ResultInfoClient):
def get_results_link(self, suffix):
raise NotImplementedError
def is_finished(self):
raise NotImplementedError
def get_tournament_results(self):
raise NotImplementedError
CLIENTS = [
'jfr_playoff.data.tournament.jfrdb',
'jfr_playoff.data.tournament.jfrhtml',
'jfr_playoff.data.tournament.tcjson'
]
|