{"library":"pathlib3x","title":"pathlib3x","description":"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.","language":"python","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["pip install pathlib3x"],"cli":null},"imports":["from pathlib3x import Path"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pathlib3x import Path\n\np = Path('/tmp')\nprint(p.exists())\n\n# Using extended features (e.g., glob with pattern matching)\nfor f in p.glob('**/*.txt'):\n    print(f)","lang":"python","description":"Basic usage mimicking pathlib with extended features.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}