Callables.with_name()
Functions Example
from glider import *
def query():
# Retrieve the functions named `distributeFunds`
functions = Functions().with_name("distributeFunds").exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated