A collection of functions working with `pathlib.Path`
Project description
pathext
pathext is a collection of functions working with pathlib.Path. They're often wrappers for standard library functionality with some extensions.
Executable lookup
pathext.which()
Wrapper for shutil.which() which returns the result as an absolute Path (or None if it fails to find the executable). It also has a couple extra features, see below.
Arguments (all of them except name are optional):
name: str- Executable name to look up.path: None | str | Sequence[Path]- Directory list to look upnamein. If set toNone, or set to a string, then it is passed toshutil.which()as-is. If set to a list, concatenates the list items usingos.pathsep, and passes the result toshutil.which(). Defaults toNone. Seeshutil.which()'s documentation on exact behaviour of this argument.cwd: Optional[Path]- If specified, then changes the current working directory tocwdfor the duration of theshutil.which()call. Note that since it is changing global state (the current working directory), it is inherently not thread-safe.
pathext.checked_which()
Same as pathext.which(), except it raises ValueError instead of returning None if it cannot find the executable.
Manipulating PATH strings
pathext.split_path_list()
Split PATH string based on os.pathsep and convert each component to pathlib.Path.
Empty components will be removed, i.e. leading, trailing or duplicated separators will not cause issues.
In contrast to str.split(), if the string is empty, the function will return an empty list.
pathext.join_path_list()
Create PATH string (os.pathsep-separated string) from list of paths. The list is allowed to contain Path objects, strings and even None. Empty strings and Nones will be removed before joining the list.
pathext.deduplicate_path_list()
Remove duplicates from path list, keeping only the first occurence. The list is allowed to contain Path objects, strings and even None. Empty strings and Nones will be removed before deduplication, and the rest is converted to Path.
Generic utilities
pathext.to_path()
Simple function that converts a str to a Path (just like Path's constructor), but also handles None by returning None. It can be used to convert the return value of functions that return str | None to Path | None.
pathext.temporary_directory()
Context manager similar to tempfile.TemporaryDirectory except it returns the created directory's name as an absolute pathlib.Path instead of str.
Supports all arguments of tempfile.TemporaryDirectory, including delete introduced in Python 3.12. If delete is specified on Python 3.11 or older, ValueError is raised.
Note that the returned path is always absolute, even if the dir parameter is relative. This is consistent with how tempfile.TemporaryDirectory works starting with Python 3.12.
pathext.chdir_context()
Non parallel-safe context manager to change the current working directory. If path is None, it does nothing. If path is not None, it changes the current working directory upon entering and restores the old one on exit.
Unlike contextlib.chdir(), this context manager is NOT reentrant or reusable.
See contextlib.chdir()'s documentation on notes about threaded and async contexts.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pathext-1.5.tar.gz.
File metadata
- Download URL: pathext-1.5.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbfd6f697a4874be7ea37109dbf60f108d451b44bb3df290f1560c75fa16bb87
|
|
| MD5 |
ea9a16a16f05dac4ce7bfa852a84449f
|
|
| BLAKE2b-256 |
09b3cd7d7282c1640300630e963b84b6e202862206f5ac24959015d83372e16c
|
File details
Details for the file pathext-1.5-py3-none-any.whl.
File metadata
- Download URL: pathext-1.5-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3aedc261736dc714881676847dcc20ce2246b09d331ec09276b478477a469530
|
|
| MD5 |
535b21910f43509ec586dd3e11e3e893
|
|
| BLAKE2b-256 |
d0d0aab254e2ba1e2a390261ef746c4129ef81b2d13289850380c5273026915d
|