Turbine GraphQL Python SDK (generated via ariadne-codegen)
Project description
Turbine Python SDK
Minimal, sync-first Python client for the Turbine GraphQL API.
Getting Started
Installation from PyPI
Install from PyPI as netrise-turbine-sdk:
# pip
pip install netrise-turbine-sdk
# poetry
poetry add netrise-turbine-sdk
# uv
uv add netrise-turbine-sdk
Configure environment variables
The SDK automatically loads environment variables from a .env file in your current working directory when you call TurbineClientConfig.from_env(). You can also set environment variables directly.
Option 1: Using a .env file (recommended)
Create a .env file in your project directory:
endpoint=https://apollo.turbine.netrise.io/graphql/v3
audience=https://prod.turbine.netrise.io/
domain=https://authn.turbine.netrise.io
client_id=<client_id>
client_secret=<client_secret>
organization_id=<org_id>
The SDK will automatically load these when you call TurbineClientConfig.from_env(). The .env file is searched in:
- Current working directory (most common)
- Parent directories (walks up the directory tree)
Option 2: Set environment variables directly
import os
os.environ["endpoint"] = "https://apollo.turbine.netrise.io/graphql/v3"
# ... set other variables
cfg = TurbineClientConfig.from_env(load_env_file=False)
Option 3: Disable automatic .env loading
If you prefer to load .env files manually:
from dotenv import load_dotenv
load_dotenv() # Your custom loading logic
cfg = TurbineClientConfig.from_env(load_env_file=False)
Populate the missing values. Reach out to mailto:support@netrise.io if you need assistance.
License
See LICENSE for details.
Documentation
- API Documentation & Code Samples - detailed examples for all client SDK operations.
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
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 netrise_turbine_sdk-0.1.4.tar.gz.
File metadata
- Download URL: netrise_turbine_sdk-0.1.4.tar.gz
- Upload date:
- Size: 55.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206d97e951011d17be2fa7b1baaa43f37a67b167910ddd5ef3f9d26667ef4dba
|
|
| MD5 |
3e7690aa18c8bf5dd66c42974a25cc8d
|
|
| BLAKE2b-256 |
600bd2c58491570ed951148d587626d78db7c7c8713dd341035dba2dc9a62ac1
|
File details
Details for the file netrise_turbine_sdk-0.1.4-py3-none-any.whl.
File metadata
- Download URL: netrise_turbine_sdk-0.1.4-py3-none-any.whl
- Upload date:
- Size: 93.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16ea7c21436ca74244bea423aab9723a97db106948d52be069e8ae12db516273
|
|
| MD5 |
9df25d1655879893ccc6abe7f444f3f7
|
|
| BLAKE2b-256 |
7369f3314f5a35701901f4e7fda9909ba58308f4109334700bd12f99cc6ddae0
|