Functions.with_one_property()
with_one_property is deprecated and will be removed in future versions. Please use with_properties in- stead. Adds a filter to get functions that at least have one of the given properties.
Example
from glider import *
def query():
# Fetch a list of functions which a external
functions = Functions().with_one_property([MethodProp.EXTERNAL]).exec(3, 100)
return functionsOutput

Last updated