Function.properties()

Returns the function's properties.

properties() → APIList[MethodProp]

Returns the function's properties as an APIList of MethodProps.

Example

from glider import *

def query():
  # Fetch a list of functions
  functions = Functions().exec(1)

  # Retrieve the properties of the first function
  properties = functions[0].properties()
  for prop in properties:
    print(prop)

  return functions

Output

Last updated