Returns the function's properties.
Last updated 8 days ago
properties() β APIList[MethodProp]
properties() β
APIList
[
MethodProp
]
Returns the function's properties as an APIList of MethodProps.
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