Glob Module: Unix-Style Pathname Pattern Matching
TL;DR
The glob module finds all pathnames matching a Unix shell-style pattern using wildcards like * (any characters), ? (single character), and [seq] (character ranges), making file discovery and batch operations simple.