Thin HTTP client for the DRC Vantage platform API
Project description
drc-vantage
Thin HTTP client for the Vantage platform. Talks only to the Next.js API (VANTAGE_API_URL) with a global API key — never to Postgres or FastAPI directly.
Install
pip install drc-vantage
# or
uv add drc-vantage
Configuration
| Variable | Description | Example |
|---|---|---|
VANTAGE_API_URL |
Next.js API base (includes /api) |
http://localhost:3000/api |
VANTAGE_API_KEY |
Global platform API key (same as server API_KEY) |
your_api_key |
API_KEY |
Alias if VANTAGE_API_KEY is unset |
|
VANTAGE_ORGANIZATION_ID |
Optional org scope (X-Organization-Id) |
org_xxx |
VANTAGE_ORGANIZATION_SLUG |
Resolve org id from slug when id is unset | acme |
Classes
Client, Dataset, DataSource, DataSourceCategory, DataStorageSystem
Dataset lifecycle example
from vantage import Client, Dataset
client = Client(organization_slug="acme") # or organization_id="org_xxx"
dataset = Dataset(
client=client,
location={"schema": "marts", "table": "customer_success_nps"},
name="Customer Success NPS",
type="TABLE",
description="Qualtrics survey NPS summaries enriched with HubSpot contacts.",
chat_question_examples={
"en": ["What is the average NPS score by survey?"],
"fr": ["Quel est le score NPS moyen par enquête?"],
},
data_source_slugs=["qualtrics", "hubspot"],
storage_system_slug="postgresql",
)
result = dataset.register()
dataset.assign_to_team("customer-success", owner="owner@example.com")
result = dataset.analyze_and_check_alerts()
Individual steps:
dataset.register()
dataset.analyze() # Prefect — includes validations
dataset.check_alerts() # Prefect
dataset.analyze_and_check_alerts() # Prefect — preferred combined pipeline
Catalog register
from vantage import Client, DataSource, DataSourceCategory, DataStorageSystem
client = Client(organization_slug="acme")
category = DataSourceCategory(
client=client, slug="saas", name="SaaS", color="#3366FF"
)
category.register()
source = DataSource(
client=client,
slug="hubspot",
name="HubSpot",
category=category,
logo_url="https://example.com/hubspot.svg",
)
source.register()
storage = DataStorageSystem(
client=client,
slug="postgresql",
name="PostgreSQL",
kind="POSTGRESQL",
logo_url="https://example.com/pg.svg",
)
storage.register()
Architecture
drc-vantage → Next.js (/api) → FastAPI → vantage-compute / Prefect
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
drc_vantage-2.1.1.tar.gz
(10.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file drc_vantage-2.1.1.tar.gz.
File metadata
- Download URL: drc_vantage-2.1.1.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ced24836fd1bd77c084a10102000ddac668e82946f44e6415f561171c0fd2aab
|
|
| MD5 |
20cc250450d1507fad84697c6bbeca04
|
|
| BLAKE2b-256 |
e0b4748c81104c94402822746df7d8647614576018c2dd61e936c10e0dc11ded
|
File details
Details for the file drc_vantage-2.1.1-py3-none-any.whl.
File metadata
- Download URL: drc_vantage-2.1.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3ec41c46e4018ca53c75483cfa04cc48c3903ed540507449ad04309c8413a5
|
|
| MD5 |
df941ebb90404cf28b4cdf3f27b7bf09
|
|
| BLAKE2b-256 |
d3e5edf3a7306f39e25a315e581e35d493b07d906d45f75be7e613289211dae8
|