basabuuka_prototyp/venv/lib/python3.5/site-packages/scrapy/conf.py
2020-08-16 19:36:44 +02:00

13 lines
486 B
Python

# This module is kept for backwards compatibility, so users can import
# scrapy.conf.settings and get the settings they expect
import sys
if 'scrapy.cmdline' not in sys.modules:
from scrapy.utils.project import get_project_settings
settings = get_project_settings()
import warnings
from scrapy.exceptions import ScrapyDeprecationWarning
warnings.warn("Module `scrapy.conf` is deprecated, use `crawler.settings` attribute instead",
ScrapyDeprecationWarning, stacklevel=2)