Docs
Connectors
Connectors
Pull data directly from your warehouse, object store, or CRM into HyperNorm.
Snowflake
Warehouse
BigQuery
Warehouse
Redshift
Warehouse
Postgres
Warehouse
MySQL
Warehouse
S3 / GCS
Object Storage
Salesforce
CRM
HubSpot
CRM
CSV / Parquet
File Upload
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.