class documentation

class StdoutFeedStorage: (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 _stdout Undocumented
def __init__(self, uri, _stdout=None, *, 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): (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