Adds a filter to get contracts whose names match the given regex.
Last updated 6 days ago
with_name_regex(regex: str) -> Contracts
with_name_regex(
regex: str
) ->
Contracts
from glider import * def query(): non_interface_contract = Contracts().with_name_regex('^[^I][^A-Z].*').exec(1) return non_interface_contract