glob
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/glob.py
Module Docs

Filename globbing utility.

 
Modules
       
fnmatch
os
re
sys

 
Functions
       
glob(pathname)
Return a list of paths matching a pathname pattern.
 
The pattern may contain simple shell-style wildcards a la
fnmatch. However, unlike fnmatch, filenames starting with a
dot are special cases that are not matched by '*' and '?'
patterns.
iglob(pathname)
Return an iterator which yields the paths matching a pathname pattern.
 
The pattern may contain simple shell-style wildcards a la
fnmatch. However, unlike fnmatch, filenames starting with a
dot are special cases that are not matched by '*' and '?'
patterns.

 
Data
        __all__ = ['glob', 'iglob']