Contract.name

Returns the name of a Contract.

property name: str

Example query

from glider import *

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

  for contract in contracts:
    print(contract.name)

  return contracts

Example output

Last updated