Python SDK

Official Nevuto Python SDK.

The official Nevuto SDK for Python 3.8+.

Installation

pip install nevuto

Usage

from nevuto import Nevuto

client = Nevuto(api_key="nv_live_your_api_key")

# List stores
stores = client.stores.list()

# Create a product
product = client.products.create(
    store_id="store_abc123",
    name="New Product",
    price=1999
)

Async Support

from nevuto import AsyncNevuto

client = AsyncNevuto(api_key="nv_live_your_api_key")

stores = await client.stores.list()