Instruction.get_components()
Returns the instruction's components.
get_components() →
APIList
[
Value
|
NoneObject
]
Query Example
from glider import *
def query():
instructions = Instructions().exec(1,10)
for inst in instructions:
for component in inst.get_components():
print(component.expression)
return instructions
Output Example

Last updated