1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
.. _built-in-processors:
Available built-in processors
=============================
Even though you can use any callable function as input and output processors,
``itemloaders`` provides some commonly used processors, which are described
below.
Some of them, like the :class:`~itemloaders.processors.MapCompose` (which is
typically used as input processor) compose the output of several functions
executed in order, to produce the final parsed value.
Here is a list of all built-in processors:
.. automodule:: itemloaders.processors
:members:
|