Callable.signature()

Returns the function's or modifier's signature.

signature() → str

Example

from glider import *
def query():
  functions = Functions().exec(3,3)

  for function in functions:
    # Aggregate the signature of each function along with their name
    print(f"function name {function.name} | signature {function.signature()}")

  return functions

Example output

Last updated