Spaces:
Sleeping
Sleeping
File size: 516 Bytes
91793e3 b7e2e20 |
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 |
from typing import List, Mapping
# constants relevant to parsing from footballguys
SNAP_PAGE_POSITON_ORDER: List[str] = [
"QB",
"RB",
"WR",
"TE",
"DT",
"DE",
"ILB",
"OLB",
"CB",
"S",
]
POSITIONS_TO_OFFENSE_DEFENSE: Mapping[str, str] = {
"QB": "OFF",
"RB": "OFF",
"WR": "OFF",
"TE": "OFF",
"DT": "DEF",
"DE": "DEF",
"ILB": "DEF",
"OLB": "DEF",
"S": "DEF",
"CB": "DEF",
}
BASE_URL = "https://www.footballguys.com/stats"
YEAR = 2024
|