Skip to content

demospace-ai/python-sdk

Repository files navigation

Fabra Python SDK

Use the Fabra API to build customer-facing data warehouse integrations to let your customers start sending data to your application. Unblock your sales pipeline in days, not months.

SDK Installation

pip install fabra

SDK Example Usage

import fabra
from fabra.models import operations

s = fabra.Fabra(
    security=shared.Security(
        api_key_auth="",
    ),
)

req = operations.GetNamespacesRequest(
    connection_id=548814,
)

res = s.connection.get_namespaces(req)

if res.namespaces is not None:
    # handle response

Available Resources and Operations

SDK Generated by Speakeasy