8 lines
259 B
Python
8 lines
259 B
Python
|
import warnings
|
||
|
from scrapy.exceptions import ScrapyDeprecationWarning
|
||
|
warnings.warn("Module `scrapy.command` is deprecated, "
|
||
|
"use `scrapy.commands` instead",
|
||
|
ScrapyDeprecationWarning, stacklevel=2)
|
||
|
|
||
|
from scrapy.commands import *
|