Lock util¶
Utils for handling: .in, .shared.in, .unlock, .shared.unlock, .lock, and .shared.lock
- drain_swamp.lock_util.ENDING: tuple[str, str, str] = (".in", ".unlock", ".lock")¶
End suffix indicating one of the requirement lock file types
- drain_swamp.lock_util.__all__: tuple[str, str] = ("is_shared", "replace_suffixes_last")¶
Module exports
Determine if file name indicates requirements shared by more than one venv
- Parameters:
file_name¶ (str) – File name w/ or w/o (.in, .lock, or .unlock) ending
- Returns:
True if file suffix indicates shared by more than one venv otherwise False
- Return type:
- Raises:
ValueError
– None, not str, or just whitespace or empty string
- drain_swamp.lock_util.replace_suffixes_last(abspath_f: Any, suffix_last: str) Path ¶
Replace the last suffix of an absolute Path. Preserves
.shared
suffix- Parameters:
- Returns:
Absolute path with last suffix replaced
- Return type:
- Raises:
TypeError
– PurePath unsupported typeTypeError
– Not a Path unsupported typeValueError
– Not an absolute Path