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
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 the Nextmv Cloud.
- Make a run and get the results.
import os
from nextmv.cloud import Application, Client
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"},
)
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.1.0.dev7.tar.gz
(29.1 kB
view details)
Built Distribution
File details
Details for the file nextmv-0.1.0.dev7.tar.gz
.
File metadata
- Download URL: nextmv-0.1.0.dev7.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8174288ced016118a4aeafa563e5c83b0f539c6e5a3ea6785de737a5334714b6 |
|
MD5 | 6365cd84bd374da1b1439b55172267ae |
|
BLAKE2b-256 | e75ae89e04c71b91a2d124c1fec382eed916e36b55f7e265be0d3021e1f62f0f |
File details
Details for the file nextmv-0.1.0.dev7-py3-none-any.whl
.
File metadata
- Download URL: nextmv-0.1.0.dev7-py3-none-any.whl
- Upload date:
- Size: 27.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a38a0fa435b48516d472fff4083d14fb9400046ee7e3b2f765dec54364bed694 |
|
MD5 | 2045603d239c69d17382a75a4d715ed0 |
|
BLAKE2b-256 | 1ba13f9433a1cc5c836deb862153236533bed5734e37a993cba3433e8daf371f |