Source code for RsCMPX_Base.Implementations.Configure.Base.FreqCorrection.CorrectionTable.Catalog

from typing import List

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.Types import DataType
from ......Internal.ArgSingleList import ArgSingleList
from ......Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CatalogCls: """Catalog commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("catalog", core, parent)
[docs] def get(self, table_path: str = None) -> List[str]: """SCPI: CONFigure:BASE:FDCorrection:CTABle:CATalog \n Snippet: value: List[str] = driver.configure.base.freqCorrection.correctionTable.catalog.get(table_path = rawAbc) \n No command help available \n :param table_path: No help available :return: table_name: No help available""" param = ArgSingleList().compose_cmd_string(ArgSingle('table_path', table_path, DataType.RawString, None, is_optional=True)) response = self._core.io.query_str(f'CONFigure:BASE:FDCorrection:CTABle:CATalog? {param}'.rstrip()) return Conversions.str_to_str_list(response)