dayhoff-tools 1.13.0__py3-none-any.whl → 1.13.1__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.
- dayhoff_tools/cli/engines_studios/engine-studio-cli.md +4 -4
- dayhoff_tools/cli/engines_studios/engine_commands.py +2 -2
- dayhoff_tools/cli/engines_studios/simulators/engine_list_simulator.py +4 -4
- dayhoff_tools/cli/engines_studios/simulators/studio_list_simulator.py +2 -2
- dayhoff_tools/cli/engines_studios/studio_commands.py +2 -2
- {dayhoff_tools-1.13.0.dist-info → dayhoff_tools-1.13.1.dist-info}/METADATA +1 -1
- {dayhoff_tools-1.13.0.dist-info → dayhoff_tools-1.13.1.dist-info}/RECORD +9 -9
- {dayhoff_tools-1.13.0.dist-info → dayhoff_tools-1.13.1.dist-info}/WHEEL +0 -0
- {dayhoff_tools-1.13.0.dist-info → dayhoff_tools-1.13.1.dist-info}/entry_points.txt +0 -0
|
@@ -323,13 +323,13 @@ dh engine2 list --env sand
|
|
|
323
323
|
```
|
|
324
324
|
Engines for AWS Account dev
|
|
325
325
|
|
|
326
|
-
|
|
326
|
+
╭──────────────┬─────────────┬─────────────┬─────────────┬─────────────────────╮
|
|
327
327
|
│ Name │ State │ User │ Type │ Instance ID │
|
|
328
328
|
├──────────────┼─────────────┼─────────────┼─────────────┼─────────────────────┤
|
|
329
329
|
│ alice-work │ running │ alice │ cpu │ i-0123456789abcdef0 │
|
|
330
330
|
│ bob-training │ running │ bob │ a10g │ i-0fedcba987654321 │
|
|
331
331
|
│ batch-worker │ stopped │ charlie │ cpumax │ i-0abc123def456789 │
|
|
332
|
-
|
|
332
|
+
╰──────────────┴─────────────┴─────────────┴─────────────┴─────────────────────╯
|
|
333
333
|
|
|
334
334
|
Total: 3 engine(s)
|
|
335
335
|
```
|
|
@@ -757,13 +757,13 @@ dh studio2 list
|
|
|
757
757
|
```
|
|
758
758
|
Studios for AWS Account dev
|
|
759
759
|
|
|
760
|
-
|
|
760
|
+
╭────────┬──────────────┬──────────────┬───────────┬───────────────────────────╮
|
|
761
761
|
│ User │ Status │ Attached To │ Size │ Studio ID │
|
|
762
762
|
├────────┼──────────────┼──────────────┼───────────┼───────────────────────────┤
|
|
763
763
|
│ alice │ attached │ alice-work │ 100GB │ vol-0123456789abcdef0 │
|
|
764
764
|
│ bob │ available │ - │ 200GB │ vol-0fedcba987654321 │
|
|
765
765
|
│ carol │ attaching │ carol-gpu │ 150GB │ vol-0abc123def456789 │
|
|
766
|
-
|
|
766
|
+
╰────────┴──────────────┴──────────────┴───────────┴───────────────────────────╯
|
|
767
767
|
|
|
768
768
|
Total: 3 studio(s)
|
|
769
769
|
```
|
|
@@ -601,7 +601,7 @@ def list_engines(env: Optional[str]):
|
|
|
601
601
|
total_width = name_width + state_width + user_width + type_width + id_width + 9 # +9 for separators and spaces
|
|
602
602
|
|
|
603
603
|
# Table top border
|
|
604
|
-
click.echo("
|
|
604
|
+
click.echo("╭" + "─" * (name_width + 1) + "┬" + "─" * (state_width + 1) + "┬" + "─" * (user_width + 1) + "┬" + "─" * (type_width + 1) + "┬" + "─" * (id_width + 1) + "╮")
|
|
605
605
|
|
|
606
606
|
# Table header
|
|
607
607
|
click.echo(
|
|
@@ -648,7 +648,7 @@ def list_engines(env: Optional[str]):
|
|
|
648
648
|
)
|
|
649
649
|
|
|
650
650
|
# Table bottom border
|
|
651
|
-
click.echo("
|
|
651
|
+
click.echo("╰" + "─" * (name_width + 1) + "┴" + "─" * (state_width + 1) + "┴" + "─" * (user_width + 1) + "┴" + "─" * (type_width + 1) + "┴" + "─" * (id_width + 1) + "╯")
|
|
652
652
|
|
|
653
653
|
click.echo(f"\nTotal: {len(engines)} engine(s)")
|
|
654
654
|
|
|
@@ -44,7 +44,7 @@ def format_list_output(engines: list[dict[str, Any]], env: str = "dev") -> None:
|
|
|
44
44
|
|
|
45
45
|
# Table top border
|
|
46
46
|
print(
|
|
47
|
-
"
|
|
47
|
+
"╭"
|
|
48
48
|
+ "─" * (name_width + 1)
|
|
49
49
|
+ "┬"
|
|
50
50
|
+ "─" * (state_width + 1)
|
|
@@ -54,7 +54,7 @@ def format_list_output(engines: list[dict[str, Any]], env: str = "dev") -> None:
|
|
|
54
54
|
+ "─" * (type_width + 1)
|
|
55
55
|
+ "┬"
|
|
56
56
|
+ "─" * (id_width + 1)
|
|
57
|
-
+ "
|
|
57
|
+
+ "╮"
|
|
58
58
|
)
|
|
59
59
|
|
|
60
60
|
# Table header
|
|
@@ -115,7 +115,7 @@ def format_list_output(engines: list[dict[str, Any]], env: str = "dev") -> None:
|
|
|
115
115
|
|
|
116
116
|
# Table bottom border
|
|
117
117
|
print(
|
|
118
|
-
"
|
|
118
|
+
"╰"
|
|
119
119
|
+ "─" * (name_width + 1)
|
|
120
120
|
+ "┴"
|
|
121
121
|
+ "─" * (state_width + 1)
|
|
@@ -125,7 +125,7 @@ def format_list_output(engines: list[dict[str, Any]], env: str = "dev") -> None:
|
|
|
125
125
|
+ "─" * (type_width + 1)
|
|
126
126
|
+ "┴"
|
|
127
127
|
+ "─" * (id_width + 1)
|
|
128
|
-
+ "
|
|
128
|
+
+ "╯"
|
|
129
129
|
)
|
|
130
130
|
|
|
131
131
|
print(f"\nTotal: {len(engines)} engine(s)")
|
|
@@ -49,7 +49,7 @@ def format_list_output(studios: list[dict[str, Any]], engines_map: dict[str, str
|
|
|
49
49
|
id_width = 25
|
|
50
50
|
|
|
51
51
|
# Table top border
|
|
52
|
-
print("
|
|
52
|
+
print("╭" + "─" * (user_width + 1) + "┬" + "─" * (status_width + 1) + "┬" + "─" * (attached_width + 1) + "┬" + "─" * (size_width + 1) + "┬" + "─" * (id_width + 1) + "╮")
|
|
53
53
|
|
|
54
54
|
# Table header
|
|
55
55
|
print(f"│ {'User':<{user_width}}│ {'Status':<{status_width}}│ {'Attached To':<{attached_width}}│ {'Size':<{size_width}}│ {'Studio ID':<{id_width}}│")
|
|
@@ -102,7 +102,7 @@ def format_list_output(studios: list[dict[str, Any]], engines_map: dict[str, str
|
|
|
102
102
|
print(f"│ {user_display}│ {status_display}│ {attached_display}│ {size:<{size_width}}│ {studio_id_display}│")
|
|
103
103
|
|
|
104
104
|
# Table bottom border
|
|
105
|
-
print("
|
|
105
|
+
print("╰" + "─" * (user_width + 1) + "┴" + "─" * (status_width + 1) + "┴" + "─" * (attached_width + 1) + "┴" + "─" * (size_width + 1) + "┴" + "─" * (id_width + 1) + "╯")
|
|
106
106
|
|
|
107
107
|
print(f"\nTotal: {len(studios)} studio(s)")
|
|
108
108
|
|
|
@@ -287,7 +287,7 @@ def list_studios(env: Optional[str]):
|
|
|
287
287
|
id_width = 25
|
|
288
288
|
|
|
289
289
|
# Table top border
|
|
290
|
-
click.echo("
|
|
290
|
+
click.echo("╭" + "─" * (user_width + 1) + "┬" + "─" * (status_width + 1) + "┬" + "─" * (attached_width + 1) + "┬" + "─" * (size_width + 1) + "┬" + "─" * (id_width + 1) + "╮")
|
|
291
291
|
|
|
292
292
|
# Table header - reordered to [User, Status, Attached To, Size, Studio ID]
|
|
293
293
|
click.echo(
|
|
@@ -344,7 +344,7 @@ def list_studios(env: Optional[str]):
|
|
|
344
344
|
)
|
|
345
345
|
|
|
346
346
|
# Table bottom border
|
|
347
|
-
click.echo("
|
|
347
|
+
click.echo("╰" + "─" * (user_width + 1) + "┴" + "─" * (status_width + 1) + "┴" + "─" * (attached_width + 1) + "┴" + "─" * (size_width + 1) + "┴" + "─" * (id_width + 1) + "╯")
|
|
348
348
|
|
|
349
349
|
click.echo(f"\nTotal: {len(studios)} studio(s)")
|
|
350
350
|
|
|
@@ -13,18 +13,18 @@ dayhoff_tools/cli/engine1/studio_commands.py,sha256=VwTQujz32-uMcYusDRE73SdzRpgv
|
|
|
13
13
|
dayhoff_tools/cli/engines_studios/__init__.py,sha256=E6aG0C6qjJnJuClemSKRFlYvLUL49MQZOvfqNQ7SDKs,159
|
|
14
14
|
dayhoff_tools/cli/engines_studios/api_client.py,sha256=9I55_Ns8VHxndGjvSt_c5ZohSqMOeywQlLjyuoDEqCQ,13039
|
|
15
15
|
dayhoff_tools/cli/engines_studios/auth.py,sha256=rwetV5hp4jSvK8FyvKgXCnezLOZx1aW8oiSDc6U83iE,5189
|
|
16
|
-
dayhoff_tools/cli/engines_studios/engine-studio-cli.md,sha256=
|
|
17
|
-
dayhoff_tools/cli/engines_studios/engine_commands.py,sha256=
|
|
16
|
+
dayhoff_tools/cli/engines_studios/engine-studio-cli.md,sha256=D0e_3P9gFLt86ihHg9s0ukXWqpltaVil897yfJyTUSc,29944
|
|
17
|
+
dayhoff_tools/cli/engines_studios/engine_commands.py,sha256=8pnCb4dicSqfoE2XDM4AEoA2DLyCOEFWL4nL-TzW8vw,34561
|
|
18
18
|
dayhoff_tools/cli/engines_studios/progress.py,sha256=SMahdG2YmO5bEPSONrfAXVTdS6m_69Ep02t3hc2DdKQ,9264
|
|
19
19
|
dayhoff_tools/cli/engines_studios/simulators/cli-simulators.md,sha256=FZJl6nehdr2Duht2cx3yijcak0yKyOaHTrTzvFTAfZs,4976
|
|
20
20
|
dayhoff_tools/cli/engines_studios/simulators/demo.sh,sha256=8tYABSCxLNXqGs-4r071V9mpKNZ5DTQ34WZ-v3d5s94,5364
|
|
21
|
-
dayhoff_tools/cli/engines_studios/simulators/engine_list_simulator.py,sha256=
|
|
21
|
+
dayhoff_tools/cli/engines_studios/simulators/engine_list_simulator.py,sha256=ruS4U1t-Eqoffd9cglTe3XRp9ICLAmBCwBfF0qQLxhE,9533
|
|
22
22
|
dayhoff_tools/cli/engines_studios/simulators/engine_status_simulator.py,sha256=KUm3gA2MiRgGrQV7KURhb5zabM18-30z_ugRjiq5iso,13024
|
|
23
23
|
dayhoff_tools/cli/engines_studios/simulators/idle_status_simulator.py,sha256=F_MfEXdPKNVDCKgJV72QyU2oMG8hLt-Bwic4yFadRXE,17570
|
|
24
24
|
dayhoff_tools/cli/engines_studios/simulators/simulator_utils.py,sha256=HA08pIMJWV3OFrWj3Ca8GldvgJZfFoTOloyLK0UWMgA,6729
|
|
25
|
-
dayhoff_tools/cli/engines_studios/simulators/studio_list_simulator.py,sha256=
|
|
25
|
+
dayhoff_tools/cli/engines_studios/simulators/studio_list_simulator.py,sha256=ZGgubT1BRa52PkwzX4yVzyHh6EVOxQCuQMs2Lz_yT-Q,11205
|
|
26
26
|
dayhoff_tools/cli/engines_studios/simulators/studio_status_simulator.py,sha256=6WvpnRawJVaQf_H81zuR1_66igRRVxPxjAt8e69xjp4,5394
|
|
27
|
-
dayhoff_tools/cli/engines_studios/studio_commands.py,sha256=
|
|
27
|
+
dayhoff_tools/cli/engines_studios/studio_commands.py,sha256=rhtxZNFMC29rl9omKnZzyySAh9k3O9uZGnLIuc8Dci4,24275
|
|
28
28
|
dayhoff_tools/cli/main.py,sha256=Nz_jtbppmvWKHZydQ0nkt_eejccJE90ces8xCGrerdY,7086
|
|
29
29
|
dayhoff_tools/cli/swarm_commands.py,sha256=5EyKj8yietvT5lfoz8Zx0iQvVaNgc3SJX1z2zQR6o6M,5614
|
|
30
30
|
dayhoff_tools/cli/utility_commands.py,sha256=e2P4dCCtoqMUGNyb0lFBZ6GZpl5Zslm1qqE5qIvsy38,50765
|
|
@@ -48,7 +48,7 @@ dayhoff_tools/intake/uniprot.py,sha256=BZYJQF63OtPcBBnQ7_P9gulxzJtqyorgyuDiPeOJq
|
|
|
48
48
|
dayhoff_tools/logs.py,sha256=DKdeP0k0kliRcilwvX0mUB2eipO5BdWUeHwh-VnsICs,838
|
|
49
49
|
dayhoff_tools/sqlite.py,sha256=jV55ikF8VpTfeQqqlHSbY8OgfyfHj8zgHNpZjBLos_E,18672
|
|
50
50
|
dayhoff_tools/warehouse.py,sha256=UETBtZD3r7WgvURqfGbyHlT7cxoiVq8isjzMuerKw8I,24475
|
|
51
|
-
dayhoff_tools-1.13.
|
|
52
|
-
dayhoff_tools-1.13.
|
|
53
|
-
dayhoff_tools-1.13.
|
|
54
|
-
dayhoff_tools-1.13.
|
|
51
|
+
dayhoff_tools-1.13.1.dist-info/METADATA,sha256=4a0PkNGLQFHLDuHmw_HYwV6XQB0BUU5H5TY_ghqnSPA,2980
|
|
52
|
+
dayhoff_tools-1.13.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
53
|
+
dayhoff_tools-1.13.1.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
|
|
54
|
+
dayhoff_tools-1.13.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|