Structs.exec()
Executes the formed query and returns the list of Struct objects.
exec(
limit_count: int = 0, offset_count: int = 0
) →
APIList
[
Struct
]
Query Example
from glider import *
def query():
contracts = Contracts().exec(1, 26)
for struct in contracts[0].structs().exec():
print(struct.name)
return []
Example Output
[
{
"print_output": [
"UserInfo"
]
}
]
Last updated