Skip to content

PythonPartGroup

implementation of the PythonPart

PythonPartGroup

Canonical path: PythonPart.PythonPartGroup.PythonPartGroup

Definition of a PythonPart group

pythonparts property

pythonparts: list[PythonPart]

List of the PythonParts in the group

Returns:

__init__

__init__(
    name: str,
    parameter_list: list[str],
    hash_value: str,
    python_file: str,
    pythonparts: list[PythonPart] | None = None,
    type_uuid: str = "",
    type_display_name: str = "",
)

Initialize

Parameters:

  • name (str) –

    name

  • parameter_list (list[str]) –

    parameter list

  • hash_value (str) –

    hash value of the parameter

  • python_file (str) –

    name of the pyp file

  • pythonparts (list[PythonPart] | None, default: None ) –

    list with the PythonParts to put into group

  • type_uuid (str, default: '' ) –

    define the selectable type defines the selectable type

  • type_display_name (str, default: '' ) –

    display name for the tooltip and object palette

Raises:

  • TypeError

    When list of PythonParts to group contains a non-PythonPart object

__str__

__str__() -> str

create the element string

Returns:

  • str

    element string

append

append(pythonpart: PythonPart)

Add a new PythonPart to the group

Parameters:

create

create() -> ModelEleList

create the PythonPartGroup

Returns:

  • ModelEleList

    list with the created elements for the PythonPartGroup

extend

extend(pythonparts: list[PythonPart])

Extend the group with new PythonParts

Parameters:

  • pythonparts (list[PythonPart]) –

    list of PythonParts to add to the group

from_build_ele classmethod

from_build_ele(
    build_ele: BuildingElement,
    name: str = "",
    pythonparts: list[PythonPart] | None = None,
    type_uuid: str = "",
    type_display_name: str = "",
) -> PythonPartGroup

Initialize the PythonPart group from a BuildingElement

Parameters:

  • cls

    description

  • build_ele (BuildingElement) –

    building element with the parameter properties

  • name (str, default: '' ) –

    Name of the group. If not provided, the name of the .pyp file will be used

  • pythonparts (list[PythonPart] | None, default: None ) –

    List of PythonParts to put into group. You can initialize an empty group

  • type_uuid (str, default: '' ) –

    define the selectable type defines the selectable type

  • type_display_name (str, default: '' ) –

    display name for the tooltip and object palette

Returns:

Raises:

  • TypeError

    When list of PythonParts to group contains a non-PythonPart object

Placeholder