mirror of https://github.com/scrapy/scrapy.git
Add support for executing scrapy using -m option of python
python -m scrapy
This commit is contained in:
parent
dfe6d3d59a
commit
df7a5c4aa4
|
|
@ -0,0 +1,4 @@
|
|||
from scrapy.cmdline import execute
|
||||
|
||||
if __name__ == '__main__':
|
||||
execute()
|
||||
Loading…
Reference in New Issue