[docs]classStreamingCls:"""Streaming commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("streaming",core,parent)
[docs]defget_status(self)->str:"""SCPI: [SOURce<HW>]:BB:ARBitrary:ETHernet:[STReaming]:STATus \n Snippet: value: str = driver.source.bb.arbitrary.ethernet.streaming.get_status() \n No command help available \n :return: status: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:ETHernet:STReaming:STATus?')returntrim_str_response(response)