45 lines
2.7 KiB
Python
45 lines
2.7 KiB
Python
|
def get_test_data():
|
||
|
team_a_win = [1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0,
|
||
|
1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0,
|
||
|
1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
||
|
|
||
|
teams_a = ["TSM", "Team Liquid Honda", "CLG", "Cloud9", "FlyQuest", "Golden Guardians", "100 Thieves", "FlyQuest",
|
||
|
"CLG", "Golden Guardians", "Immortals Progressive", "FlyQuest", "100 Thieves", "Dignitas",
|
||
|
"Golden Guardians", "Immortals Progressive", "Dignitas", "Team Liquid Honda", "CLG", "100 Thieves",
|
||
|
"SK Gaming", "MAD Lions", "Team Vitality", "Rogue", "G2 Esports", "Team Vitality", "Schalke 04 Esports",
|
||
|
"Misfits Gaming", "Fnatic", "Rogue", "Misfits Gaming", "Schalke 04 Esports", "SK Gaming", "Fnatic",
|
||
|
"Team Vitality",
|
||
|
"Team ESCA Gaming", "Zero Tenacity", "Komil&Friends", "Topo Centras Iron Wolves", "AGO Rogue",
|
||
|
"Team ESCA Gaming", "Devils.One", "Gentlemen's Gaming", "Zero Tenacity", "Goskilla",
|
||
|
"Maturalni Forsaken",
|
||
|
"Topo Centras Iron Wolves", "Team ESCA Gaming", "Gentlemen's Gaming", "Zero Tenacity"]
|
||
|
|
||
|
teams_b = ["100 Thieves", "Evil Geniuses", "Dignitas", "Evil Geniuses", "TSM", "Immortals Progressive",
|
||
|
"Team Liquid Honda", "Cloud9", "Immortals Progressive", "Dignitas", "Evil Geniuses", "Team Liquid Honda",
|
||
|
"CLG", "TSM", "FlyQuest", "Cloud9", "Evil Geniuses", "Cloud9", "TSM", "Golden Guardians",
|
||
|
"Schalke 04 Esports", "EXCEL", "Fnatic", "Misfits Gaming", "Astralis", "SK Gaming", "MAD Lions",
|
||
|
"Astralis",
|
||
|
"EXCEL", "G2 Esports", "EXCEL", "Rogue", "MAD Lions", "Astralis", "G2 Esports",
|
||
|
"Gentlemen's Gaming", "Devils.One", "Maturalni Forsaken", "Goskilla", "Illuminar Gaming",
|
||
|
"Komil&Friends",
|
||
|
"Maturalni Forsaken", "Illuminar Gaming", "Topo Centras Iron Wolves", "AGO Rogue", "AGO Rogue",
|
||
|
"Komil&Friends", "Illuminar Gaming", "Devils.One", "Goskilla"]
|
||
|
|
||
|
team_a_games = [10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13,
|
||
|
9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11,
|
||
|
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10]
|
||
|
|
||
|
team_b_games = [10, 10, 10, 11, 11, 10, 11, 11, 11, 11, 12, 12, 12, 12, 13, 12, 13, 13, 13, 13,
|
||
|
9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11,
|
||
|
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10]
|
||
|
|
||
|
res_dict = {
|
||
|
"team_a_win": team_a_win,
|
||
|
"teams_a": teams_a,
|
||
|
"teams_b": teams_b,
|
||
|
"team_a_games": team_a_games,
|
||
|
"team_b_games": team_b_games
|
||
|
}
|
||
|
|
||
|
return res_dict
|