Jon Solow
Add footballguys queries and Targets page
91793e3
raw
history blame
516 Bytes
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 = 2023