Function.is_public()
Returns true if the visibility of the function is public, otherwise returns false.
is_public() → bool
Example
from glider import *
def query():
public_functions = (
Functions()
.exec(10)
.filter(lambda x: x.is_public())
)
return public_functions
Output

Last updated