Safe path¶
Portions of a Path take into account platform must be dealt withpSafely deal with paths.
- drain_swamp._safe_path.__all__: tuple[str, str, str, str, str, str, str] = ("fix_relpath", "is_linux", "is_macos", "is_win", "replace_suffixes", "resolve_path", "resolve_joinpath")¶
Module exports
- drain_swamp._safe_path.fix_relpath(relpath_b)¶
Paths are normally expressed as posix paths. On Windows, relpath must be converted.
src/complete_awesome_perfect/_version.py
becomes
src\complete_awesome_perfect\_version.py
- Parameters:
relpath_b¶ (pathlib.PurePath | pathlib.Path | str) – A posix style path. Requiring fixing before joinpath
- Returns:
Platform specific pure path
- Return type:
- drain_swamp._safe_path.is_linux()¶
Check platform is Linux.
When messages are intended for Windows, but would like to see on Linux as well.
- Returns:
True if platform is Linux
- Return type:
- drain_swamp._safe_path.is_macos()¶
Check platform is MacOS
- Returns:
True if platform is MacOS
- Return type:
- drain_swamp._safe_path.is_win()¶
Check platform is Windows
- Returns:
True if platform is Windows
- Return type:
- drain_swamp._safe_path.replace_suffixes(abspath_a, suffixes)¶
Replace suffixes.
- Parameters:
abspath_a¶ (pathlib.PurePath | pathlib.Path)
- Returns:
abspath with replaced suffixes
- Return type:
- drain_swamp._safe_path.resolve_joinpath(abspath_a, relpath_b)¶
Windows safe joinpath. Fixes relative path
- Parameters:
abspath_a¶ (pathlib.PurePath | pathlib.Path) – A correct absolute path
relpath_b¶ (pathlib.PurePath | pathlib.Path | str) – A posix style path. Requiring fixing before joinpath
- Returns:
Platform specific pure path
- Return type:
pathlib.PureWindowsPath | pathlib.PurePosixPath | type[pathlib.Path]