File size: 2,119 Bytes
1727748 c156070 d2c841f 07b602c c156070 c4f0af7 d2c841f dc974d8 d2c841f dc974d8 d2c841f c156070 1727748 b838c58 1727748 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
from domain import teams
PLAYOFF_WEEK_TO_SCHEDULE_WEEK = {
1: "WildCard",
2: "Division",
3: "ConfChamp",
4: "SuperBowl",
}
SCHEDULE_WEEK_TO_PLAYOFF_WEEK = {v: k for k, v in PLAYOFF_WEEK_TO_SCHEDULE_WEEK.items()}
PLAYOFF_WEEK_TO_ROSTER_WEEK = {
1: 19,
2: 20,
3: 21,
4: 22,
}
ROSTER_WEEK_TO_PLAYOFF_WEEK = {v: k for k, v in PLAYOFF_WEEK_TO_ROSTER_WEEK.items()}
# Still map 18 to week 1 in one direction for players on a bye in week 19
ROSTER_WEEK_TO_PLAYOFF_WEEK[18] = 1
PLAYOFF_WEEK_TO_NAME = {
1: "Wildcard",
2: "Divisional",
3: "Conference",
4: "Super Bowl",
}
CURRENT_PLAYOFF_WEEK = 1
PLAYOFFS_TEAMS = {
1: [
teams.baltimore_ravens.rosters_short_name,
teams.miami_dolphins.rosters_short_name,
teams.kansas_city_chiefs.rosters_short_name,
teams.houston_texans.rosters_short_name,
teams.cleveland_browns.rosters_short_name,
teams.san_francisco_49ers.rosters_short_name,
teams.dallas_cowboys.rosters_short_name,
teams.detroit_lions.rosters_short_name,
teams.philadelphia_eagles.rosters_short_name,
teams.los_angeles_rams.rosters_short_name,
teams.tampa_bay_buccaneers.rosters_short_name,
teams.buffalo_bills.rosters_short_name,
teams.pittsburgh_steelers.rosters_short_name,
teams.green_bay_packers.rosters_short_name,
],
2: [],
3: [],
4: [],
}
PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [
(teams.baltimore_ravens, "00-0036323"),
(teams.miami_dolphins, "00-0033055"),
(teams.kansas_city_chiefs, "00-0032762"),
(teams.houston_texans, "00-0031298"),
(teams.cleveland_browns, "00-0033868"),
(teams.san_francisco_49ers, "00-0034815"),
(teams.dallas_cowboys, "00-0036932"),
(teams.detroit_lions, "00-0037236"),
(teams.philadelphia_eagles, "00-0027865"),
(teams.los_angeles_rams, "00-0031388"),
(teams.tampa_bay_buccaneers, "00-0034773"),
(teams.buffalo_bills, "00-0036888"),
(teams.pittsburgh_steelers, "00-0033886"),
(teams.green_bay_packers, "00-0034728"),
]
|