nextmv 1.0.0.dev4__py3-none-any.whl → 1.0.0.dev5__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.
- nextmv/__about__.py +1 -1
- nextmv/__entrypoint__.py +1 -2
- nextmv/__init__.py +0 -4
- nextmv/_serialization.py +1 -1
- nextmv/cli/cloud/acceptance/create.py +12 -12
- nextmv/cli/cloud/app/push.py +294 -204
- nextmv/cli/confirm.py +5 -3
- nextmv/cloud/__init__.py +0 -38
- nextmv/cloud/acceptance_test.py +1 -65
- nextmv/cloud/account.py +1 -6
- nextmv/cloud/application/__init__.py +2 -0
- nextmv/cloud/application/_batch_scenario.py +2 -17
- nextmv/cloud/application/_instance.py +1 -1
- nextmv/cloud/application/_managed_input.py +1 -1
- nextmv/cloud/application/_run.py +8 -1
- nextmv/cloud/application/_shadow.py +1 -1
- nextmv/cloud/application/_switchback.py +1 -1
- nextmv/cloud/application/_version.py +1 -1
- nextmv/cloud/client.py +1 -1
- nextmv/default_app/main.py +4 -6
- nextmv/deprecated.py +5 -3
- nextmv/input.py +0 -52
- nextmv/local/executor.py +83 -3
- nextmv/local/geojson_handler.py +1 -1
- nextmv/local/runner.py +1 -1
- nextmv/manifest.py +11 -7
- nextmv/model.py +2 -2
- nextmv/options.py +10 -255
- nextmv/output.py +57 -83
- nextmv/run.py +13 -13
- nextmv/status.py +1 -51
- {nextmv-1.0.0.dev4.dist-info → nextmv-1.0.0.dev5.dist-info}/METADATA +1 -1
- {nextmv-1.0.0.dev4.dist-info → nextmv-1.0.0.dev5.dist-info}/RECORD +36 -36
- {nextmv-1.0.0.dev4.dist-info → nextmv-1.0.0.dev5.dist-info}/WHEEL +0 -0
- {nextmv-1.0.0.dev4.dist-info → nextmv-1.0.0.dev5.dist-info}/entry_points.txt +0 -0
- {nextmv-1.0.0.dev4.dist-info → nextmv-1.0.0.dev5.dist-info}/licenses/LICENSE +0 -0
nextmv/run.py
CHANGED
|
@@ -53,7 +53,7 @@ from nextmv._serialization import serialize_json
|
|
|
53
53
|
from nextmv.base_model import BaseModel
|
|
54
54
|
from nextmv.input import Input, InputFormat
|
|
55
55
|
from nextmv.output import Asset, Output, OutputFormat, Statistics
|
|
56
|
-
from nextmv.status import
|
|
56
|
+
from nextmv.status import StatusV2
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
def run_duration(start: datetime | float, end: datetime | float) -> int:
|
|
@@ -434,6 +434,9 @@ class RunInfoStatistics(BaseModel):
|
|
|
434
434
|
"""List of statistics indicators."""
|
|
435
435
|
|
|
436
436
|
|
|
437
|
+
RunInfoMetrics = RunInfoStatistics
|
|
438
|
+
|
|
439
|
+
|
|
437
440
|
class OptionsSummaryItem(BaseModel):
|
|
438
441
|
"""
|
|
439
442
|
Summary item for options used in a run.
|
|
@@ -520,8 +523,6 @@ class Run(BaseModel):
|
|
|
520
523
|
Class name for the execution of a job.
|
|
521
524
|
runtime : str
|
|
522
525
|
Runtime environment for the run.
|
|
523
|
-
status : Status
|
|
524
|
-
Deprecated, use status_v2 instead.
|
|
525
526
|
status_v2 : StatusV2
|
|
526
527
|
Status of the run.
|
|
527
528
|
queuing_priority : int, optional
|
|
@@ -531,7 +532,9 @@ class Run(BaseModel):
|
|
|
531
532
|
experiment_id : str, optional
|
|
532
533
|
ID of the experiment associated with the run. Defaults to None.
|
|
533
534
|
statistics : RunInfoStatistics, optional
|
|
534
|
-
Statistics of the run. Defaults to None.
|
|
535
|
+
Deprecated: Statistics of the run. Defaults to None.
|
|
536
|
+
metrics: RunInfoMetrics, optional
|
|
537
|
+
Metrics of the run. Defaults to None.
|
|
535
538
|
input_id : str, optional
|
|
536
539
|
ID of the input associated with the run. Defaults to None.
|
|
537
540
|
option_set : str, optional
|
|
@@ -598,8 +601,6 @@ class Run(BaseModel):
|
|
|
598
601
|
status_v2: StatusV2
|
|
599
602
|
"""Status of the run."""
|
|
600
603
|
|
|
601
|
-
status: Status | None = None
|
|
602
|
-
"""Deprecated, use status_v2 instead."""
|
|
603
604
|
queuing_priority: int | None = None
|
|
604
605
|
"""Priority of the run in the queue."""
|
|
605
606
|
queuing_disabled: bool | None = None
|
|
@@ -607,7 +608,9 @@ class Run(BaseModel):
|
|
|
607
608
|
experiment_id: str | None = None
|
|
608
609
|
"""ID of the experiment associated with the run."""
|
|
609
610
|
statistics: RunInfoStatistics | None = None
|
|
610
|
-
"""Statistics of the run."""
|
|
611
|
+
"""Deprecated: Statistics of the run."""
|
|
612
|
+
metrics: RunInfoMetrics | None = None
|
|
613
|
+
"""Metrics of the run."""
|
|
611
614
|
input_id: str | None = None
|
|
612
615
|
"""ID of the input associated with the run."""
|
|
613
616
|
option_set: str | None = None
|
|
@@ -656,8 +659,6 @@ class Metadata(BaseModel):
|
|
|
656
659
|
Size of the output in bytes.
|
|
657
660
|
format : Format
|
|
658
661
|
Format of the input and output of the run.
|
|
659
|
-
status : Status
|
|
660
|
-
Deprecated: use status_v2.
|
|
661
662
|
status_v2 : StatusV2
|
|
662
663
|
Status of the run.
|
|
663
664
|
"""
|
|
@@ -682,10 +683,10 @@ class Metadata(BaseModel):
|
|
|
682
683
|
"""Format of the input and output of the run."""
|
|
683
684
|
status_v2: StatusV2
|
|
684
685
|
"""Status of the run."""
|
|
685
|
-
status: Status | None = None
|
|
686
|
-
"""Deprecated: use status_v2."""
|
|
687
686
|
statistics: dict[str, Any] | None = None
|
|
688
|
-
"""User defined statistics of the run."""
|
|
687
|
+
"""Deprecated: User defined statistics of the run."""
|
|
688
|
+
metrics: dict[str, Any] | None = None
|
|
689
|
+
"""User defined metrics of the run."""
|
|
689
690
|
|
|
690
691
|
def run_is_finalized(self) -> bool:
|
|
691
692
|
"""
|
|
@@ -867,7 +868,6 @@ class RunInformation(BaseModel):
|
|
|
867
868
|
run_type=RunTypeConfiguration(), # Default empty configuration
|
|
868
869
|
execution_class="", # Not available in RunInformation
|
|
869
870
|
runtime="", # Not available in RunInformation
|
|
870
|
-
status=self.metadata.status,
|
|
871
871
|
status_v2=self.metadata.status_v2,
|
|
872
872
|
# Optional fields that are not available in RunInformation
|
|
873
873
|
queuing_priority=None,
|
nextmv/status.py
CHANGED
|
@@ -2,13 +2,10 @@
|
|
|
2
2
|
Provides status enums for Nextmv application runs.
|
|
3
3
|
|
|
4
4
|
This module defines enumerations for representing the status of a run in a
|
|
5
|
-
Nextmv application.
|
|
6
|
-
`StatusV2` enum.
|
|
5
|
+
Nextmv application.
|
|
7
6
|
|
|
8
7
|
Classes
|
|
9
8
|
-------
|
|
10
|
-
Status
|
|
11
|
-
Deprecated status of a run.
|
|
12
9
|
StatusV2
|
|
13
10
|
Represents the status of a run.
|
|
14
11
|
"""
|
|
@@ -16,53 +13,6 @@ StatusV2
|
|
|
16
13
|
from enum import Enum
|
|
17
14
|
|
|
18
15
|
|
|
19
|
-
class Status(str, Enum):
|
|
20
|
-
"""
|
|
21
|
-
!!! warning
|
|
22
|
-
`Status` is deprecated, use `StatusV2` instead.
|
|
23
|
-
|
|
24
|
-
Status of a run.
|
|
25
|
-
|
|
26
|
-
You can import the `Status` class directly from `nextmv`:
|
|
27
|
-
|
|
28
|
-
```python
|
|
29
|
-
from nextmv import Status
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
This enum represents the possible states of a run. It is deprecated and
|
|
33
|
-
`StatusV2` should be used for new implementations.
|
|
34
|
-
|
|
35
|
-
Attributes
|
|
36
|
-
----------
|
|
37
|
-
failed : str
|
|
38
|
-
Run failed.
|
|
39
|
-
running : str
|
|
40
|
-
Run is running.
|
|
41
|
-
succeeded : str
|
|
42
|
-
Run succeeded.
|
|
43
|
-
|
|
44
|
-
Examples
|
|
45
|
-
--------
|
|
46
|
-
>>> from nextmv.cloud import Status
|
|
47
|
-
>>> current_status = Status.running
|
|
48
|
-
>>> if current_status == Status.succeeded:
|
|
49
|
-
... print("Run completed successfully.")
|
|
50
|
-
... elif current_status == Status.failed:
|
|
51
|
-
... print("Run failed.")
|
|
52
|
-
... else:
|
|
53
|
-
... print(f"Run is currently {current_status.value}.")
|
|
54
|
-
Run is currently running.
|
|
55
|
-
|
|
56
|
-
"""
|
|
57
|
-
|
|
58
|
-
failed = "failed"
|
|
59
|
-
"""Run failed."""
|
|
60
|
-
running = "running"
|
|
61
|
-
"""Run is running."""
|
|
62
|
-
succeeded = "succeeded"
|
|
63
|
-
"""Run succeeded."""
|
|
64
|
-
|
|
65
|
-
|
|
66
16
|
class StatusV2(str, Enum):
|
|
67
17
|
"""
|
|
68
18
|
Status of a run.
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
nextmv/__about__.py,sha256=
|
|
2
|
-
nextmv/__entrypoint__.py,sha256=
|
|
3
|
-
nextmv/__init__.py,sha256=
|
|
4
|
-
nextmv/_serialization.py,sha256=
|
|
1
|
+
nextmv/__about__.py,sha256=0903U0SCzlrwBhBb3wq1hYJDq9gsu7JqYLWmE4tV4YE,28
|
|
2
|
+
nextmv/__entrypoint__.py,sha256=XMT-ds1f2Yc6KoI2C0YEH-rJj5gVLfJMqUdRfcA3_KQ,1070
|
|
3
|
+
nextmv/__init__.py,sha256=LwpGBSiV0UG13zKHO2N3Ikb7bCMV08Gfbl6Cp80b_2g,3813
|
|
4
|
+
nextmv/_serialization.py,sha256=fT-GXiy9cNo7D2KL1blZcsAaQHHgkEVTI_JvXIFlWZc,2833
|
|
5
5
|
nextmv/base_model.py,sha256=kPFqE-c_3LcEy8fY0qDrJk_gbPYgSKtetRMby71oxE8,2298
|
|
6
|
-
nextmv/deprecated.py,sha256=
|
|
7
|
-
nextmv/input.py,sha256=
|
|
6
|
+
nextmv/deprecated.py,sha256=U1YD-vie0dEVWFJgIwOuinxACHsyiEIQpfrt95ykhlg,1651
|
|
7
|
+
nextmv/input.py,sha256=iONLkXhcIXRCJVPNVkJdivh47A399VMepsSxNZByX2I,37649
|
|
8
8
|
nextmv/logger.py,sha256=kNIbu46MisrzYe4T0hNMpWfRTKKacDVvbtQcNys_c_E,2513
|
|
9
|
-
nextmv/manifest.py,sha256=
|
|
10
|
-
nextmv/model.py,sha256=
|
|
11
|
-
nextmv/options.py,sha256=
|
|
12
|
-
nextmv/output.py,sha256=
|
|
9
|
+
nextmv/manifest.py,sha256=VoZo7cGKGCdmcxDu5ECTZPY67J4LAUxBu6gmhgXVWRY,49216
|
|
10
|
+
nextmv/model.py,sha256=uthHjRCrC1b9OCoyQ_n-2_nfP1bFu-nMiUxYhmLf0SI,14989
|
|
11
|
+
nextmv/options.py,sha256=3BnnuAoiFD6qr0EMYv1VgAXarDjLb-t7OpC1IpsnS1M,29648
|
|
12
|
+
nextmv/output.py,sha256=hdpBqdGkglUbxVeJPldiiKaZ13YkPCHhSlOJHVB5CVI,55720
|
|
13
13
|
nextmv/polling.py,sha256=fwnAxmfpuBg4d6pi53TRTyyefdpf-cHLoTG6trAu-QA,11048
|
|
14
|
-
nextmv/run.py,sha256=
|
|
14
|
+
nextmv/run.py,sha256=o6_nSPOYwGCsCaqmYYAwrtCLE_aJuqy5NHFRfXYE7TI,54440
|
|
15
15
|
nextmv/safe.py,sha256=VAK4fGEurbLNji4Pg5Okga5XQSbI4aI9JJf95_68Z20,3867
|
|
16
|
-
nextmv/status.py,sha256=
|
|
16
|
+
nextmv/status.py,sha256=VqmOgxiEK89Y88ZUxZPfUXmY0HqvN28Lc1PDt0-9PLw,1600
|
|
17
17
|
nextmv/cli/CONTRIBUTING.md,sha256=xM_skfI1WPh2UtZ1axbB8AfOLJ3LZk8YhQpZY4qtSqw,21911
|
|
18
18
|
nextmv/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
nextmv/cli/confirm.py,sha256=
|
|
19
|
+
nextmv/cli/confirm.py,sha256=1CBzH_StMerGmeJYPjm5AizhkKDDtrA-2_S4x0MmBE4,809
|
|
20
20
|
nextmv/cli/main.py,sha256=Rbho_HCVxVYfGhx2cOl2d1lTn_OOHXjEfb2BjG3FCyw,5551
|
|
21
21
|
nextmv/cli/message.py,sha256=2qCU-JC8Pcd67FjZrovGgijuCd_tvx_ByEKGG67HQtU,3560
|
|
22
22
|
nextmv/cli/options.py,sha256=ymd6Y7_ZQkln35nHw3pLnFpqivgmJfuYAnyizmEuonc,6887
|
|
23
23
|
nextmv/cli/version.py,sha256=VRbfNpUvCFYPcphr-F3Ph4Z4UwtVis4keyVFHj1JISw,681
|
|
24
24
|
nextmv/cli/cloud/__init__.py,sha256=pywNNBy_poHaKn3_oIZRR9DDE8w3u65KvLpnX6S0BQI,1886
|
|
25
25
|
nextmv/cli/cloud/acceptance/__init__.py,sha256=v4U1m6z5zI8mQpmIE4kFeEYOsaDxnGRnRj2j5I6WueI,711
|
|
26
|
-
nextmv/cli/cloud/acceptance/create.py,sha256=
|
|
26
|
+
nextmv/cli/cloud/acceptance/create.py,sha256=lc1EYydsIuxr2qiQ_0W7po8DnPIfXSYR-5cm_6ddYGA,14604
|
|
27
27
|
nextmv/cli/cloud/acceptance/delete.py,sha256=julZ6Bs6YcsmyuE00yPjPScIRz4QteNt-GUR4J2Hp_I,2260
|
|
28
28
|
nextmv/cli/cloud/acceptance/get.py,sha256=pb3hRdIiynTi4K7xDNCMJE7bW46FE-X3EoAQU8kQJjE,3438
|
|
29
29
|
nextmv/cli/cloud/acceptance/list.py,sha256=9tTV4B2lgDqNxDnaNXkHxeh7jUQuAu9GQJsEKJ_NqIo,1881
|
|
@@ -39,7 +39,7 @@ nextmv/cli/cloud/app/delete.py,sha256=HLgDx4eMf_LYyGC8aQxuvNrhOfnWmDuutPjk4ywILa
|
|
|
39
39
|
nextmv/cli/cloud/app/exists.py,sha256=gd9pmR1Oq_cCjaTNB82PmJtDYowrb17vBfQYjoh6E9Q,1258
|
|
40
40
|
nextmv/cli/cloud/app/get.py,sha256=_v_7PrUniaaRvHclBA02V-UVcbVe1eFixGU6CeXA4m4,1765
|
|
41
41
|
nextmv/cli/cloud/app/list.py,sha256=AI1VNNueYfzwuSAFlf-vXbZEY-th5BrzXZgn-3uusFo,1653
|
|
42
|
-
nextmv/cli/cloud/app/push.py,sha256=
|
|
42
|
+
nextmv/cli/cloud/app/push.py,sha256=mbGThAgmfxO2JqfXq8HXAdRT81b55MBfCGaDtSJQsUM,15624
|
|
43
43
|
nextmv/cli/cloud/app/update.py,sha256=4Mp8Zf40K1hdHO3KT9Md3piBWqzracfpWtujJfbPocM,4070
|
|
44
44
|
nextmv/cli/cloud/batch/__init__.py,sha256=-_UjmvrQItACUY_BQ_cOffNJixNHAb4vH_pew25sJ3o,774
|
|
45
45
|
nextmv/cli/cloud/batch/create.py,sha256=T70sjvvTxXxRpC4COFZFU5ei6ylS5MWLg6VLP3SjIso,15465
|
|
@@ -131,12 +131,12 @@ nextmv/cli/configuration/config.py,sha256=t43ubCcbfbpfq9HvkVb2WQY9V47lrLEP0KvsWf
|
|
|
131
131
|
nextmv/cli/configuration/create.py,sha256=aDj6wFl6_RRMmvCLTNIeCcFotNOGoupso785M46nh2Y,2668
|
|
132
132
|
nextmv/cli/configuration/delete.py,sha256=3l1Mx8ATCwoiggbYBjG0ArmYSbS_GlJ5cCCymG2CEhU,1935
|
|
133
133
|
nextmv/cli/configuration/list.py,sha256=HIZvDJQW5B0-o_ZqQHuxRw7N_VmxqYM46fucKCvo1zw,2208
|
|
134
|
-
nextmv/cloud/__init__.py,sha256=
|
|
135
|
-
nextmv/cloud/acceptance_test.py,sha256
|
|
136
|
-
nextmv/cloud/account.py,sha256=
|
|
134
|
+
nextmv/cloud/__init__.py,sha256=watvsgucVgOCIlwrmnvIxW8lyUfEerhDzOn-Zp-dl1I,3954
|
|
135
|
+
nextmv/cloud/acceptance_test.py,sha256=H34lvccJzN1URpnhrHstcVxgvq1s2iCymiKIPBHcToY,25828
|
|
136
|
+
nextmv/cloud/account.py,sha256=X2xQjzhgEdKR0eypH8lWKUOwDISjJSd5SwOwEnpfTVk,13573
|
|
137
137
|
nextmv/cloud/assets.py,sha256=alw634ub-DR0CHQXZy_ObeGvQthPXFLdgzgbvbH1SGY,1376
|
|
138
138
|
nextmv/cloud/batch_experiment.py,sha256=thS94-ZdMR7Em5TeGN5UtnIDHmhzqld_U49SODyhrPU,10537
|
|
139
|
-
nextmv/cloud/client.py,sha256=
|
|
139
|
+
nextmv/cloud/client.py,sha256=FGyzpwPBXMiiT4Jr2DLvWzzhjQ64AdadPDACaCuIDGM,18100
|
|
140
140
|
nextmv/cloud/ensemble.py,sha256=_hKPjSLtuGH1xGG70ZBsmY_IL5XinZqVHHwBxtX9Omw,8570
|
|
141
141
|
nextmv/cloud/input_set.py,sha256=wsLmMI1C7BslWDN5j1RnVUA8z54-Hq1eLG9bkzyqafo,4187
|
|
142
142
|
nextmv/cloud/instance.py,sha256=rLrgNNvNyC6hZtjxIfTR2Luylmbh2emJIZVCy_hTJZ4,5495
|
|
@@ -148,36 +148,36 @@ nextmv/cloud/shadow.py,sha256=DWJfFkwlbULdl988A1HkOsyQGq0l9xtLT8Q-ZzsepH0,7214
|
|
|
148
148
|
nextmv/cloud/switchback.py,sha256=AGA0LDMu7sHndczy2TrcZghn_ZRnTGlBDmGRZG34dZY,7344
|
|
149
149
|
nextmv/cloud/url.py,sha256=Fz70ywkWdCLmP21ZBmJwZi5kDbjpmsX_VlwVF_xQeHg,1836
|
|
150
150
|
nextmv/cloud/version.py,sha256=5_S7_pWUVBFbvAArku20eK7S645GJcHtgE2OpXLdSzQ,5300
|
|
151
|
-
nextmv/cloud/application/__init__.py,sha256=
|
|
151
|
+
nextmv/cloud/application/__init__.py,sha256=E1Q-WIly_PiNg1ynMynA81SwX88Q6uH_lqWKtQQX0tg,40369
|
|
152
152
|
nextmv/cloud/application/_acceptance.py,sha256=ZwbVkur3-1fwM_L4F8ZUqrNaIdHgYGxKd3utoOCWjSc,13679
|
|
153
|
-
nextmv/cloud/application/_batch_scenario.py,sha256=
|
|
153
|
+
nextmv/cloud/application/_batch_scenario.py,sha256=cSsX5vPOkm91UqRBPIcqlOvQ0iojwt4sQKYGZEE7x6k,28479
|
|
154
154
|
nextmv/cloud/application/_ensemble.py,sha256=05l9uR0hTnW8nQjhRzjd2TPfvCoaAqNddWP-aVRL5rg,7666
|
|
155
155
|
nextmv/cloud/application/_input_set.py,sha256=m7PKqhR3evdE_a_RER1L6iKwftlaxTiRd1JQvgCepUU,7069
|
|
156
|
-
nextmv/cloud/application/_instance.py,sha256=
|
|
157
|
-
nextmv/cloud/application/_managed_input.py,sha256=
|
|
158
|
-
nextmv/cloud/application/_run.py,sha256=
|
|
156
|
+
nextmv/cloud/application/_instance.py,sha256=Jjig8NI1jXNyBQoYj7JOfS0JFmw5jJdKLfi82fqBYgo,8386
|
|
157
|
+
nextmv/cloud/application/_managed_input.py,sha256=zaWqGpe8Y5XWheroAqZSo-xNHfn2MKblNwRUbQVXBRM,6694
|
|
158
|
+
nextmv/cloud/application/_run.py,sha256=LgSKm537F0ej-LTsMVmabkyOBtFnaHjvAdInnPzL6UI,53898
|
|
159
159
|
nextmv/cloud/application/_secrets.py,sha256=hWhPAyY8aDF8zlEz9opPNLrFOYtp-COFqG_jgOZ6VxI,9476
|
|
160
|
-
nextmv/cloud/application/_shadow.py,sha256=
|
|
161
|
-
nextmv/cloud/application/_switchback.py,sha256=
|
|
160
|
+
nextmv/cloud/application/_shadow.py,sha256=8uH0Zr-9czef2BhshYLzc0yBQhIcIdBYTCIiUS1ru44,9123
|
|
161
|
+
nextmv/cloud/application/_switchback.py,sha256=MapHkquya7SeyNnEVIy7E7Um_9VuMH7XiB7FFxZx6Po,9743
|
|
162
162
|
nextmv/cloud/application/_utils.py,sha256=GqksGBHCV2sc-itL6hlWnncUJjIxhw6LH3pOjs4M-us,1643
|
|
163
|
-
nextmv/cloud/application/_version.py,sha256=
|
|
163
|
+
nextmv/cloud/application/_version.py,sha256=o1jVLfoKJNCs-32P7hkL1IGba8Eb1hnT6vnaZpyc0dk,8543
|
|
164
164
|
nextmv/default_app/.gitignore,sha256=gsfnfXMYNt-YTroh5hAzauwBZoPDJ6D_fB17rMSnIko,8
|
|
165
165
|
nextmv/default_app/README.md,sha256=hW3zWcYzxhYfof-pThaN1Fkx93GT8tTUVRhx15edBis,662
|
|
166
166
|
nextmv/default_app/app.yaml,sha256=TKjKnuoK0SDpouB_AS7TQmE_8HZbQYjmwFvhzFL1xpc,382
|
|
167
167
|
nextmv/default_app/input.json,sha256=zgvbKL3boB0WIU6-9mEU3ZWBddQ5cQ0vhgmDwDyz4hE,63
|
|
168
|
-
nextmv/default_app/main.py,sha256=
|
|
168
|
+
nextmv/default_app/main.py,sha256=j5L0itCyXKl3ezgkaS0cToLHzSl26Ah-PYr0gvxizxU,815
|
|
169
169
|
nextmv/default_app/requirements.txt,sha256=wRE_HkYYWzCGnYZ2NuatHXul4gCHvU3iUAdsxtzpYiA,29
|
|
170
170
|
nextmv/default_app/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
171
|
nextmv/default_app/src/visuals.py,sha256=WYK_YBnLmYo3TpVev1CpoNCuW5R7hk9QIkeCmvMn1Fs,1014
|
|
172
172
|
nextmv/local/__init__.py,sha256=6BsoqlK4dw6X11_uKzz9gBPfxKpdiol2FYO8R3X73SE,116
|
|
173
173
|
nextmv/local/application.py,sha256=SBOARPnffAH6q-S0GGPEjt0gYIXmeR-38-VcZMfhqKk,47745
|
|
174
|
-
nextmv/local/executor.py,sha256=
|
|
175
|
-
nextmv/local/geojson_handler.py,sha256=
|
|
174
|
+
nextmv/local/executor.py,sha256=BxR7QWb4RekeFphJ4rOvJs8fYZGIQfgWlc75b8I7GRU,39310
|
|
175
|
+
nextmv/local/geojson_handler.py,sha256=CVlW5iof-8AODudEQ-a_o6WHqAeULfQS7-oJHf1-sAQ,12538
|
|
176
176
|
nextmv/local/local.py,sha256=cp56UpI8h19Ob6Jvb_Ni0ceXH5Vv3ET_iPTDe6ftq3Y,2617
|
|
177
177
|
nextmv/local/plotly_handler.py,sha256=bLb50e3AkVr_W-F6S7lXfeRdN60mG2jk3UElNmhoMWU,1930
|
|
178
|
-
nextmv/local/runner.py,sha256=
|
|
179
|
-
nextmv-1.0.0.
|
|
180
|
-
nextmv-1.0.0.
|
|
181
|
-
nextmv-1.0.0.
|
|
182
|
-
nextmv-1.0.0.
|
|
183
|
-
nextmv-1.0.0.
|
|
178
|
+
nextmv/local/runner.py,sha256=bM1dFIAG4f9pEtbyevzkRa9nSppqTeD8naomNzJVBRU,8560
|
|
179
|
+
nextmv-1.0.0.dev5.dist-info/METADATA,sha256=_4aG0NdlL-vTSHTVH5-p3k80-SyLKOTz8k5j-B8AxKw,16484
|
|
180
|
+
nextmv-1.0.0.dev5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
181
|
+
nextmv-1.0.0.dev5.dist-info/entry_points.txt,sha256=bH7kXUt_IOLpeW_O7Z-J2gALs2YYJ4CmWuzS8MdK6uY,48
|
|
182
|
+
nextmv-1.0.0.dev5.dist-info/licenses/LICENSE,sha256=ZIbK-sSWA-OZprjNbmJAglYRtl5_K4l9UwAV3PGJAPc,11349
|
|
183
|
+
nextmv-1.0.0.dev5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|