You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New -s/--signatures option to see just the signatures (first line) of each matching class and function. #4
Class methods can now be searched using ClassName.method_name. Wildcards are supported on both sides of this, so you can find all get_* methods on all classes using symbex '*.get_*', or all methods on a specific class using MyClass.*, or all methods on every class using *.*. #9
Initial release. py-grep ClassName function_name will search the current directory recursively for those symbols and output their source code. -f file.py will search in one or more specific files, -d directory will search within one or more specific directories. #1