Installation

Installation

Requirements

  • Python 3.9 or higher
  • An active internet connection (telemetry is sent asynchronously)

Install via pip

pip install maev-sdk

Install via uv

uv add maev-sdk

Install via Poetry

poetry add maev-sdk

Verify the installation

import maev
print(maev.__version__)

Dependencies

maev-sdk has a single dependency that installs automatically. You do not need to install anything else manually.

Using environment variables

Avoid hardcoding your API key. Store it in an environment variable instead:

# .env
MAEV_API_KEY=vl_your_key_here
import os
import maev
 
maev.init(api_key=os.environ["MAEV_API_KEY"])

Or with python-dotenv:

from dotenv import load_dotenv
import os
import maev
 
load_dotenv()
maev.init(api_key=os.environ["MAEV_API_KEY"])
⚠️

Never commit your API key to version control. Use environment variables or a secrets manager.