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.dev10.tar.gz
(42.5 kB
view details)
Built Distribution
File details
Details for the file nextmv-0.10.0.dev10.tar.gz
.
File metadata
- Download URL: nextmv-0.10.0.dev10.tar.gz
- Upload date:
- Size: 42.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 967bb1a8a23f27df467210487c9c12624d533841bb7e600252ef75c3114181c9 |
|
MD5 | 8159aa59f477594d9721db609047c92b |
|
BLAKE2b-256 | 2f2a42402b732d6e992589dbb6995a1c7c5b9e31b6a9bbd80577c7afdba173e5 |
File details
Details for the file nextmv-0.10.0.dev10-py3-none-any.whl
.
File metadata
- Download URL: nextmv-0.10.0.dev10-py3-none-any.whl
- Upload date:
- Size: 38.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3ef3ac971067ad5a58376e9cd8e80d61890e873b6ef83f2fc5314676d02dc53 |
|
MD5 | d510c6e7f89be88875f313980ec49ed1 |
|
BLAKE2b-256 | a273eedcda78bb880458cd079755c6ac96fbb53fbc94fbcb073428c3c0270579 |