Errors.exec()
Executes the formed query and returns the list of Error objects.
exec(
limit_count: int = 0, offset_count: int = 0
) →
APIList
[
Error
]
Query Example
from glider import *
def query():
contracts = Contracts().exec(1, 2265)
for contract in contracts:
for error in contract.errors().exec():
print(error.name)
return []
Example Output

Last updated