Contracts.with_name()
Adds a filter to get contracts with the given name.
with_name(name: str, sensitivity: bool = True) -> Contracts
Query Example
from glider import *
def query():
contracts = Contracts().with_name("Manager").exec(10)
return contractsOutput Example

Last updated