@echo off REM ===== Step 1: pull the latest NFL data (run this on draft day) ===== cd /d "%~dp0" where python >nul 2>&1 if errorlevel 1 ( echo. echo Python was not found on PATH. echo Install Python 3 from python.org and tick "Add Python to PATH". echo. pause exit /b 1 ) echo =============================================================== echo 1/2 Rosters, ADP, news, injuries, byes -^> players.json echo =============================================================== python fetch_players.py if errorlevel 1 ( echo. echo !! The player fetch reported an error ^(see the message above^). echo Your previous players.json was NOT overwritten, so the draft echo can still run on the last good data. A re-run usually fixes echo temporary ESPN rate-limiting. echo. ) echo. echo =============================================================== echo 2/2 War-room intel: tiers, projections, 4-yr stats, schedules echo =============================================================== python fetch_guide_stats.py if errorlevel 1 ( echo. echo !! War-room intel fetch reported an error. The draft board is echo unaffected; the guide will reuse the last good guide_stats.json. echo. ) echo. echo Done. Open the control screen and click the gear -^> Load / Refresh Players. echo. pause