mirror of https://github.com/scrapy/scrapy.git
moved item exporters doc to stable doc
--HG-- rename : docs/experimental/exporters.rst => docs/topics/exporters.rst
This commit is contained in:
parent
0b152c99b5
commit
8d006e9ea1
|
|
@ -19,6 +19,5 @@ it's properly merged) . Use at your own risk.
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
exporters
|
||||
images
|
||||
djangoitems
|
||||
|
|
|
|||
|
|
@ -169,6 +169,7 @@ Reference
|
|||
topics/settings
|
||||
topics/signals
|
||||
topics/exceptions
|
||||
topics/exporters
|
||||
|
||||
:doc:`topics/scrapy-ctl`
|
||||
Understand the command used to control your Scrapy project.
|
||||
|
|
@ -185,6 +186,9 @@ Reference
|
|||
:doc:`topics/exceptions`
|
||||
See all available exceptions and their meaning.
|
||||
|
||||
:doc:`topics/exporters`
|
||||
Quickly export your scraped items to a file (XML, CSV, etc).
|
||||
|
||||
|
||||
All the rest
|
||||
============
|
||||
|
|
|
|||
|
|
@ -106,10 +106,10 @@ File Export Pipeline
|
|||
|
||||
This pipeline exports all scraped items into a file, using different formats.
|
||||
|
||||
It is simple but convenient wrapper to use :doc:`Item Exporters
|
||||
</experimental/exporters>` as :ref:`Item Pipelines <topics-item-pipeline>`. If
|
||||
you need more custom/advanced functionality you can write your own pipeline or
|
||||
subclass the :doc:`Item Exporters </experimental/exporters>` .
|
||||
It is simple but convenient wrapper to use :doc:`Item Exporters <exporters>` as
|
||||
:ref:`Item Pipelines <topics-item-pipeline>`. If you need more custom/advanced
|
||||
functionality you can write your own pipeline or subclass the :doc:`Item
|
||||
Exporters <exporters>` .
|
||||
|
||||
It supports the following settings:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue