Adds a filter to get contracts whose names have the given prefix.
Last updated 4 months ago
with_name_prefix(prefix: str, sensitivity: bool = True) ->
with_name_prefix(
prefix: str, sensitivity: bool = True
) ->
from glider import * def query(): main_contracts = Contracts().with_name_prefix("Acc", sensitivity=True).exec(5) return main_contracts
Contracts