The Python SDK for Nextmv
Project description
Nextmv Python SDK
This is the Python SDK for the Nextmv Platform. Before starting:
- Sign up for a Nextmv account.
- Get your API key. Go to Team > API Key.
Visit the docs for more information.
Installation
Requires Python >=3.8
. Install using pip
:
pip install nextmv
Usage
Make sure that you have your API key set as an environment variable:
export NEXTMV_API_KEY="<YOUR-API-KEY>"
Additionally, you must have a valid app in Nextmv Cloud.
- Make a run and get the results.
import os
from nextmv.cloud import Application, Client, PollingOptions
input = {
"defaults": {"vehicles": {"speed": 20}},
"stops": [
{
"id": "Nijō Castle",
"location": {"lon": 135.748134, "lat": 35.014239},
"quantity": -1,
},
{
"id": "Kyoto Imperial Palace",
"location": {"lon": 135.762057, "lat": 35.025431},
"quantity": -1,
},
],
"vehicles": [
{
"id": "v2",
"capacity": 2,
"start_location": {"lon": 135.728898, "lat": 35.039705},
},
],
}
client = Client(api_key=os.getenv("NEXTMV_API_KEY"))
app = Application(client=client, id="<YOUR-APP-ID>")
result = app.new_run_with_result(
input=input,
instance_id="latest",
run_options={"solve.duration": "1s"},
polling_options=PollingOptions(), # Customize the polling options.
)
print(result.to_dict())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nextmv-0.10.0.dev6.tar.gz
(42.0 kB
view details)
Built Distribution
File details
Details for the file nextmv-0.10.0.dev6.tar.gz
.
File metadata
- Download URL: nextmv-0.10.0.dev6.tar.gz
- Upload date:
- Size: 42.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9e545394917fcb4a1c186941098ce27c4a82a73c9d828e3942a67b088178bca |
|
MD5 | d55df01a6d186cbf8eec103a53659f43 |
|
BLAKE2b-256 | 171b0f2e67cbf4079343e47a0bacd3686452c6136b9623822a7cdd929b853b72 |
File details
Details for the file nextmv-0.10.0.dev6-py3-none-any.whl
.
File metadata
- Download URL: nextmv-0.10.0.dev6-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 615be9e7bb13e5fc75cc6ae57a2de22374858ef29db078cbd6c39ed22dda23f1 |
|
MD5 | 7bc5337db3d43d3f4caef717fa6198b0 |
|
BLAKE2b-256 | dff3503f8ca926bf0f3c7696f317553d8bb6ca1d58eb0dd3bd7facb35ed74fac |