Module ctfsolver.find_usage.find_function_test
Functions
def find_function()
-
Expand source code
def find_function(): """ Description: This function is used to find the usage of the CTFSolver class in the current directory """ solver = CTFSolver() search_string = "from ctfsolver import CTFSolver" exclude_dirs = ["app_venv", ".git"] current_directory = "." print(solver.get_self_functions())
Description: This function is used to find the usage of the CTFSolver class in the current directory