Skip to content

Files

Latest commit

40f2edc · Sep 30, 2024

History

History

data_folder_types

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 6, 2024
Sep 23, 2024
Aug 10, 2024
Jul 29, 2024
Jul 29, 2024
Sep 23, 2024
Aug 10, 2024
Sep 30, 2024
Sep 30, 2024
Jul 29, 2024
Jul 29, 2024
Sep 23, 2024
Aug 10, 2024
Aug 10, 2024
Aug 10, 2024
Aug 10, 2024
Aug 10, 2024
Sep 21, 2024
Sep 21, 2024
Sep 23, 2024
Aug 10, 2024
Aug 10, 2024
Sep 24, 2024

Definition of data subfolder types

A YAML file for each type of data subfolder. They are not parsed for now, it is a prospective study for the architecture revision.

filenames: { # list filenames that can be encountered in folders of this type
  A_FILENAME_KEYWORD: actual_filename.txt,
  ANOTHER_FILENAME_KEYWORD: its_corresponding_filename.obj,
}
distinctive_content: [A_FILENAME_KEYWORD] # list keywords of filenames which existence determines the type of the folder
default_view: view_name # see below

A given data subfolder type can have several views (<type_name>.<view_name>.yml), that is, algorithms to visualize what the folder is representing.

description: |
    Description of the specificities of this view
executable: {
    path: , # an entry of paths.yml
    filename: , # optional, if a filename must be appended to the path
    command_line: # command line template. between curly brackets are {arguments}, filled below
}
arguments: {
    input_files: {
        argument1: # an filename constant (see content of <type_name>.yml)
    }
}

A given data subfolder type can have specific accessors (methods that read a specific file and return a Python object), defined in <type_name>.accessors.py:

#!/usr/bin/env python

from json import load

# own module
from dds import DataFolder

def get_data_json_as_dict(self: DataFolder) -> dict:
    return load(open(self.get_file('some_data.json',True)))

# add this function to the class, as method
DataFolder.get_data_json_as_dict = get_data_json_as_dict