Files
NHL-Scoreboard/app/standings.py
josh dd5ac945bd
All checks were successful
CI / Lint (push) Successful in 7s
CI / Test (push) Successful in 5s
CI / Build & Push (push) Successful in 14s
refactor: rename functions across codebase for clarity
2026-03-29 10:21:01 -04:00

75 lines
1.9 KiB
Python

import logging
import sqlite3
import requests
from app.config import DB_PATH
logger = logging.getLogger(__name__)
def create_standings_table(conn):
cursor = conn.cursor()
cursor.execute("""
CREATE TABLE IF NOT EXISTS standings (
team_common_name TEXT,
league_sequence INTEGER,
league_l10_sequence INTEGER
)
""")
conn.commit()
def truncate_standings_table(conn):
cursor = conn.cursor()
cursor.execute("DELETE FROM standings")
conn.commit()
def insert_standings(conn, standings):
cursor = conn.cursor()
for team in standings:
cursor.execute(
"""
INSERT INTO standings (team_common_name, league_sequence, league_l10_sequence)
VALUES (?, ?, ?)
""",
(
team["team_common_name"],
team["league_sequence"],
team["league_l10_sequence"],
),
)
conn.commit()
def fetch_standings():
url = "https://api-web.nhle.com/v1/standings/now"
try:
response = requests.get(url, timeout=10)
response.raise_for_status()
standings_data = response.json()
standings = []
for team in standings_data.get("standings", []):
standings.append(
{
"team_common_name": team["teamCommonName"]["default"],
"league_sequence": team["leagueSequence"],
"league_l10_sequence": team["leagueL10Sequence"],
}
)
return standings
except requests.RequestException as e:
logger.error("Failed to fetch standings: %s", e)
return None
def refresh_standings():
conn = sqlite3.connect(DB_PATH)
create_standings_table(conn)
truncate_standings_table(conn)
standings = fetch_standings()
if standings:
insert_standings(conn, standings)
conn.close()