Skip to main content

A Python client to interact with the KappaML platform

Project description

KappaML Python Client

Python client to interact with the KappaML platform 🐍

This SDK provides a simple interface for creating, training, and managing online machine learning models.

Platform: https://kappaml.com API Keys: https://app.kappaml.com/api-keys API Documentation: https://api.kappaml.com/docs OpenAPI Schema: https://api.kappaml.com/openapi.json

Installation

pip install kappaml

Quick Start

from kappaml import KappaML

# Initialize the client
client = KappaML(api_key="your_api_key")  # Or set KAPPAML_API_KEY env variable

# Create a new model
model_id = client.create_model(
    name="my-regression-model",
    ml_type="regression"
)

# Train the model with a single data point
client.learn(
    model_id=model_id,
    features={"x1": 1.0, "x2": 2.0},
    target=3.0
)

# Make predictions
prediction = client.predict(
    model_id=model_id,
    features={"x1": 1.5, "x2": 2.5}
)

# Get model metrics
metrics = client.get_metrics(model_id)

# Clean up
client.delete_model(model_id)

API Reference

KappaML Class

Constructor

client = KappaML(api_key: Optional[str] = None)
  • api_key: Your KappaML API key. If not provided, will look for KAPPAML_API_KEY environment variable.

Methods

create_model
def create_model(
    name: str,
    ml_type: str,
    wait_for_deployment: bool = True,
    timeout: int = 60
) -> str

Creates a new model on KappaML.

  • name: Name of the model
  • ml_type: Type of ML task ('regression' or 'classification')
  • wait_for_deployment: Whether to wait for model deployment to complete
  • timeout: Maximum time to wait for deployment in seconds
  • Returns: The model ID
learn
def learn(
    model_id: str,
    features: Dict[str, Any],
    target: Union[float, int, str]
) -> Dict[str, Any]

Train the model with a single data point.

  • model_id: The model ID
  • features: Dictionary of feature names and values
  • target: The target value to learn from
  • Returns: Response from the learning API
predict
def predict(
    model_id: str,
    features: Dict[str, Any]
) -> Dict[str, Any]

Make predictions using a model.

  • model_id: The model ID
  • features: Dictionary of feature names and values
  • Returns: Model predictions
get_metrics
def get_metrics(model_id: str) -> Dict[str, Any]

Get current metrics for a model.

  • model_id: The model ID
  • Returns: Model metrics
delete_model
def delete_model(model_id: str) -> None

Delete a model.

  • model_id: The model ID to delete

Error Handling

The SDK defines several exception classes for handling errors:

  • KappaMLError: Base exception for all SDK errors
  • ModelNotFoundError: Raised when a model is not found
  • ModelDeploymentError: Raised when model deployment fails or times out

Example error handling:

from kappaml import KappaML, ModelNotFoundError

client = KappaML()

try:
    metrics = client.get_metrics("non-existent-model")
except ModelNotFoundError:
    print("Model not found!")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kappaml-1.0.1.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kappaml-1.0.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file kappaml-1.0.1.tar.gz.

File metadata

  • Download URL: kappaml-1.0.1.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.12

File hashes

Hashes for kappaml-1.0.1.tar.gz
Algorithm Hash digest
SHA256 7e644bcf32311beac226c5b0f4f00dc34d8fba5ae280e93f8a4f1b9d8f9ee84e
MD5 c9ba8cb2515f94a67b586d22927bfb6d
BLAKE2b-256 0b820776a82242e2dccfed3aa6291e8d4bfd6576d923c3c184f260bdfffd1d02

See more details on using hashes here.

File details

Details for the file kappaml-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: kappaml-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.12

File hashes

Hashes for kappaml-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 82e8b51f798a10ff2209f9d92cf7e1684312c71dd1e91253129c1ef1f0bbac93
MD5 949ecea0be93dab3e620f2bf0a5102b4
BLAKE2b-256 f4bfb91e1490156df3836c43b1e89445c9867d9dd16729506033709a43130286

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page