mirror of
https://github.com/ovosimpatico/Whatsapp-Bulk-Sender
synced 2026-01-15 13:32:52 -03:00
12 lines
230 B
Batchfile
12 lines
230 B
Batchfile
@echo off
|
|
|
|
REM check if Python is installed
|
|
where python >nul 2>&1
|
|
if %errorlevel% == 0 (
|
|
REM run the Python script
|
|
python main.py
|
|
) else (
|
|
REM print an error message
|
|
echo Python is not installed on this system.
|
|
)
|