class documentation

class FileFeedStorage: (source)

Implements interfaces: scrapy.extensions.feedexport.IFeedStorage

View In Hierarchy

Undocumented

Method __init__ Initialize the storage with the parameters given in the URI and the feed-specific options (see :setting:`FEEDS`)
Method open Open the storage for the given spider. It must return a file-like object that will be used for the exporters
Method store Store the given file stream
Instance Variable path Undocumented
Instance Variable write_mode Undocumented
def __init__(self, uri, *, feed_options=None): (source)

Initialize the storage with the parameters given in the URI and the feed-specific options (see :setting:`FEEDS`)

def open(self, spider) -> IO[Any]: (source)

Open the storage for the given spider. It must return a file-like object that will be used for the exporters

def store(self, file): (source)

Store the given file stream

Undocumented

write_mode = (source)

Undocumented