diff --git a/scrapy/statscol.py b/scrapy/statscol.py new file mode 100644 index 000000000..b4ddcce28 --- /dev/null +++ b/scrapy/statscol.py @@ -0,0 +1,7 @@ +import warnings +from scrapy.exceptions import ScrapyDeprecationWarning +warnings.warn("Module `scrapy.statscol` is deprecated, " + "use `scrapy.statscollectors` instead", + ScrapyDeprecationWarning, stacklevel=2) + +from scrapy.statscollectors import *