MCPcopy
hub / github.com/scrapy/scrapy / __init__

Method __init__

scrapy/exporters.py:40–42  ·  view source on GitHub ↗
(self, *, dont_fail: bool = False, **kwargs: Any)

Source from the content-addressed store, hash-verified

38
39class BaseItemExporter(ABC):
40 def __init__(self, *, dont_fail: bool = False, **kwargs: Any):
41 self._kwargs: dict[str, Any] = kwargs
42 self._configure(kwargs, dont_fail=dont_fail)
43
44 def _configure(self, options: dict[str, Any], dont_fail: bool = False) -> None:
45 """Configure the exporter by popping options from the ``options`` dict.

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.95

Tested by

no test coverage detected