Tag#

class pyedb.misc.siw_feature_config.emc.tag_library.Tag(element)#

Bases: pyedb.misc.siw_feature_config.emc.xml_generic.XmlGeneric

Manages individual tags with their types and configurations.

This class represents a complete tag with its associated tag types and configurations.

Parameters:
elementxml.etree.ElementTree.Element or None

XML element to initialize from.

Attributes:
CLS_MAPPINGdict

Mapping of element types to their corresponding classes.

Examples

>>> from pyedb.misc.siw_feature_config.emc.tag_library import Tag
>>> tag = Tag(None)
>>> tag.label = "Clock"
>>> tag.name = "CLK_TAG"

Overview#

Import detail#

from pyedb.misc.siw_feature_config.emc.tag_library import Tag

Attribute detail#

Tag.CLS_MAPPING: dict#