(cls, crawler, *args, feed_options=None, **kwargs)
| 57 | |
| 58 | @classmethod |
| 59 | def from_crawler(cls, crawler, *args, feed_options=None, **kwargs): |
| 60 | cls.init_with_crawler = True |
| 61 | return cls(*args, **kwargs) |
| 62 | |
| 63 | |
| 64 | class FromCrawlerCsvItemExporter(CsvItemExporter, FromCrawlerMixin): |
no outgoing calls
no test coverage detected