Contracts.exec()

Executes the formed query and returns the list of Contract objects.

exec(limit_count: int = 0, offset_count: int = 0) -> APIList[Contract]

Example Query 1

from glider import *

def query():
  contracts = Contracts().exec(3)

  return contracts

Output Example 1

Example Query 2

from glider import *

def query():
  contracts = Contracts().exec(1, 2)

  return contracts

Output Query 2

Last updated