dycw-utilities 0.138.5__py3-none-any.whl → 0.138.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dycw_utilities-0.138.5.dist-info → dycw_utilities-0.138.6.dist-info}/METADATA +1 -1
- {dycw_utilities-0.138.5.dist-info → dycw_utilities-0.138.6.dist-info}/RECORD +6 -6
- utilities/__init__.py +1 -1
- utilities/pathlib.py +82 -1
- {dycw_utilities-0.138.5.dist-info → dycw_utilities-0.138.6.dist-info}/WHEEL +0 -0
- {dycw_utilities-0.138.5.dist-info → dycw_utilities-0.138.6.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
utilities/__init__.py,sha256=
|
1
|
+
utilities/__init__.py,sha256=V7k67oxstsllNw_dt-tpMRsylqRrsJMOdAMNNakV9po,60
|
2
2
|
utilities/aiolimiter.py,sha256=mD0wEiqMgwpty4XTbawFpnkkmJS6R4JRsVXFUaoitSU,628
|
3
3
|
utilities/altair.py,sha256=HeZBVUocjkrTNwwKrClppsIqgNFF-ykv05HfZSoHYno,9104
|
4
4
|
utilities/asyncio.py,sha256=dcGeKQzjLBXxKzZkVIk5oZsFXEcynVbRB9iNB5XEDZk,38526
|
@@ -42,7 +42,7 @@ utilities/optuna.py,sha256=C-fhWYiXHVPo1l8QctYkFJ4DyhbSrGorzP1dJb_qvd8,1933
|
|
42
42
|
utilities/orjson.py,sha256=WWV2QukCIuwT8OAOtmKhLhxezXPVbeA_fQCucmGmbRA,37106
|
43
43
|
utilities/os.py,sha256=yMNAKMyY8oFgQ1yN3TQYnwa5-A_FXz4tCDbhIctQHSs,3736
|
44
44
|
utilities/parse.py,sha256=JcJn5yXKhIWXBCwgBdPsyu7Hvcuw6kyEdqvaebCaI9k,17951
|
45
|
-
utilities/pathlib.py,sha256=
|
45
|
+
utilities/pathlib.py,sha256=1QTfoMze_RYX0wrbm9F9FSaZNfO8n1bSFD60-E1Vmc0,6912
|
46
46
|
utilities/period.py,sha256=6jEff_qAiE7xdFaQ1DnKgNf10D2wHhzt7hQXCBoKlgc,6842
|
47
47
|
utilities/pickle.py,sha256=MBT2xZCsv0pH868IXLGKnlcqNx2IRVKYNpRcqiQQqxw,653
|
48
48
|
utilities/platform.py,sha256=5uCKRf_ij7ukJDcbnNfhY2ay9fbrpiNLRO1t2QvcwqQ,2825
|
@@ -87,7 +87,7 @@ utilities/warnings.py,sha256=un1LvHv70PU-LLv8RxPVmugTzDJkkGXRMZTE2-fTQHw,1771
|
|
87
87
|
utilities/whenever.py,sha256=R5d9UCNCdAOyjwLUmfH2Vn8Ykee8OHQi2skRTFfbZMM,20492
|
88
88
|
utilities/zipfile.py,sha256=24lQc9ATcJxHXBPc_tBDiJk48pWyRrlxO2fIsFxU0A8,699
|
89
89
|
utilities/zoneinfo.py,sha256=oEH-nL3t4h9uawyZqWDtNtDAl6M-CLpLYGI_nI6DulM,1971
|
90
|
-
dycw_utilities-0.138.
|
91
|
-
dycw_utilities-0.138.
|
92
|
-
dycw_utilities-0.138.
|
93
|
-
dycw_utilities-0.138.
|
90
|
+
dycw_utilities-0.138.6.dist-info/METADATA,sha256=EMQ0EEZfe_ywhxuelhNvMoXkahxUom89cJL4Hh40abU,1638
|
91
|
+
dycw_utilities-0.138.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
92
|
+
dycw_utilities-0.138.6.dist-info/licenses/LICENSE,sha256=gppZp16M6nSVpBbUBrNL6JuYfvKwZiKgV7XoKKsHzqo,1066
|
93
|
+
dycw_utilities-0.138.6.dist-info/RECORD,,
|
utilities/__init__.py
CHANGED
utilities/pathlib.py
CHANGED
@@ -9,7 +9,7 @@ from os.path import expandvars
|
|
9
9
|
from pathlib import Path
|
10
10
|
from re import IGNORECASE, search
|
11
11
|
from subprocess import PIPE, CalledProcessError, check_output
|
12
|
-
from typing import TYPE_CHECKING, assert_never, overload, override
|
12
|
+
from typing import TYPE_CHECKING, Literal, assert_never, overload, override
|
13
13
|
|
14
14
|
from utilities.errors import ImpossibleCaseError
|
15
15
|
from utilities.sentinel import Sentinel, sentinel
|
@@ -132,6 +132,85 @@ class GetRootError(Exception):
|
|
132
132
|
##
|
133
133
|
|
134
134
|
|
135
|
+
type _GetTailDisambiguate = Literal["raise", "earlier", "later"]
|
136
|
+
|
137
|
+
|
138
|
+
def get_tail(
|
139
|
+
path: PathLike, root: PathLike, /, *, disambiguate: _GetTailDisambiguate = "raise"
|
140
|
+
) -> Path:
|
141
|
+
"""Get the tail of a path following a root match."""
|
142
|
+
path_parts, root_parts = [Path(p).parts for p in [path, root]]
|
143
|
+
len_path, len_root = map(len, [path_parts, root_parts])
|
144
|
+
if len_root > len_path:
|
145
|
+
raise _GetTailLengthError(path=path, root=root, len_root=len_root)
|
146
|
+
candidates = {
|
147
|
+
i + len_root: path_parts[i : i + len_root]
|
148
|
+
for i in range(len_path + 1 - len_root)
|
149
|
+
}
|
150
|
+
matches = {k: v for k, v in candidates.items() if v == root_parts}
|
151
|
+
match len(matches), disambiguate:
|
152
|
+
case 0, _:
|
153
|
+
raise _GetTailEmptyError(path=path, root=root)
|
154
|
+
case 1, _:
|
155
|
+
return _get_tail_core(path, next(iter(matches)))
|
156
|
+
case _, "raise":
|
157
|
+
first, second, *_ = matches
|
158
|
+
raise _GetTailNonUniqueError(
|
159
|
+
path=path,
|
160
|
+
root=root,
|
161
|
+
first=_get_tail_core(path, first),
|
162
|
+
second=_get_tail_core(path, second),
|
163
|
+
)
|
164
|
+
case _, "earlier":
|
165
|
+
return _get_tail_core(path, next(iter(matches)))
|
166
|
+
case _, "later":
|
167
|
+
return _get_tail_core(path, next(iter(reversed(matches))))
|
168
|
+
case _ as never:
|
169
|
+
assert_never(never)
|
170
|
+
|
171
|
+
|
172
|
+
def _get_tail_core(path: PathLike, i: int, /) -> Path:
|
173
|
+
parts = Path(path).parts
|
174
|
+
return Path(*parts[i:])
|
175
|
+
|
176
|
+
|
177
|
+
@dataclass(kw_only=True, slots=True)
|
178
|
+
class GetTailError(Exception):
|
179
|
+
path: PathLike
|
180
|
+
root: PathLike
|
181
|
+
|
182
|
+
|
183
|
+
@dataclass(kw_only=True, slots=True)
|
184
|
+
class _GetTailLengthError(GetTailError):
|
185
|
+
len_root: int
|
186
|
+
|
187
|
+
@override
|
188
|
+
def __str__(self) -> str:
|
189
|
+
return f"Unable to get the tail of {str(self.path)!r} with root of length {self.len_root}"
|
190
|
+
|
191
|
+
|
192
|
+
@dataclass(kw_only=True, slots=True)
|
193
|
+
class _GetTailEmptyError(GetTailError):
|
194
|
+
@override
|
195
|
+
def __str__(self) -> str:
|
196
|
+
return (
|
197
|
+
f"Unable to get the tail of {str(self.path)!r} with root {str(self.root)!r}"
|
198
|
+
)
|
199
|
+
|
200
|
+
|
201
|
+
@dataclass(kw_only=True, slots=True)
|
202
|
+
class _GetTailNonUniqueError(GetTailError):
|
203
|
+
first: Path
|
204
|
+
second: Path
|
205
|
+
|
206
|
+
@override
|
207
|
+
def __str__(self) -> str:
|
208
|
+
return f"Path {str(self.path)!r} must contain exactly one tail with root {str(self.root)!r}; got {str(self.first)!r}, {str(self.second)!r} and perhaps more"
|
209
|
+
|
210
|
+
|
211
|
+
##
|
212
|
+
|
213
|
+
|
135
214
|
def is_sub_path(x: PathLike, y: PathLike, /, *, strict: bool = False) -> bool:
|
136
215
|
"""Check if a path is a sub path of another."""
|
137
216
|
x, y = [Path(i).resolve() for i in [x, y]]
|
@@ -162,9 +241,11 @@ def temp_cwd(path: PathLike, /) -> Iterator[None]:
|
|
162
241
|
|
163
242
|
__all__ = [
|
164
243
|
"PWD",
|
244
|
+
"GetTailError",
|
165
245
|
"ensure_suffix",
|
166
246
|
"expand_path",
|
167
247
|
"get_path",
|
248
|
+
"get_tail",
|
168
249
|
"is_sub_path",
|
169
250
|
"list_dir",
|
170
251
|
"temp_cwd",
|
File without changes
|
File without changes
|