Open the storage for the given spider. It must return a file-like object that will be used for the exporters
(spider)
| 98 | feed-specific options (see :setting:`FEEDS`)""" |
| 99 | |
| 100 | def open(spider): # type: ignore[no-untyped-def] |
| 101 | """Open the storage for the given spider. It must return a file-like |
| 102 | object that will be used for the exporters""" |
| 103 | |
| 104 | def store(file): # type: ignore[no-untyped-def] |
| 105 | """Store the given file stream""" |
no outgoing calls
no test coverage detected