Skip to content

Cloud overview

The nextmv.cloud package provides functionality to interact with Nextmv Cloud directly.

Before starting:

  1. Sign up for a Nextmv account.
  2. Get your API key. Go to Settings > API Key.

Make sure that you have your API key set as an environment variable:

export NEXTMV_API_KEY="<YOUR-API-KEY>"

Once you have your API key set up, you can create a cloud Client:

import os
from nextmv import cloud

client = cloud.Client(api_key=os.getenv("NEXTMV_API_KEY"))