Task#

class Task[source]#

Bases: Config

Enumerates the row indices of a CSV table, one per row, into the standard output

Specifically, this prints the integers 0 to n-1 included, where n is the number of rows in the CSV file.

prog_: ClassVar[Optional[str]] = 'enumerate_table_column_unique_values'#

Program name

ini_strict_sections_: ClassVar[Sequence[str]] = ['enumerate_table_column_unique_values']#

Names of additional sections to parse in configuration files, unknown keys error

ini_relaxed_sections_: ClassVar[Sequence[str]] = ['enumerate']#

Names of sections to parse in configuration files, with unknown keys ignored

env_prefix_: ClassVar[str] = 'RASSINE'#

Prefix for automatically derived environment variable names

config: Sequence[pathlib.Path][Sequence[Path]]#

Use the specified configuration files.

Files can be separated by commas/the command can be invoked multiple times.

root: Path[Path]#

Root path of the data, used as a base for other relative paths

logging_level: LoggingLevel[LoggingLevel]#

Logging level to use

input_table: Path[Path]#

Input table to enumerate the row indices of

column: str[str]#

Column to get unique values from

__init__(config, root, logging_level, input_table, column)#