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