Callable.arguments()
Returns an Arguments object for the arguments of the function/modifier.
arguments() →
ArgumentPoints
Example
from glider import *
def query():
functions = Functions().exec(1,4)
for func in functions:
for arg in func.arguments().list():
print(f"Function name: {func.name}, Argument: {arg.source_code()}")
return functions
Example output

Last updated