Python SDK for the Polaris market data API
Project description
Polaris SDKs
The official Rust, Python, and TypeScript SDKs for the Polaris API. Rust and
Python share one Rust engine; TypeScript is an independent Node.js and browser
package. All three distributions are named polaris-data, with Python
importing as polaris_data.
The workspace contains:
crates/polaris-data: public async and blocking Rust APIs.crates/polaris-python: private PyO3 extension module.python/polaris_data: typed, handwritten Python compatibility facade.typescript: TypeScript SDK for Node.js and browsers.
Documentation can be found at https://polaris.supply/docs
Install
Install the Python SDK from PyPI:
pip install polaris-data
If you use uv, install it into a project with:
uv add polaris-data
Or install it into the active environment with:
uv pip install polaris-data
Install the Rust SDK from crates.io:
cargo add polaris-data
Install the TypeScript SDK from npm:
npm install polaris-data
Python wheels always include the Rust core. CPython 3.9+ is supported through PyO3's stable ABI; there is no pure-Python runtime fallback.
Python 0.10 migration
The undocumented polaris_data.layout module and the underscore-prefixed
PolarisClient storage helpers have been removed. Snapshot layout, cache
management, and replay chunking now run in the shared Rust engine; use the
documented PolarisClient methods and dataset_root configuration instead.
Quickstart
from polaris_data import PolarisClient
with PolarisClient(api_key="polaris_key_your_key") as client:
row_count = sum(
1
for _ in client.replay(
source="binance",
market="BTC-USDT",
from_="2024-01-01T00:00:00Z",
to="2024-01-01T01:00:00Z",
)
)
print(f"Replayed {row_count} rows")
If api_key is omitted, the client reads POLARIS_API_KEY from the environment.
The equivalent async Rust workflow is:
use futures_util::StreamExt;
use polaris_data::{PolarisClient, ReplayQuery};
#[tokio::main]
async fn main() -> Result<(), polaris_data::PolarisError> {
let client = PolarisClient::builder().build()?;
let mut rows = client
.replay(ReplayQuery {
source: "binance".into(),
market: "BTC-USDT".into(),
from: Some("2024-01-01T00:00:00Z".into()),
to: Some("2024-01-01T01:00:00Z".into()),
allow_gaps: false,
})
.await?;
while let Some(row) = rows.next().await {
println!("{:?}", row?);
}
Ok(())
}
For synchronous Rust applications use
polaris_data::blocking::PolarisClient. It owns a Tokio runtime and returns
PolarisError::BlockingInAsyncRuntime when called from an active Tokio runtime,
instead of panicking.
PolarisClient API
PolarisClient is the main sync client for the SDK:
PolarisClient(
api_key=None,
base_url="https://api.polaris.supply",
timeout=30.0,
dataset_root=None,
)
Use it to inspect available data and query historical market data.
Discovery
| Method | Returns | Use case |
|---|---|---|
health() |
API health/status payload | Connectivity checks and startup validation |
catalog(source=None, market=None, q=None) |
Source/market metadata, including normalized instrument fields | Discover supported datasets, markets, instrument metadata, and time coverage |
Access patterns
| Method | Returns | Use case |
|---|---|---|
replay(source=..., market=..., from_=None, to=None, standard=True, allow_gaps=False, parallel=False) |
Iterator of historical events | Backfills, notebooks, and replay-style processing without materializing everything up front |
raw(source=..., market=..., from_=None, to=None, limit=1000) |
List of raw source payloads | Inspect exchange-native payloads and compare raw vs standardized schemas |
Standardized Data Schemas
| Method | Returns | Use case |
|---|---|---|
events(source=..., market=..., from_=None, to=None, allow_gaps=False) |
List of standardized historical events | General-purpose historical analysis when you want the normalized event stream in memory |
trades(source=..., market=..., from_=None, to=None, allow_gaps=False) |
List of standardized trade events | Trade-level analytics, execution studies, and derived bar calculations |
l2_snapshots(source=..., market=..., from_=None, to=None, allow_gaps=False) |
List of standardized orderbook snapshot rows | Order book reconstruction and microstructure analysis |
funding_rates(source=..., market=..., from_=None, to=None, allow_gaps=False) |
List of funding-rate point series rows | Perpetual funding studies and carry modeling |
mark_prices(source=..., market=..., from_=None, to=None, allow_gaps=False) |
List of mark-price point series rows | Basis analysis, mark tracking, and liquidation-related research |
ohlcv(source=..., market=..., from_=None, to=None, interval=..., format=None, allow_gaps=False) |
Aggregated OHLCV bars | Charting, bar-based strategies, and downstream TA workflows |
volume(source=..., market=..., from_=None, to=None, interval=..., allow_gaps=False) |
Bucketed trade volume series | Volume profiling and participation analysis |
vwap(source=..., market=..., from_=None, to=None, interval=..., allow_gaps=False) |
Bucketed VWAP series | Execution benchmarking and price smoothing |
volatility(source=..., market=..., from_=None, to=None, interval=..., method="log_returns", allow_gaps=False) |
Bucketed realized volatility series | Risk modeling and intraperiod volatility analysis |
bbo(source=..., market=..., from_=None, to=None, allow_gaps=False) |
Best bid/offer quote series | Spread tracking, quote analytics, and top-of-book monitoring |
depth_metrics(source=..., market=..., from_=None, to=None, depth_pct=0.01, slippage_notional=10000.0, allow_gaps=False) |
Derived depth, spread, imbalance, and slippage metrics | Liquidity analysis and market impact estimation |
For parameter details, response shapes, and end-to-end examples, see the Python SDK docs.
Local dataset storage
Standardized snapshots are stored under the shared Polaris app-data root so the Python SDK and CLI can reuse the same files. Legacy materialized day files are also recognized when present.
Default roots:
- macOS:
~/Library/Application Support/polaris - Linux:
$XDG_DATA_HOME/polarisor~/.local/share/polaris - Windows:
%APPDATA%\\polaris
Within that root, the SDK uses the same layout as the CLI:
<root>/
data/
daily/
tmp/
cache/
locks/
Standardized snapshot downloads are stored under:
<root>/data/<tier>/<source>/<market>/<YYYY-MM-DD>/<opaque-key>.jsonl.zst
The opaque key is the flat upstream snapshot identifier, for example:
standard-aster-ASTERUSDT-2026-06-01-00
which is stored on disk as:
<root>/data/standard/aster/ASTERUSDT/2026-06-01/standard-aster-ASTERUSDT-2026-06-01-00.jsonl.zst
Compatible materialized day files, when present, are stored under:
<root>/daily/<source>/<market>/<YYYY-MM-DD>.jsonl.zst
Pass dataset_root=... to PolarisClient(...) to override the root explicitly.
POLARIS_ROOT overrides the shared root globally.
POLARIS_DATASET_DOWNLOAD_DIR is still accepted as a deprecated compatibility override.
Snapshot-first replay
For standardized historical data, replay(...), events(...), trades(...), vwap(...), volatility(...), bbo(...), depth_metrics(...), l2_snapshots(...), volume(...), and default/tradingview ohlcv(...) now prefer /snapshots plus daily bulk /download?source=...&market=...&date=...&mode=json manifests, and reuse local snapshot files when they already exist:
from polaris_data import PolarisClient
with PolarisClient(api_key="polaris_key_your_key") as client:
for row in client.replay(
source="binance",
market="BTC-USDT",
from_="2024-01-01T00:00:00Z",
to="2024-01-01T01:00:00Z",
):
print(row)
If the requested standardized range cannot be satisfied from available standardized snapshots, replay(...), events(...), trades(...), vwap(...), volatility(...), bbo(...), depth_metrics(...), l2_snapshots(...), volume(...), and ohlcv(...) raise by default instead of falling back. Pass allow_gaps=True on standardized methods to return only covered data and receive a warning with the missing intervals.
Error handling
from polaris_data import PolarisClient, RateLimitedError, UnauthorizedError
client = PolarisClient()
try:
client.replay(
source="binance",
market="BTC-USDT",
from_="2024-01-01T00:00:00Z",
to="2024-01-01T01:00:00Z",
)
except UnauthorizedError:
print("API key is required")
except RateLimitedError as err:
print(f"Rate limited. Reset at: {err.reset_at}")
Tests
uv run pytest
cargo test --workspace
cd typescript && npm ci && npm run typecheck && npm test
Build and inspect the native Python wheel with:
uv run --with maturin maturin build --release
Python, Rust, and TypeScript are versioned independently. Python releases use
python-vX.Y.Z tags and publish polaris-data to PyPI; Rust releases use
rust-vX.Y.Z tags and publish polaris-data to crates.io; TypeScript releases
use typescript-vX.Y.Z tags and publish polaris-data to npm.
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 Distributions
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 polaris_data-0.10.0.tar.gz.
File metadata
- Download URL: polaris_data-0.10.0.tar.gz
- Upload date:
- Size: 56.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef21a2f950bef433afd560c384f70933379b564bfdcda04ccf38e741364c03cf
|
|
| MD5 |
f360ce2ac12cc51903c0215fed9a39f7
|
|
| BLAKE2b-256 |
d47f9a88609582e26d89225805a9cca36e9c01ac966d42b8564bb874b2455186
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0.tar.gz:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0.tar.gz -
Subject digest:
ef21a2f950bef433afd560c384f70933379b564bfdcda04ccf38e741364c03cf - Sigstore transparency entry: 2294530254
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9+, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9999c5d3a749237954109abdbe4d5e1b39bb132816ae893708f817781192fe6d
|
|
| MD5 |
b86b983c300a4c6c1f6a4303e14e6d7c
|
|
| BLAKE2b-256 |
0afaa98ccdbf24f0bd759a16e886e3ed0d5bfd607726acfc98215780cc4e0117
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-win_arm64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-win_arm64.whl -
Subject digest:
9999c5d3a749237954109abdbe4d5e1b39bb132816ae893708f817781192fe6d - Sigstore transparency entry: 2294530516
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d605468e7eb166c4f70d184a8e3f48a9f7684d756a6cee3b223f328029ca751f
|
|
| MD5 |
0c47c005b0d70bb155c39306ac675106
|
|
| BLAKE2b-256 |
fd6dfe5ad0794ee2b46ee034c6e8f744ccb33697f9859ac4d3cce499bb3fc83e
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-win_amd64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-win_amd64.whl -
Subject digest:
d605468e7eb166c4f70d184a8e3f48a9f7684d756a6cee3b223f328029ca751f - Sigstore transparency entry: 2294530393
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1967c908aa17a409b82f3c212cbacb480f9b2539be688a1877915b9842dd1eb
|
|
| MD5 |
0af65c45559af9f4a9ebf13d51ad59cf
|
|
| BLAKE2b-256 |
950db6af026bc2c83efd125131afa9900da3dc8ce8e1110620cf6fdb6b94850c
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-musllinux_1_2_x86_64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-musllinux_1_2_x86_64.whl -
Subject digest:
c1967c908aa17a409b82f3c212cbacb480f9b2539be688a1877915b9842dd1eb - Sigstore transparency entry: 2294530657
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
375a6fa85b645c3fffecc1fd03626f7c24c52c8f158751d642665bdac5c81959
|
|
| MD5 |
abaa983179628893cf707b97b7be5241
|
|
| BLAKE2b-256 |
f95b48b438aa771a9a018975a7b3c6ee32afe86b671d47c494e6bbbdd4d1a305
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-musllinux_1_2_aarch64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-musllinux_1_2_aarch64.whl -
Subject digest:
375a6fa85b645c3fffecc1fd03626f7c24c52c8f158751d642665bdac5c81959 - Sigstore transparency entry: 2294530769
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b77082e4974f9cd6cf91d3399ab74ee6ee8b0e9b0bfe3de9e104573564b96275
|
|
| MD5 |
228526d3aed8a58f1b9d786640ba512b
|
|
| BLAKE2b-256 |
07337f303d5ae39f1ce4232573c0499dcb3f4bc4a55ebc4cff16dd92a6c32df7
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b77082e4974f9cd6cf91d3399ab74ee6ee8b0e9b0bfe3de9e104573564b96275 - Sigstore transparency entry: 2294530317
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9522c82efc12f894dfdead6416a3df72ebb221633836a318f734645cf3ddc54
|
|
| MD5 |
f426af2f1600b4e64b4ec413883ca617
|
|
| BLAKE2b-256 |
2be28c110b7f539278825cbd25afeee43131593dd7b2946b1857216a1f916e6a
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c9522c82efc12f894dfdead6416a3df72ebb221633836a318f734645cf3ddc54 - Sigstore transparency entry: 2294530717
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c59cdf3ad3b9fc9bdfb683c6dc37dd5b903c381c9d696eaa4664fba521bb0787
|
|
| MD5 |
bb929e72dbf62d124059a901806502a1
|
|
| BLAKE2b-256 |
5468d634e9efe9d33c22a50f74cdd96f17f69623eb6022c1a04d5e578cfb2c62
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-macosx_11_0_arm64.whl -
Subject digest:
c59cdf3ad3b9fc9bdfb683c6dc37dd5b903c381c9d696eaa4664fba521bb0787 - Sigstore transparency entry: 2294530586
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type:
File details
Details for the file polaris_data-0.10.0-cp39-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: polaris_data-0.10.0-cp39-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aecee3d1734baaed638b0eb8038db6e5519e505d98893bef3718a0330bdb542b
|
|
| MD5 |
fab7eb04fb986a6c3c03ca71fd222eee
|
|
| BLAKE2b-256 |
00015aaf092846722b6212f401ace500226b036f3246d4515ff3bd1a6124bc83
|
Provenance
The following attestation bundles were made for polaris_data-0.10.0-cp39-abi3-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on polaris-data/sdks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polaris_data-0.10.0-cp39-abi3-macosx_10_12_x86_64.whl -
Subject digest:
aecee3d1734baaed638b0eb8038db6e5519e505d98893bef3718a0330bdb542b - Sigstore transparency entry: 2294530446
- Sigstore integration time:
-
Permalink:
polaris-data/sdks@fdd599f0cebfd885293e12f578f789405e7cacca -
Branch / Tag:
refs/tags/python-v0.10.0 - Owner: https://github.com/polaris-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@fdd599f0cebfd885293e12f578f789405e7cacca -
Trigger Event:
push
-
Statement type: