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.dev9.tar.gz
(42.2 kB
view details)
Built Distribution
File details
Details for the file nextmv-0.10.0.dev9.tar.gz
.
File metadata
- Download URL: nextmv-0.10.0.dev9.tar.gz
- Upload date:
- Size: 42.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ccee8b1d1803e0079605fca2f2a73dc19a81c526bdedac2ed273e45bbc6e36c |
|
MD5 | 290b936fb062df9ebafbf13261a54b70 |
|
BLAKE2b-256 | e61afd00a3e65bfc8f8d0430ed26fcd8530256c398b4c512488b407557dba32a |
File details
Details for the file nextmv-0.10.0.dev9-py3-none-any.whl
.
File metadata
- Download URL: nextmv-0.10.0.dev9-py3-none-any.whl
- Upload date:
- Size: 38.5 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 | 02b63a236d586370ab1e57c2281d7ee118229f56ef5752eadcdea946b883d68d |
|
MD5 | 6ea1e9a96ab11790945bc6b5069b299b |
|
BLAKE2b-256 | 6972f16b1e8fae78767ee669f09a3a18e5908e19946d2a968201d47bc6b67cb2 |