Python SDK for Snowtrail Research API - commodities intelligence for systematic trading.
Project description
Snowtrail Python SDK
Python SDK for the Snowtrail Research API - commodities intelligence for systematic trading.
Installation
pip install snowtrail
Verify your setup:
python -m snowtrail.check_setup
Quick Start
from snowtrail import Snowtrail
# Initialize the client (uses SNOWTRAIL_API_KEY env var if set)
client = Snowtrail(api_key="your-api-key")
# Get latest GBSI-US system stress signal
df = client.gbsi_us.system_stress()
print(df)
# Get historical data
df = client.gbsi_us.system_stress(
date_from="2024-01-01",
date_to="2024-12-31",
limit=500
)
All endpoints return a pandas DataFrame by default.
Client Overview
The SDK is a thin wrapper around the REST API with no business logic:
- Typed accessors for each product (
client.gbsi_us,client.pemi, etc.) - DataFrame responses for easy analysis and backtesting
- Automatic retries with exponential backoff for transient errors
- Environment-based auth via
SNOWTRAIL_API_KEY
The client maps directly to API endpoints - what you see in the API docs is what you get.
Authentication
Set your API key via environment variable (recommended):
export SNOWTRAIL_API_KEY="your-api-key"
from snowtrail import Snowtrail
# Automatically uses SNOWTRAIL_API_KEY
client = Snowtrail()
df = client.gbsi_us.system_stress()
Or pass it directly:
client = Snowtrail(api_key="your-api-key")
Products
| Product | Description | Primary Signal | Frequency |
|---|---|---|---|
gbsi_us |
US Natural Gas Balance Stress Index | system_stress() |
Weekly |
gbsi_eu |
EU Natural Gas Balance Stress Index | system_stress() |
Daily |
pemi |
Power Event Market Intelligence | grid_stress() |
Event-driven |
glmi |
Global LNG Market Intelligence | marginality() |
Monthly |
wrsi |
Weather Risk Signal Intelligence | forecast_stress() |
4x daily |
wssi_us |
Weather Storage Shock Index | demand_shock() |
4x daily |
Return Types
All data endpoints return a pandas DataFrame by default:
df = client.gbsi_us.system_stress()
# Returns: pandas.DataFrame with columns like week_ending, stress_regime, etc.
For raw JSON responses (including metadata), use _get_raw():
response = client.gbsi_us._get_raw("system_stress", latest=True)
# Returns: {"product_id": "gbsi_us", "table": "...", "data": {...}, "metadata": {...}}
Usage Examples
GBSI-US (US Natural Gas)
# Signals
df = client.gbsi_us.system_stress()
# Features
df = client.gbsi_us.balance_momentum()
df = client.gbsi_us.storage_inventory()
df = client.gbsi_us.supply_elasticity()
df = client.gbsi_us.features()
# Events
df = client.gbsi_us.storage_surprise()
df = client.gbsi_us.regime_shift()
GBSI-EU (EU Natural Gas)
# Filter by country
df = client.gbsi_eu.system_stress(country="DE")
df = client.gbsi_eu.composite(country="NL")
df = client.gbsi_eu.dispersion()
WRSI (Weather Risk)
# Filter by geography
df = client.wrsi.forecast_stress(geography="US")
df = client.wrsi.forecast_dynamics(region_type="state")
Historical Data
All endpoints support date range queries:
# Get history instead of latest
df = client.gbsi_us.system_stress(
date_from="2023-01-01",
date_to="2024-01-01",
limit=1000
)
Point-in-Time Queries (Backtest-Safe)
Use as_of to query data as it was known at a specific date:
# What did the system stress signal look like as of June 2025?
df = client.gbsi_us.system_stress(
date_from="2025-01-01",
date_to="2025-06-01",
as_of="2025-06-01"
)
Pagination
For large result sets, use cursor-based pagination:
response = client.gbsi_us._get_raw("system_stress", latest=False, date_from="2020-01-01")
while response.get("has_more"):
next_page = client.gbsi_us._get_raw(
"system_stress",
latest=False,
date_from="2020-01-01",
cursor=response["next_cursor"]
)
response = next_page
Retries and Timeouts
The SDK handles transient failures automatically:
- Retried errors: 429 (rate limit), 500, 502, 503, 504
- Retry attempts: 3 with exponential backoff (1s, 2s, 4s)
- Default timeout: 30 seconds per request
- Respects
Retry-Afterheader when present
# Custom timeout
client = Snowtrail(api_key="...", timeout=60)
Error Handling
from snowtrail import Snowtrail, AuthenticationError, RateLimitError, NotFoundError, APIError
client = Snowtrail(api_key="your-api-key")
try:
df = client.gbsi_us.system_stress()
except AuthenticationError:
print("Invalid API key")
except RateLimitError:
print("Rate limit exceeded after retries")
except NotFoundError:
print("Endpoint not found")
except APIError as e:
print(f"API error: {e}")
Low-Level Access
For direct API access, use the underlying HTTP client:
# Direct GET request (returns raw dict)
response = client._client.get("/gbsi_us/system_stress", params={"latest": True})
# Health check
client.health() # {"status": "ok"}
# List all products
client.products() # [{"id": "gbsi_us", "name": "GBSI-US", ...}, ...]
The client includes a User-Agent header (snowtrail-python/{version}) for debugging.
Examples
See the examples/ directory for Jupyter notebooks:
01_quickstart.ipynb- Basic SDK usage and product exploration02_signal_analysis.ipynb- Signal analysis and visualization workflows
API Reference
- Full API documentation: https://api.snowtrail.ai/docs
- Product documentation: https://docs.snowtrail.ai
Support
- Email: support@snowtrail.ai
- Documentation: https://docs.snowtrail.ai
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
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 snowtrail-0.3.0.tar.gz.
File metadata
- Download URL: snowtrail-0.3.0.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c68dcbcc5b9d60ac9ce4053da55ff52400063f2589438d45ae85078110f3f57
|
|
| MD5 |
f4007856cf6538ba553946bee8d95c40
|
|
| BLAKE2b-256 |
ffd5299d684b3fa569fe78b3332108ea164a5eadf71232b65d41c7bab22baa1e
|
File details
Details for the file snowtrail-0.3.0-py3-none-any.whl.
File metadata
- Download URL: snowtrail-0.3.0-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7380eb1443ea24e9550a5db90b9066037fe1ab328446d8401de05333c2683c61
|
|
| MD5 |
543135b8872e4c46fe9bc10a3702ded3
|
|
| BLAKE2b-256 |
ee63aabf1fb4130f06ee56a398b72d46d2093b890c38a0863c781d0547f8f48e
|