Callables.with_arg_count()
Functions Example
from glider import *
def query():
# Retrieve the functions that have 12 arguments
functions = Functions().with_arg_count(12).exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated