Instructions.exec()
Executes the formed query and returns the list of Instruction objects
exec(limit_count: int = 0, offset_count: int = 0) β List[
Instruction
]
limit_count
is the number of instructions to query, while offset_count
is the offset applied to the results returned. For example with offset_count
= 2, will return limit_count
instructions starting from the 3rd instructions.
Return type
β List[
Instruction
]
Output:
Last updated