Docs Connectors

Connectors

Pull data directly from your warehouse, object store, or CRM into HyperNorm.

Snowflake

Warehouse

GA

BigQuery

Warehouse

GA

Redshift

Warehouse

GA

Postgres

Warehouse

GA

MySQL

Warehouse

Beta

S3 / GCS

Object Storage

GA

Salesforce

CRM

GA

HubSpot

CRM

Beta

CSV / Parquet

File Upload

GA

Don't see your source?

Build a custom connector with the HyperNorm Connector SDK. The SDK provides a typed Python base class that handles authentication, schema validation, and batching. Your connector needs to implement one method: fetch_records(config) -> List[dict].

Connector plugin examples and the full Connector SDK reference are on GitHub. For connector requests, open an issue or email us.

python: custom connector stub
from hypernorm.connectors import BaseConnector

class MyConnector(BaseConnector):
    def fetch_records(self, config):
        # return list of dicts
        return []

Request a connector

We prioritize connector requests from paying customers. Let us know what your stack looks like.