Callables.with_name_regex()
Functions Example
from glider import *
def query():
# Retrieve the functions that have `claim` in their name but do not start with `_`
functions = Functions().with_name_regex(r"^(?!_).*claim.*$").exec(100)
# Return the first five functions
return functions[:1]
Modifiers Example

Last updated