Python glob Functions
EditRocket provides the following information on glob functions in the Python source code builder.
glob(pathname) - Return a possibly-empty list of path names that match pathname, which must be a string containing a path specification.
iglob(pathname) - Return an iterator which yields the same values as glob() without actually storing them all simultaneously.