rglob
index
/usr/local/lib/python2.7/dist-packages/rglob-1.3-py2.7.egg/rglob.py

Recursive Glob Module
Methods:
        rglob(base, pattern)
        rglob_(pattern)
        lcount(base, pattern, func=lambda x : True)

 
Modules
       
glob
os

 
Functions
       
lcount(base, pattern, func=<function <lambda>>)
Counts the number of lines in each file found matching pattern.
Params:
        base - root directory to start the search
        pattern - pattern for glob to match (i.e '*.py')
        func - boolean filter function
                example: lambda x : True if len(x.strip()) else False #don't count empty lines
                default: lambda x : True
rglob(base, pattern)
Recursive glob starting in specified directory
rglob_(pattern)
Performs a recursive glob in the current working directory