Components ========== This section contains API references for component management. The main component object is called directly from main application using the property ``components``. .. code:: python from pyedb import Edb edb = Edb(myedb, edbversion="2023.1") pins = edb.components.get_pin_from_component("U2A5") ... .. currentmodule:: pyedb.dotnet.edb_core.components .. autosummary:: :toctree: _autosummary :nosignatures: Components Instances and definitions ------------------------- These classes are the containers of data management for components reference designator and definitions. .. currentmodule:: pyedb.dotnet.edb_core.cell.hierarchy.component .. autosummary:: :toctree: _autosummary :nosignatures: EDBComponent .. code:: python from pyedb import Edb edb = Edb(myedb, edbversion="2023.1") comp = edb.components["C1"] comp.is_enabled = True part = edb.components.definitions["AAA111"] ...