Adds a filter to get contracts that don't have the given name.
Last updated 4 months ago
with_name_not(name: str, sensitivity: bool = True) →
from glider import * def query(): contracts = Contracts().with_name_not("Ownable").exec(10) return contracts
Contracts