ValueExpression.get_components()
Returns the value expression's components
get_components(self) -> APIList[Union[
Value
,
NoneObject
]]
Query Example
from glider import *
def query():
instructions = (
Instructions()
.exec(1,27)
)
for instruction in instructions:
for component in instruction.get_value().get_components():
print(component)
print(component.expression)
return instructions
Output Example

Last updated