Returns the function's properties.
Last updated 4 months ago
properties() → []
properties() →
[
]
Returns the function's properties as an of .
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
APIList
MethodProp