14 lines
359 B
Batchfile
14 lines
359 B
Batchfile
@echo off
|
|
REM ==========================================
|
|
REM CME OI Scraper - Scheduled Task Version
|
|
REM For use with Windows Task Scheduler
|
|
REM ==========================================
|
|
|
|
REM Navigate to script directory
|
|
cd /d %~dp0
|
|
|
|
REM Activate virtual environment and run scraper (no pause)
|
|
call venv\Scripts\activate.bat
|
|
python main.py
|
|
exit %ERRORLEVEL%
|