pwdl_BackendV2 / pwdl.bat
AkshitShubham's picture
Upload folder using huggingface_hub
942dcac verified
raw
history blame
291 Bytes
@echo off
REM Batch script for running the Python script pwdl.py
REM Check if Python is installed
py --version >nul 2>&1
if errorlevel 1 (
echo Python is not installed or not found in the PATH.
exit /b 1
)
REM Run the Python script with the provided arguments
py "%~dp0pwdl.py" %*