A backport of Python 3.10's pathlib module to Python 3.6-3.9 (now 3.8+) with a few extensions. It aims to provide a pure-Python drop-in replacement for pathlib.Path with additional features like globbing and pattern matching from later versions. Current version: 2.0.3, release cadence is low.
pip install pathlib3xVerified import paths — ran on the pinned version, not inferred.
Basic usage mimicking pathlib with extended features.
Remove pathlib3x dependency and use `from pathlib import Path`.
If performance is critical, consider using `pathlib` from stdlib or `scandir`.
Update Python to 3.8+ if pinned to pathlib3x>=2.0.0.
Run `pip install pathlib3x` in the correct environment.
Use `from pathlib3x import Path` instead of `from pathlib import Path`.
No dependency data recorded yet.