job.handlers.inputs package

Submodules

job.handlers.inputs.base_input module

Defines the base class for handling inputs

class job.handlers.inputs.base_input.Input(input_name, input_type, required)

Bases: object

Abstract base class that represents an input

job.handlers.inputs.file module

Defines the class for handling file inputs

class job.handlers.inputs.file.FileInput(input_name, required)

Bases: job.handlers.inputs.base_input.Input

Represents a file input

job.handlers.inputs.files module

Defines the class for handling files inputs

class job.handlers.inputs.files.FilesInput(input_name, required)

Bases: job.handlers.inputs.base_input.Input

Represents a multiple file input

job.handlers.inputs.property module

Defines the class for handling property inputs

class job.handlers.inputs.property.PropertyInput(input_name, required)

Bases: job.handlers.inputs.base_input.Input

Represents a property input

Module contents