Returns the list of ArgumentPoints having specified name.
Last updated 3 months ago
with_name(arg_name: str, sensitivity: bool = False) → APIList[ArgumentPoint]
with_name(arg_name: str, sensitivity: bool = False) →
APIList
[
ArgumentPoint
]
from glider import * def query(): functions = ( Functions() .with_name("transfer") .exec(1) ) arguments = functions[0].arguments() print(arguments.with_name("_amount").source_code()) return functions