pybiolib 1.2.874__py3-none-any.whl → 1.2.876__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.
- biolib/_internal/push_application.py +1 -19
- {pybiolib-1.2.874.dist-info → pybiolib-1.2.876.dist-info}/METADATA +1 -1
- {pybiolib-1.2.874.dist-info → pybiolib-1.2.876.dist-info}/RECORD +6 -6
- {pybiolib-1.2.874.dist-info → pybiolib-1.2.876.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.874.dist-info → pybiolib-1.2.876.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.874.dist-info → pybiolib-1.2.876.dist-info}/entry_points.txt +0 -0
@@ -1,11 +1,9 @@
|
|
1
1
|
import os
|
2
2
|
import re
|
3
|
-
import sys
|
4
3
|
from pathlib import Path
|
5
4
|
|
6
5
|
import rich.progress
|
7
6
|
import yaml
|
8
|
-
from rich.console import Console
|
9
7
|
|
10
8
|
from biolib import api, utils
|
11
9
|
from biolib._internal.data_record.push_data import (
|
@@ -38,9 +36,7 @@ class DockerStatusUpdate(TypedDict, total=False):
|
|
38
36
|
|
39
37
|
|
40
38
|
def process_docker_status_updates(status_updates: Iterable[DockerStatusUpdate], action: str) -> None:
|
41
|
-
|
42
|
-
|
43
|
-
with rich.progress.Progress(console=console, refresh_per_second=20, transient=False) as progress:
|
39
|
+
with rich.progress.Progress() as progress:
|
44
40
|
layer_id_to_task_id = {}
|
45
41
|
overall_task_id = progress.add_task(description=f'[bold blue]{action} Docker image', total=None)
|
46
42
|
|
@@ -58,16 +54,12 @@ def process_docker_status_updates(status_updates: Iterable[DockerStatusUpdate],
|
|
58
54
|
completed=progress_detail['current'],
|
59
55
|
total=progress_detail['total'],
|
60
56
|
)
|
61
|
-
progress.refresh()
|
62
|
-
sys.stdout.flush()
|
63
57
|
elif update['status'] == 'Layer already exists':
|
64
58
|
progress.update(
|
65
59
|
completed=100,
|
66
60
|
task_id=layer_id_to_task_id[layer_id],
|
67
61
|
total=100,
|
68
62
|
)
|
69
|
-
progress.refresh()
|
70
|
-
sys.stdout.flush()
|
71
63
|
elif 'status' in update and 'id' in update:
|
72
64
|
layer_id = update['id']
|
73
65
|
status = update['status']
|
@@ -79,14 +71,10 @@ def process_docker_status_updates(status_updates: Iterable[DockerStatusUpdate],
|
|
79
71
|
progress.update(
|
80
72
|
task_id=layer_id_to_task_id[layer_id], description=f'[yellow]{status} layer {layer_id}'
|
81
73
|
)
|
82
|
-
progress.refresh()
|
83
|
-
sys.stdout.flush()
|
84
74
|
elif status in ['Pushing', 'Uploading']:
|
85
75
|
progress.update(
|
86
76
|
task_id=layer_id_to_task_id[layer_id], description=f'[cyan]{status} layer {layer_id}'
|
87
77
|
)
|
88
|
-
progress.refresh()
|
89
|
-
sys.stdout.flush()
|
90
78
|
elif status in ['Pushed', 'Uploaded']:
|
91
79
|
progress.update(
|
92
80
|
task_id=layer_id_to_task_id[layer_id],
|
@@ -94,8 +82,6 @@ def process_docker_status_updates(status_updates: Iterable[DockerStatusUpdate],
|
|
94
82
|
completed=100,
|
95
83
|
total=100,
|
96
84
|
)
|
97
|
-
progress.refresh()
|
98
|
-
sys.stdout.flush()
|
99
85
|
elif status == 'Layer already exists':
|
100
86
|
progress.update(
|
101
87
|
task_id=layer_id_to_task_id[layer_id],
|
@@ -103,14 +89,10 @@ def process_docker_status_updates(status_updates: Iterable[DockerStatusUpdate],
|
|
103
89
|
completed=100,
|
104
90
|
total=100,
|
105
91
|
)
|
106
|
-
progress.refresh()
|
107
|
-
sys.stdout.flush()
|
108
92
|
elif 'status' in update and update['status']:
|
109
93
|
status = update['status']
|
110
94
|
if status not in ['Preparing', 'Pushing', 'Pushed', 'Waiting', 'Layer already exists']:
|
111
95
|
progress.update(task_id=overall_task_id, description=f'[bold blue]{action} Docker image - {status}')
|
112
|
-
progress.refresh()
|
113
|
-
sys.stdout.flush()
|
114
96
|
elif 'status' not in update and 'progressDetail' not in update:
|
115
97
|
print(update)
|
116
98
|
|
@@ -21,7 +21,7 @@ biolib/_internal/llm_instructions/.github/instructions/style-react-ts.instructio
|
|
21
21
|
biolib/_internal/llm_instructions/.github/prompts/biolib_app_inputs.prompt.md,sha256=SMzXZImdID0yKjhE1fG54VrHdD8IVuwRxRKsMF-KjWs,697
|
22
22
|
biolib/_internal/llm_instructions/.github/prompts/biolib_run_apps.prompt.md,sha256=-t1bmGr3zEFa6lKHaLcI98yq4Sg1TCMW8xbelNSHaOA,696
|
23
23
|
biolib/_internal/llm_instructions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
biolib/_internal/push_application.py,sha256=
|
24
|
+
biolib/_internal/push_application.py,sha256=snnd3aCPJeByEQTCajDi7Op5TH9-BXjJS9QCS8e6cjY,14347
|
25
25
|
biolib/_internal/runtime.py,sha256=BiHl4klUHr36MCpqKaUso4idHeBZfPAahLYRQrabFqA,486
|
26
26
|
biolib/_internal/templates/__init__.py,sha256=NVbhLUMC8HITzkLvP88Qu7FHaL-SvQord-DX3gh1Ykk,24
|
27
27
|
biolib/_internal/templates/init_template/.biolib/config.yml,sha256=y4ndTgbFvUE1UiGcIOqogT2Wm8jahGffeyU5rlCEltQ,427
|
@@ -140,8 +140,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
140
140
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
141
141
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
142
142
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
143
|
-
pybiolib-1.2.
|
144
|
-
pybiolib-1.2.
|
145
|
-
pybiolib-1.2.
|
146
|
-
pybiolib-1.2.
|
147
|
-
pybiolib-1.2.
|
143
|
+
pybiolib-1.2.876.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
144
|
+
pybiolib-1.2.876.dist-info/METADATA,sha256=Vcom4VROgeB12DAZP7lZnWrX7hZ0wipD3drOcAn8RGs,1570
|
145
|
+
pybiolib-1.2.876.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
146
|
+
pybiolib-1.2.876.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
147
|
+
pybiolib-1.2.876.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|