MCPcopy
hub / github.com/scrapy/scrapy / _get_exporter

Method _get_exporter

scrapy/extensions/feedexport.py:427–432  ·  view source on GitHub ↗
(
        self, file: IO[bytes], format_: str, *args: Any, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

425 self._exporting = True
426
427 def _get_exporter(
428 self, file: IO[bytes], format_: str, *args: Any, **kwargs: Any
429 ) -> BaseItemExporter:
430 return build_from_crawler(
431 self.exporters[format_], self.crawler, file, *args, **kwargs
432 )
433
434 def finish_exporting(self) -> None:
435 if self._exporting:

Callers 1

start_exportingMethod · 0.95

Calls 1

build_from_crawlerFunction · 0.90

Tested by

no test coverage detected