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.dev5.tar.gz
(42.0 kB
view details)
Built Distribution
File details
Details for the file nextmv-0.10.0.dev5.tar.gz
.
File metadata
- Download URL: nextmv-0.10.0.dev5.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 | 75034680ea964596a372a51bec53c8c7616933e21e3a00cb835970764fabee57 |
|
MD5 | 18097bb0849d5aaa1b70d990ba8b4437 |
|
BLAKE2b-256 | 49c9b3e17f73aed3d97e700153554df7ee892e09162f4e22ed1e3f6271af701a |
File details
Details for the file nextmv-0.10.0.dev5-py3-none-any.whl
.
File metadata
- Download URL: nextmv-0.10.0.dev5-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 | 7a0b8db84f2f29352a4292b25f9821d262513cdc4cb8f725b22bee51cf52cf9c |
|
MD5 | 611a54ff9f319de2be563bd349bfe9b7 |
|
BLAKE2b-256 | d32d73c78cdf85a8ae1f96fd5562dd0ec34679e938b2182ba5aed3d51cbb3d87 |