Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

hemamaps / Scrapy   python

Repository URL to install this package:

/ contrib / exporter / __init__.py

import warnings
from scrapy.exceptions import ScrapyDeprecationWarning
warnings.warn("Module `scrapy.contrib.exporter` is deprecated, "
              "use `scrapy.exporters` instead",
              ScrapyDeprecationWarning, stacklevel=2)

from scrapy.exporters import *
from scrapy.exporters import PythonItemExporter