| 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()} |
|
|
| |
| 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"), |
| ] |
|
|