Galtea

The Galtea class is the main entry point for the Galtea SDK. It provides access to all the functionalities of the SDK.

Initialization

To initialize the Galtea class, you need to provide your API key obtained in the settings page of the Galtea platform.

from galtea import Galtea

# Initialize Galtea SDK
galtea = Galtea(api_key="YOUR_API_KEY")

Services

The Galtea class provides access to the following services:

Example

from galtea import Galtea

# Initialize Galtea SDK
galtea = Galtea(api_key="YOUR_API_KEY")

# List products
products = galtea.products.list()
print(products)