Contract.name
Returns the name of a Contract.
Example query
from glider import *
def query():
contracts = Contracts().exec(5)
for contract in contracts:
print(contract.name)
return contractsExample output

Last updated