Skip to main content

No project description provided

Project description

Python Test PyPI version MIT License

oglob

The oglob is a Python module designed to offer composable file searching capabilities beyond the traditional glob.glob functionality. It enables users to perform complex pattern-based searches for files and directories within a file system, offering a blend of flexibility, performance, and ease of use.

The Key feature is the composable file pattern matching: Utilizes logical operators such as AND, OR, NOT, and AND NOT (DIFF) to construct intricate search patterns, allowing for precise file and directory selection criteria.

Getting Started

The module is easy to integrate and use within any Python project. It's compatible with standard Python workflows and can be used alongside other file manipulation libraries.

from oglob import files
root = '.'
pattern = files.sec(lambda parts: 'tests' in parts)
pattern &= files.path(lambda p: p.suffix == '.py')
required_files = files(root, pattern, recursive=True)
# required_files: Iterable[Path]

API Reference

  • files(root: str | Path, pattern: PathPattern, ...), see the docstrings for more details.
  • files.sec(predicate: 'tuple[str, ...] -> bool') -> PathPattern
  • files.full(predicate: 'str -> bool') -> PathPattern
  • files.path(predicate: 'Path -> bool') -> PathPattern
  • files.name(predicate: 'str -> bool') -> PathPattern

For PathPattern objects, logical operators are supported:

  • p1 & p2: p1 and p2 must be satisfied.
  • p1 | p2: p1 or p2 must be satisfied.
  • ~p: p must not be satisfied.
  • p1 - p2: p1 must be satisfied, but p2 must not be satisfied.

Contributing

Feature enhancement, bug fixes, and documentation improvements are welcome, community input is highly valued.

LICENSE

This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oglob-0.1.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

oglob-0.1.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file oglob-0.1.0.tar.gz.

File metadata

  • Download URL: oglob-0.1.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for oglob-0.1.0.tar.gz
Algorithm Hash digest
SHA256 99aa298cfcc43f8b86bae3f5ca565de9e10d13801872eeba62d1d63c65ad566a
MD5 b466252199436617625355112ec80674
BLAKE2b-256 473486902dce97c27fb0536e6530d12eedff70ccc86c5efb4b4c62891df8cee2

See more details on using hashes here.

File details

Details for the file oglob-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: oglob-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for oglob-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 17a60678d0f88c4368c747eb5ff57b2622307740961b1e495afb2b7c7133a2ea
MD5 27bcb20c7552a21b3f4462bf7c2c8f8b
BLAKE2b-256 5426629f0b327bb6668c708bbb28b5e5d8b7efb815376d31cd5c3b1c6c71ce83

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page