kleinkram 0.44.0.dev20250408123038__py3-none-any.whl → 0.44.0.dev20250409080103__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.
Potentially problematic release.
This version of kleinkram might be problematic. Click here for more details.
- kleinkram/api/file_transfer.py +28 -12
- kleinkram/cli/_download.py +2 -1
- {kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/METADATA +1 -1
- {kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/RECORD +7 -7
- {kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/WHEEL +0 -0
- {kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/entry_points.txt +0 -0
- {kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/top_level.txt +0 -0
kleinkram/api/file_transfer.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import signal
|
|
4
3
|
import logging
|
|
5
4
|
import sys
|
|
6
5
|
from concurrent.futures import Future
|
|
@@ -18,6 +17,9 @@ from uuid import UUID
|
|
|
18
17
|
import boto3.s3.transfer
|
|
19
18
|
import botocore.config
|
|
20
19
|
import httpx
|
|
20
|
+
from rich.console import Console
|
|
21
|
+
from tqdm import tqdm
|
|
22
|
+
|
|
21
23
|
from kleinkram.api.client import AuthenticatedClient
|
|
22
24
|
from kleinkram.config import get_config
|
|
23
25
|
from kleinkram.errors import AccessDenied
|
|
@@ -28,8 +30,6 @@ from kleinkram.utils import format_bytes
|
|
|
28
30
|
from kleinkram.utils import format_error
|
|
29
31
|
from kleinkram.utils import format_traceback
|
|
30
32
|
from kleinkram.utils import styled_string
|
|
31
|
-
from rich.console import Console
|
|
32
|
-
from tqdm import tqdm
|
|
33
33
|
|
|
34
34
|
logger = logging.getLogger(__name__)
|
|
35
35
|
|
|
@@ -267,7 +267,7 @@ def _url_download(
|
|
|
267
267
|
if path.exists() and not overwrite:
|
|
268
268
|
raise FileExistsError(f"file already exists: {path}")
|
|
269
269
|
|
|
270
|
-
with httpx.stream("GET", url) as response:
|
|
270
|
+
with httpx.stream("GET", url, timeout=S3_READ_TIMEOUT) as response:
|
|
271
271
|
response.raise_for_status()
|
|
272
272
|
with open(path, "wb") as f:
|
|
273
273
|
with tqdm(
|
|
@@ -289,6 +289,7 @@ class DownloadState(Enum):
|
|
|
289
289
|
DOWNLOADED_INVALID_HASH = 3
|
|
290
290
|
SKIPPED_INVALID_HASH = 4
|
|
291
291
|
SKIPPED_INVALID_REMOTE_STATE = 5
|
|
292
|
+
SKIPPED_FILE_SIZE_MISMATCH = 6
|
|
292
293
|
|
|
293
294
|
|
|
294
295
|
def download_file(
|
|
@@ -307,17 +308,29 @@ def download_file(
|
|
|
307
308
|
return DownloadState.SKIPPED_INVALID_REMOTE_STATE, 0
|
|
308
309
|
|
|
309
310
|
if path.exists():
|
|
310
|
-
local_hash = b64_md5(path)
|
|
311
|
-
if local_hash != file.hash and not overwrite and file.hash is not None:
|
|
312
|
-
return DownloadState.SKIPPED_INVALID_HASH, 0
|
|
313
311
|
|
|
314
|
-
|
|
315
|
-
|
|
312
|
+
# compare file size
|
|
313
|
+
if file.size == path.stat().st_size:
|
|
314
|
+
local_hash = b64_md5(path)
|
|
315
|
+
if local_hash != file.hash and not overwrite and file.hash is not None:
|
|
316
|
+
return DownloadState.SKIPPED_INVALID_HASH, 0
|
|
316
317
|
|
|
317
|
-
|
|
318
|
-
|
|
318
|
+
elif local_hash == file.hash:
|
|
319
|
+
return DownloadState.SKIPPED_OK, 0
|
|
320
|
+
|
|
321
|
+
elif verbose:
|
|
322
|
+
tqdm.write(
|
|
323
|
+
styled_string(f"overwriting {path}, hash missmatch", style="yellow")
|
|
324
|
+
)
|
|
325
|
+
|
|
326
|
+
elif not overwrite and file.size is not None:
|
|
327
|
+
return DownloadState.SKIPPED_FILE_SIZE_MISMATCH, 0
|
|
328
|
+
|
|
329
|
+
elif verbose:
|
|
319
330
|
tqdm.write(
|
|
320
|
-
styled_string(
|
|
331
|
+
styled_string(
|
|
332
|
+
f"overwriting {path}, file size missmatch", style="yellow"
|
|
333
|
+
)
|
|
321
334
|
)
|
|
322
335
|
|
|
323
336
|
# request a download url
|
|
@@ -400,6 +413,7 @@ DOWNLOAD_STATE_COLOR = {
|
|
|
400
413
|
DownloadState.SKIPPED_OK: "green",
|
|
401
414
|
DownloadState.DOWNLOADED_INVALID_HASH: "red",
|
|
402
415
|
DownloadState.SKIPPED_INVALID_HASH: "yellow",
|
|
416
|
+
DownloadState.SKIPPED_FILE_SIZE_MISMATCH: "yellow",
|
|
403
417
|
DownloadState.SKIPPED_INVALID_REMOTE_STATE: "purple",
|
|
404
418
|
}
|
|
405
419
|
|
|
@@ -432,6 +446,8 @@ def _download_handler(
|
|
|
432
446
|
msg = f"skipped {path} already downloaded (hash ok)"
|
|
433
447
|
elif state == DownloadState.SKIPPED_INVALID_HASH:
|
|
434
448
|
msg = f"skipped {path}, exists with hash mismatch (use --overwrite?)"
|
|
449
|
+
elif state == DownloadState.SKIPPED_FILE_SIZE_MISMATCH:
|
|
450
|
+
msg = f"skipped {path}, exists with file size mismatch (use --overwrite?)"
|
|
435
451
|
elif state == DownloadState.SKIPPED_INVALID_REMOTE_STATE:
|
|
436
452
|
msg = f"skipped {path}, remote file has invalid state ({file.state.value})"
|
|
437
453
|
else:
|
kleinkram/cli/_download.py
CHANGED
|
@@ -43,7 +43,8 @@ def download(
|
|
|
43
43
|
False, help="save files in nested directories, project-name/mission-name"
|
|
44
44
|
),
|
|
45
45
|
overwrite: bool = typer.Option(
|
|
46
|
-
False,
|
|
46
|
+
False,
|
|
47
|
+
help="overwrite files if they already exist and don't match the file size or file hash",
|
|
47
48
|
),
|
|
48
49
|
) -> None:
|
|
49
50
|
# create destionation directory
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kleinkram
|
|
3
|
-
Version: 0.44.0.
|
|
3
|
+
Version: 0.44.0.dev20250409080103
|
|
4
4
|
Summary: give me your bags
|
|
5
5
|
Author: Cyrill Püntener, Dominique Garmier, Johann Schwabe
|
|
6
6
|
Author-email: pucyril@ethz.ch, dgarmier@ethz.ch, jschwab@ethz.ch
|
{kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/RECORD
RENAMED
|
@@ -15,12 +15,12 @@ kleinkram/wrappers.py,sha256=ZScoEov5Q6D2rvaJJ8E-4f58P_NGWrGc9mRPYxSqOC0,13127
|
|
|
15
15
|
kleinkram/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
kleinkram/api/client.py,sha256=VwuT97_WdbDpcVGwMXB0fRnUoQnUSf7BOP5eXUFokfI,5932
|
|
17
17
|
kleinkram/api/deser.py,sha256=xRpYUFKZ0Luoo7XyAtYblJvprmpjNSZOiFVnFKmOzcM,4819
|
|
18
|
-
kleinkram/api/file_transfer.py,sha256=
|
|
18
|
+
kleinkram/api/file_transfer.py,sha256=GYO5CaTQjpSjNg3Nc28kavqfdEy2pgPRkPsnPDSFUPw,18093
|
|
19
19
|
kleinkram/api/pagination.py,sha256=P_zPsBKlMWkmAv-YfUNHaGW-XLB_4U8BDMrKyiDFIXk,1370
|
|
20
20
|
kleinkram/api/query.py,sha256=9Exi4hJR7Ml38_zjAcOvSEoIAxZLlpM6QwwzO9fs5Gk,3293
|
|
21
21
|
kleinkram/api/routes.py,sha256=x0IfzQO5RAC3rohDSpdUNlVOWl221gh4e0fbMKfGrQA,12251
|
|
22
22
|
kleinkram/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
kleinkram/cli/_download.py,sha256=
|
|
23
|
+
kleinkram/cli/_download.py,sha256=e0fDyp_CFOdbKIUGKmtITvAVINa6STYJk5w5QlElXSs,2394
|
|
24
24
|
kleinkram/cli/_endpoint.py,sha256=oY0p4bnuHLEDJCXtTmir4AHswcKAygZ8I4IWC3RFcKc,1796
|
|
25
25
|
kleinkram/cli/_file.py,sha256=Q2fLDdUyfHFmdGC6wIxMqgEl0F76qszhzWJrRV5rTBM,2973
|
|
26
26
|
kleinkram/cli/_list.py,sha256=5gI3aIUeKC0_eWPQqdFXSBBFvpkTTJSm31TamHa197c,3090
|
|
@@ -43,8 +43,8 @@ tests/test_printing.py,sha256=Jz1AjqmqBRjp1JLm6H1oVJyvGaMPlahVXdKnd7UDQFc,2231
|
|
|
43
43
|
tests/test_query.py,sha256=fExmCKXLA7-9j2S2sF_sbvRX_2s6Cp3a7OTcqE25q9g,3864
|
|
44
44
|
tests/test_utils.py,sha256=eUBYrn3xrcgcaxm1X4fqZaX4tRvkbI6rh6BUbNbu9T0,4784
|
|
45
45
|
tests/test_wrappers.py,sha256=TbcTyO2L7fslbzgfDdcVZkencxNQ8cGPZm_iB6c9d6Q,2673
|
|
46
|
-
kleinkram-0.44.0.
|
|
47
|
-
kleinkram-0.44.0.
|
|
48
|
-
kleinkram-0.44.0.
|
|
49
|
-
kleinkram-0.44.0.
|
|
50
|
-
kleinkram-0.44.0.
|
|
46
|
+
kleinkram-0.44.0.dev20250409080103.dist-info/METADATA,sha256=slvYitYbGRQnyaZ7BweL9HMUpcMWQUbWgcUdNYeqIJU,2825
|
|
47
|
+
kleinkram-0.44.0.dev20250409080103.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
48
|
+
kleinkram-0.44.0.dev20250409080103.dist-info/entry_points.txt,sha256=SaB2l5aqhSr8gmaMw2kvQU90a8Bnl7PedU8cWYxkfYo,46
|
|
49
|
+
kleinkram-0.44.0.dev20250409080103.dist-info/top_level.txt,sha256=N3-sJagEHu1Tk1X6Dx1X1q0pLDNbDZpLzRxVftvepds,24
|
|
50
|
+
kleinkram-0.44.0.dev20250409080103.dist-info/RECORD,,
|
{kleinkram-0.44.0.dev20250408123038.dist-info → kleinkram-0.44.0.dev20250409080103.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|