nextmv 0.40.0__tar.gz → 1.0.0__tar.gz
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-0.40.0 → nextmv-1.0.0}/.gitignore +0 -1
- {nextmv-0.40.0 → nextmv-1.0.0}/PKG-INFO +37 -11
- {nextmv-0.40.0 → nextmv-1.0.0}/README.md +32 -7
- nextmv-1.0.0/nextmv/__about__.py +1 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/__entrypoint__.py +1 -2
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/__init__.py +2 -4
- nextmv-1.0.0/nextmv/cli/CONTRIBUTING.md +583 -0
- nextmv-1.0.0/nextmv/cli/cloud/__init__.py +49 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/__init__.py +27 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/create.py +391 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/get.py +103 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/list.py +62 -0
- nextmv-1.0.0/nextmv/cli/cloud/acceptance/update.py +95 -0
- nextmv-1.0.0/nextmv/cli/cloud/account/__init__.py +28 -0
- nextmv-1.0.0/nextmv/cli/cloud/account/create.py +83 -0
- nextmv-1.0.0/nextmv/cli/cloud/account/delete.py +59 -0
- nextmv-1.0.0/nextmv/cli/cloud/account/get.py +66 -0
- nextmv-1.0.0/nextmv/cli/cloud/account/update.py +70 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/__init__.py +35 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/create.py +140 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/delete.py +57 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/exists.py +44 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/get.py +66 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/list.py +61 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/push.py +432 -0
- nextmv-1.0.0/nextmv/cli/cloud/app/update.py +124 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/__init__.py +29 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/create.py +452 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/get.py +104 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/metadata.py +66 -0
- nextmv-1.0.0/nextmv/cli/cloud/batch/update.py +95 -0
- nextmv-1.0.0/nextmv/cli/cloud/data/__init__.py +26 -0
- nextmv-1.0.0/nextmv/cli/cloud/data/upload.py +162 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/__init__.py +33 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/create.py +413 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/delete.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/get.py +65 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/ensemble/update.py +103 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/__init__.py +32 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/create.py +168 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/get.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/input_set/update.py +123 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/__init__.py +35 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/create.py +289 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/delete.py +61 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/exists.py +39 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/get.py +62 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/list.py +60 -0
- nextmv-1.0.0/nextmv/cli/cloud/instance/update.py +216 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/__init__.py +31 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/create.py +144 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/get.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/list.py +60 -0
- nextmv-1.0.0/nextmv/cli/cloud/managed_input/update.py +97 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/__init__.py +37 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/cancel.py +37 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/create.py +524 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/get.py +199 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/input.py +86 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/list.py +80 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/logs.py +166 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/metadata.py +67 -0
- nextmv-1.0.0/nextmv/cli/cloud/run/track.py +500 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/__init__.py +29 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/create.py +451 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/delete.py +61 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/get.py +102 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/metadata.py +67 -0
- nextmv-1.0.0/nextmv/cli/cloud/scenario/update.py +93 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/__init__.py +33 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/create.py +206 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/delete.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/get.py +66 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/list.py +60 -0
- nextmv-1.0.0/nextmv/cli/cloud/secrets/update.py +144 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/__init__.py +33 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/create.py +184 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/get.py +61 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/metadata.py +66 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/start.py +43 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/stop.py +53 -0
- nextmv-1.0.0/nextmv/cli/cloud/shadow/update.py +96 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/__init__.py +33 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/create.py +151 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/delete.py +64 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/get.py +62 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/list.py +63 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/metadata.py +68 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/start.py +43 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/stop.py +53 -0
- nextmv-1.0.0/nextmv/cli/cloud/switchback/update.py +96 -0
- nextmv-1.0.0/nextmv/cli/cloud/upload/__init__.py +22 -0
- nextmv-1.0.0/nextmv/cli/cloud/upload/create.py +39 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/__init__.py +33 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/create.py +96 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/delete.py +61 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/exists.py +39 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/get.py +62 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/list.py +60 -0
- nextmv-1.0.0/nextmv/cli/cloud/version/update.py +92 -0
- nextmv-1.0.0/nextmv/cli/community/clone.py +86 -0
- nextmv-1.0.0/nextmv/cli/community/list.py +200 -0
- nextmv-1.0.0/nextmv/cli/configuration/config.py +228 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/configuration/create.py +17 -18
- nextmv-1.0.0/nextmv/cli/configuration/delete.py +67 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/configuration/list.py +4 -4
- nextmv-1.0.0/nextmv/cli/confirm.py +34 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/main.py +68 -36
- nextmv-1.0.0/nextmv/cli/message.py +170 -0
- nextmv-1.0.0/nextmv/cli/options.py +220 -0
- nextmv-1.0.0/nextmv/cli/version.py +38 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/__init__.py +17 -38
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/acceptance_test.py +20 -83
- nextmv-1.0.0/nextmv/cloud/account.py +452 -0
- nextmv-1.0.0/nextmv/cloud/application/__init__.py +898 -0
- nextmv-1.0.0/nextmv/cloud/application/_acceptance.py +424 -0
- nextmv-1.0.0/nextmv/cloud/application/_batch_scenario.py +845 -0
- nextmv-1.0.0/nextmv/cloud/application/_ensemble.py +251 -0
- nextmv-1.0.0/nextmv/cloud/application/_input_set.py +263 -0
- nextmv-1.0.0/nextmv/cloud/application/_instance.py +289 -0
- nextmv-1.0.0/nextmv/cloud/application/_managed_input.py +227 -0
- nextmv-1.0.0/nextmv/cloud/application/_run.py +1393 -0
- nextmv-1.0.0/nextmv/cloud/application/_secrets.py +294 -0
- nextmv-1.0.0/nextmv/cloud/application/_shadow.py +320 -0
- nextmv-1.0.0/nextmv/cloud/application/_switchback.py +332 -0
- nextmv-1.0.0/nextmv/cloud/application/_utils.py +54 -0
- nextmv-1.0.0/nextmv/cloud/application/_version.py +304 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/batch_experiment.py +6 -2
- nextmv-1.0.0/nextmv/cloud/community.py +446 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/instance.py +11 -1
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/integration.py +8 -5
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/package.py +50 -9
- nextmv-1.0.0/nextmv/cloud/shadow.py +254 -0
- nextmv-1.0.0/nextmv/cloud/switchback.py +228 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/deprecated.py +5 -3
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/input.py +20 -88
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/application.py +3 -15
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/runner.py +1 -1
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/model.py +50 -11
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/options.py +11 -256
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/output.py +0 -62
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/polling.py +54 -16
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/run.py +84 -37
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/status.py +1 -51
- {nextmv-0.40.0 → nextmv-1.0.0}/pyproject.toml +6 -8
- nextmv-1.0.0/tests/README.md +91 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_configuration.py +10 -39
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_main.py +0 -31
- nextmv-1.0.0/tests/integration/cloud/test_integration_cloud.py +790 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_entrypoint/test_entrypoint.py +15 -13
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_input.py +0 -47
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_options.py +1 -252
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_run.py +2 -13
- nextmv-0.40.0/nextmv/__about__.py +0 -1
- nextmv-0.40.0/nextmv/cli/community/clone.py +0 -270
- nextmv-0.40.0/nextmv/cli/community/list.py +0 -265
- nextmv-0.40.0/nextmv/cli/configuration/config.py +0 -131
- nextmv-0.40.0/nextmv/cli/configuration/delete.py +0 -55
- nextmv-0.40.0/nextmv/cli/error.py +0 -22
- nextmv-0.40.0/nextmv/cli/options.py +0 -24
- nextmv-0.40.0/nextmv/cli/version.py +0 -19
- nextmv-0.40.0/nextmv/cloud/account.py +0 -213
- nextmv-0.40.0/nextmv/cloud/application.py +0 -4204
- nextmv-0.40.0/tests/cli/test_community.py +0 -665
- nextmv-0.40.0/tests/scripts/options_deprecated.py +0 -8
- {nextmv-0.40.0 → nextmv-1.0.0}/LICENSE +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/_serialization.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/base_model.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/__init__.py +0 -0
- nextmv-0.40.0/nextmv/cli/community/community.py → nextmv-1.0.0/nextmv/cli/community/__init__.py +1 -1
- /nextmv-0.40.0/nextmv/cli/configuration/configuration.py → /nextmv-1.0.0/nextmv/cli/configuration/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/assets.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/client.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/ensemble.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/input_set.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/scenario.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/secrets.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/url.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/version.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/.gitignore +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/README.md +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/app.yaml +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/input.json +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/main.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/requirements.txt +0 -0
- {nextmv-0.40.0/nextmv/cli/community → nextmv-1.0.0/nextmv/default_app/src}/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/src/visuals.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/executor.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/geojson_handler.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/local.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/plotly_handler.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/logger.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/manifest.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/safe.py +0 -0
- {nextmv-0.40.0/nextmv/cli/configuration → nextmv-1.0.0/tests}/__init__.py +0 -0
- {nextmv-0.40.0/nextmv/default_app/src → nextmv-1.0.0/tests/cli}/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_version.py +0 -0
- {nextmv-0.40.0/tests → nextmv-1.0.0/tests/cloud}/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/app.yaml +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_client.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_instance.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_package.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_scenario.py +0 -0
- {nextmv-0.40.0/tests/cli → nextmv-1.0.0/tests/integration}/__init__.py +0 -0
- {nextmv-0.40.0/tests → nextmv-1.0.0/tests/integration}/cloud/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_application.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_executor.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_runner.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options1.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options2.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options3.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options4.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options5.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options6.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options7.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_base_model.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_entrypoint/__init__.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.csv +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.json +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.txt +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_logger.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_manifest.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_model.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_output.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_polling.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_safe.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_serialization.py +0 -0
- {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nextmv
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: The all-purpose Python SDK for Nextmv
|
|
5
5
|
Project-URL: Homepage, https://www.nextmv.io
|
|
6
6
|
Project-URL: Documentation, https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
|
|
@@ -229,19 +229,20 @@ Requires-Dist: plotly>=6.0.1; extra == 'all'
|
|
|
229
229
|
Provides-Extra: dev
|
|
230
230
|
Requires-Dist: build>=1.0.3; extra == 'dev'
|
|
231
231
|
Requires-Dist: folium>=0.20.0; extra == 'dev'
|
|
232
|
-
Requires-Dist: mlflow>=
|
|
233
|
-
Requires-Dist:
|
|
232
|
+
Requires-Dist: mlflow>=3.9.0; extra == 'dev'
|
|
233
|
+
Requires-Dist: nextpipe>=0.6.0; extra == 'dev'
|
|
234
234
|
Requires-Dist: openpyxl>=3.1.5; extra == 'dev'
|
|
235
235
|
Requires-Dist: pandas>=2.2.3; extra == 'dev'
|
|
236
236
|
Requires-Dist: plotly>=6.0.1; extra == 'dev'
|
|
237
237
|
Requires-Dist: pydantic>=2.5.2; extra == 'dev'
|
|
238
|
+
Requires-Dist: pytest>=9.0.2; extra == 'dev'
|
|
238
239
|
Requires-Dist: pyyaml>=6.0.1; extra == 'dev'
|
|
239
240
|
Requires-Dist: requests>=2.31.0; extra == 'dev'
|
|
240
241
|
Requires-Dist: ruff>=0.1.7; extra == 'dev'
|
|
241
242
|
Requires-Dist: twine>=4.0.2; extra == 'dev'
|
|
242
243
|
Requires-Dist: urllib3>=2.1.0; extra == 'dev'
|
|
243
244
|
Provides-Extra: notebook
|
|
244
|
-
Requires-Dist: mlflow>=
|
|
245
|
+
Requires-Dist: mlflow>=3.9.0; extra == 'notebook'
|
|
245
246
|
Description-Content-Type: text/markdown
|
|
246
247
|
|
|
247
248
|
# Nextmv Python SDK
|
|
@@ -267,20 +268,45 @@ Description-Content-Type: text/markdown
|
|
|
267
268
|
|
|
268
269
|
Welcome to `nextmv`, the general Python SDK for the Nextmv Platform.
|
|
269
270
|
|
|
270
|
-
📖 To learn more about
|
|
271
|
+
📖 To learn more about `nextmv`, visit the [docs][docs].
|
|
271
272
|
|
|
272
273
|
## Installation
|
|
273
274
|
|
|
274
|
-
Requires Python `>=3.10`. Install using
|
|
275
|
+
Requires Python `>=3.10`. Install using the Python package manager of your
|
|
276
|
+
choice:
|
|
275
277
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
```
|
|
278
|
+
- `pip`
|
|
279
|
+
|
|
280
|
+
```bash
|
|
281
|
+
pip install nextmv
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
- `pipx`
|
|
285
|
+
|
|
286
|
+
```bash
|
|
287
|
+
pipx install nextmv
|
|
288
|
+
```
|
|
279
289
|
|
|
280
|
-
|
|
290
|
+
- `uv`
|
|
291
|
+
|
|
292
|
+
```bash
|
|
293
|
+
uv tool install nextmv
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
Install all optional dependencies (recommended) by specifying `"nextmv[all]"`
|
|
297
|
+
instead of just `"nextmv"`.
|
|
298
|
+
|
|
299
|
+
## CLI
|
|
300
|
+
|
|
301
|
+
The Nextmv CLI is installed automatically with the SDK. To verify installation,
|
|
302
|
+
run:
|
|
281
303
|
|
|
282
304
|
```bash
|
|
283
|
-
|
|
305
|
+
nextmv --help
|
|
284
306
|
```
|
|
285
307
|
|
|
308
|
+
If you are contributing to the CLI, please make sure you read the [CLI
|
|
309
|
+
Contributing Guide][cli-contributing].
|
|
310
|
+
|
|
286
311
|
[docs]: https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
|
|
312
|
+
[cli-contributing]: nextmv/cli/CONTRIBUTING.md
|
|
@@ -21,20 +21,45 @@
|
|
|
21
21
|
|
|
22
22
|
Welcome to `nextmv`, the general Python SDK for the Nextmv Platform.
|
|
23
23
|
|
|
24
|
-
📖 To learn more about
|
|
24
|
+
📖 To learn more about `nextmv`, visit the [docs][docs].
|
|
25
25
|
|
|
26
26
|
## Installation
|
|
27
27
|
|
|
28
|
-
Requires Python `>=3.10`. Install using
|
|
28
|
+
Requires Python `>=3.10`. Install using the Python package manager of your
|
|
29
|
+
choice:
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
```
|
|
31
|
+
- `pip`
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install nextmv
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
- `pipx`
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pipx install nextmv
|
|
41
|
+
```
|
|
33
42
|
|
|
34
|
-
|
|
43
|
+
- `uv`
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
uv tool install nextmv
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Install all optional dependencies (recommended) by specifying `"nextmv[all]"`
|
|
50
|
+
instead of just `"nextmv"`.
|
|
51
|
+
|
|
52
|
+
## CLI
|
|
53
|
+
|
|
54
|
+
The Nextmv CLI is installed automatically with the SDK. To verify installation,
|
|
55
|
+
run:
|
|
35
56
|
|
|
36
57
|
```bash
|
|
37
|
-
|
|
58
|
+
nextmv --help
|
|
38
59
|
```
|
|
39
60
|
|
|
61
|
+
If you are contributing to the CLI, please make sure you read the [CLI
|
|
62
|
+
Contributing Guide][cli-contributing].
|
|
63
|
+
|
|
40
64
|
[docs]: https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
|
|
65
|
+
[cli-contributing]: nextmv/cli/CONTRIBUTING.md
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "v1.0.0"
|
|
@@ -10,13 +10,12 @@ human to use it during local development. It is the standard way in which a
|
|
|
10
10
|
from mlflow.pyfunc import load_model
|
|
11
11
|
|
|
12
12
|
import nextmv
|
|
13
|
-
from nextmv import cloud
|
|
14
13
|
|
|
15
14
|
|
|
16
15
|
def main() -> None:
|
|
17
16
|
"""Entry point for the program."""
|
|
18
17
|
|
|
19
|
-
manifest =
|
|
18
|
+
manifest = nextmv.Manifest.from_yaml(".")
|
|
20
19
|
|
|
21
20
|
# Load the options from the manifest.
|
|
22
21
|
options = manifest.extract_options()
|
|
@@ -11,7 +11,6 @@ from .input import LocalInputLoader as LocalInputLoader
|
|
|
11
11
|
from .input import csv_data_file as csv_data_file
|
|
12
12
|
from .input import json_data_file as json_data_file
|
|
13
13
|
from .input import load as load
|
|
14
|
-
from .input import load_local as load_local
|
|
15
14
|
from .input import text_data_file as text_data_file
|
|
16
15
|
from .logger import log as log
|
|
17
16
|
from .logger import redirect_stdout as redirect_stdout
|
|
@@ -31,7 +30,6 @@ from .model import Model as Model
|
|
|
31
30
|
from .model import ModelConfiguration as ModelConfiguration
|
|
32
31
|
from .options import Option as Option
|
|
33
32
|
from .options import Options as Options
|
|
34
|
-
from .options import Parameter as Parameter
|
|
35
33
|
from .output import Asset as Asset
|
|
36
34
|
from .output import DataPoint as DataPoint
|
|
37
35
|
from .output import LocalOutputWriter as LocalOutputWriter
|
|
@@ -50,9 +48,9 @@ from .output import csv_solution_file as csv_solution_file
|
|
|
50
48
|
from .output import json_solution_file as json_solution_file
|
|
51
49
|
from .output import text_solution_file as text_solution_file
|
|
52
50
|
from .output import write as write
|
|
53
|
-
from .output import write_local as write_local
|
|
54
51
|
from .polling import DEFAULT_POLLING_OPTIONS as DEFAULT_POLLING_OPTIONS
|
|
55
52
|
from .polling import PollingOptions as PollingOptions
|
|
53
|
+
from .polling import default_polling_options as default_polling_options
|
|
56
54
|
from .polling import poll as poll
|
|
57
55
|
from .run import ErrorLog as ErrorLog
|
|
58
56
|
from .run import ExternalRunResult as ExternalRunResult
|
|
@@ -72,12 +70,12 @@ from .run import RunType as RunType
|
|
|
72
70
|
from .run import RunTypeConfiguration as RunTypeConfiguration
|
|
73
71
|
from .run import StatisticsIndicator as StatisticsIndicator
|
|
74
72
|
from .run import SyncedRun as SyncedRun
|
|
73
|
+
from .run import TimestampedRunLog as TimestampedRunLog
|
|
75
74
|
from .run import TrackedRun as TrackedRun
|
|
76
75
|
from .run import TrackedRunStatus as TrackedRunStatus
|
|
77
76
|
from .run import run_duration as run_duration
|
|
78
77
|
from .safe import safe_id as safe_id
|
|
79
78
|
from .safe import safe_name_and_id as safe_name_and_id
|
|
80
|
-
from .status import Status as Status
|
|
81
79
|
from .status import StatusV2 as StatusV2
|
|
82
80
|
|
|
83
81
|
VERSION = __version__
|