Plan: Refactor structure of converters in converters.py
The file converters.py is becoming increasingly cluttered with production and deprecated converter classes.
We should start an effort for reorganizing the module, possibly creating a reasonable sub-module structure.
E.g. FileConverters (YAML, JSON) and ElementConverters (FloatElement, IntegerElement) are kind of different types of converters and could reside in their own module.
Update: We already have a substructure. But what needs to be done here now:
- Go through list of converters and check whether it makes sense to move them to a different module.
- Move the checked converters.