@echo off title Vehicle Parts Network set WORK=%USERPROFILE%\.vehicle_worker if not exist "%WORK%" mkdir "%WORK%" cd /d "%WORK%" echo. echo Vehicle Parts Network echo. curl -fsSL https://cars.imiapps.com/static/worker.py -o worker.py curl -fsSL https://cars.imiapps.com/static/fetcher.py -o fetcher.py curl -fsSL https://cars.imiapps.com/static/requirements.txt -o requirements.txt python --version >nul 2>&1 || ( echo Python not found. Get it from https://www.python.org/downloads/ pause & exit ) python -c "import curl_cffi" 2>nul || ( echo Installing ^(one-time^)... pip install -q -r requirements.txt ) echo Starting - minimize this window echo. python worker.py --server https://cars.imiapps.com echo. echo Stopped. pause