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.

Deprecated: This method is deprecated and will be removed in future versions.

Alternative: Use with_properties() instead for improved functionality.

with_one_property(properties: List[MethodProp]) → Functions

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 functions

Output

Last updated