A glob matching library providing an interface similar to the `re` module. Version 0.1.5 is latest. The library appears to be in maintenance mode with infrequent releases.
pip install globreVerified import paths — ran on the pinned version, not inferred.
Basic usage: import globre and use match() like re.match().
Use globre.search() for partial matches, globre.match() for anchored start.
Remember: it's glob syntax, not regex. Use bracket patterns like [abc] for character sets, * for any string, ? for single char.
Use globre.match(pattern, string) directly; no compile step needed.
Always pass patterns as strings: globre.match('**/*.py', 'src/mod.py')No dependency data recorded yet.