Configuring Your Transformers

The PyData I/O framework allows you to configure and define your data transformers in the application configuration file. This provides flexibility and ease of customization by separating the processor implementation from the configuration details.

Configuration Syntax

To configure a processor, you need to define it in the application configuration file using the following syntax:

Processing:
  type: "gettingstarted.DuplicatesDropper"
  parameters:
    custom_value_1: "june"
    custom_value_2: "2023"

To see how to access these values in your processors code, see the dedicated page.