mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-23 19:24:22 +00:00
11 lines
287 B
Batchfile
11 lines
287 B
Batchfile
@echo off
|
|
rem Windows command-line tool for Scrapy
|
|
|
|
setlocal
|
|
rem Use a full path to Python (relative to this script) as the standard Python
|
|
rem install does not put python.exe on the PATH...
|
|
rem %~dp0 is the directory of this script
|
|
|
|
"%~dp0..\python" "%~dp0scrapy" %*
|
|
endlocal
|