Atabet-Data: A data retrieval library for financial data from multiple sources
Project description
Atabet-Data
A data retrieval library for financial data from multiple sources with token-based authentication.
Authentication
Atabet-Data uses token-based authentication. Token authentication is mandatory for all API calls.
Using the AtabetData Class
All API access is through the AtabetData class, which validates authentication tokens:
from atabet_data import AtabetData
# Create client with a valid authentication token
client = AtabetData(token=your_token)
# Use the client to access data APIs
data = client.get_data(
tickers=['AAPL US Equity'],
flds=['PX_LAST'],
source='bql'
)
# All methods are available
historical = client.get_historical_data(
tickers=['AAPL US Equity'],
flds=['PX_LAST'],
start='2025-01-01',
end='2025-01-31',
source='bql'
)
Note:
- Token authentication is mandatory and validated when creating the
AtabetDatainstance - If an invalid token is provided,
InvalidTokenErroris raised during initialization - Once initialized, all methods can be called without additional authentication
- Contact the administrator to obtain a valid authentication token
Yahoo Finance (source='yahoo')
Install the optional extra (pip install atabet-data[yahoo] or pip install yfinance), then pass source='yahoo'. Tickers must be Yahoo symbols (for example AAPL, 700.HK, ^GSPC), not Bloomberg-style identifiers. Supported fields are PX_OPEN, PX_HIGH, PX_LOW, PX_LAST, and PX_VOLUME for snapshot and daily history. get_datasets, get_mem_weights, and run_query are not implemented for this channel.
Available Methods
The AtabetData class provides the following methods:
get_data()- Get current snapshot dataget_historical_data()- Get historical dataget_datasets()- Get datasets dataget_mem_weights()- Get index members weightsrun_query()- Run raw queries
Technical Analysis (ta accessor)
Atabet-Data ships with a built-in technical analysis module. Any OHLCV DataFrame
can compute indicators directly via the .ta accessor (no external dependency
required):
from atabet_data import AtabetData
client = AtabetData(token=your_token)
df = client.get_historical_data(
tickers=["AAPL US Equity"],
flds=["PX_OPEN", "PX_HIGH", "PX_LOW", "PX_LAST", "PX_VOLUME"],
start="2024-01-01", end="2024-12-31", source="yahoo",
)
ohlcv = df.ext.to_ohlcv("AAPL US Equity")
# Individual indicators
ohlcv.ta.sma(length=20) # Simple Moving Average
ohlcv.ta.rsi(length=14) # Relative Strength Index
ohlcv.ta.macd() # MACD (returns DataFrame with line/signal/histogram)
ohlcv.ta.bbands(length=20) # Bollinger Bands
ohlcv.ta.atr(length=14) # Average True Range
ohlcv.ta.obv() # On-Balance Volume
# Append results to the DataFrame
ohlcv.ta.sma(length=50, append=True)
ohlcv.ta.rsi(length=14, append=True)
# Batch: run a preset strategy (Common or All)
ohlcv.ta.strategy("Common")
# Or define a custom strategy
from atabet_data.ta.strategy import Strategy
my_strat = Strategy(name="Quick", ta=[
{"kind": "ema", "length": 9},
{"kind": "rsi", "length": 7},
{"kind": "bbands", "length": 20, "std": 2.5},
])
ohlcv.ta.strategy(my_strat)
Indicator categories
| Category | Indicators |
|---|---|
| Overlap | sma, ema, wma, rma, dema, tema, hma, vwap, hlc3 |
| Momentum | rsi, macd, stoch, roc, cci, willr, mfi |
| Trend | adx, aroon, psar |
| Volatility | true_range, atr, bbands, kc, donchian |
| Volume | obv, ad, adosc, cmf |
| Statistics | stdev, variance, mad, zscore |
| Performance | log_return, percent_return, drawdown |
Functional API
All indicators are also available as standalone functions:
from atabet_data.ta import sma, rsi, macd
sma(ohlcv["close"], length=20)
rsi(ohlcv["close"], length=14)
Custom indicators
Register your own indicators at runtime:
from atabet_data.ta.custom import bind, create_dir, import_dir
# Scaffold a directory tree, write custom modules, then import them
create_dir("~/my_indicators")
import_dir("~/my_indicators")
See samples/ta_example.py for a complete walkthrough.
Environment preparations
conda create -n py39_atabet_data python=3.9
conda activate py39_atabet_data
(py39_atabet_data_test) conda install conda-forge::cython
(py39_atabet_data_test) conda install anaconda::pandas
(py39_atabet_data_test) conda install anaconda::setuptools # Windows
Packaging
# Basic usage - will cythonize all .py files including __init__.py
python atabet-data/run_packaging.py
# Remove source files from the wheel
python atabet-data/run_packaging.py --remove-source
# Specify a different module name, version, or distribution directory
python run_packaging.py --module="my-module" --version="2.0.0" --dist-dir="dist"
# Combine options
python run_packaging.py --remove-source --module="my-module" --version="2.0.0"
Test
conda create -n py39_atabet_data_test python=3.9
conda activate py39_atabet_data_test
(py39_atabet_data_test) conda install anaconda::pandas
(py39_atabet_data_test) pip install jquant/atabet_data-1.0.0-cp39-cp39-macosx_10_15_x86_64.whl # (Mac OS/Linux)
(py39_atabet_data_test) pip install .\jquant\atabet_data-1.0.0-cp39-cp39-win_amd64.whl # (Windows)
(py39_atabet_data_test) pip install tushare --upgrade
(py39_atabet_data_test) python atabet-data/test.py
GitHub Actions: wheels and PyPI
Workflow: .github/workflows/build-wheels.yml. Wheels are built with cibuildwheel; options live in pyproject.toml under [tool.cibuildwheel].
When jobs run (push): the Linux / Windows / macOS matrix runs only if the head commit message includes one of:
| Tag | Effect |
|---|---|
[build ci] (or [Build CI], [BUILD CI]) |
Build wheels and upload per-OS artifacts; no publish. |
[pub pypi] (or [Pub PyPI], [PUB PYPI]) |
Build wheels, then publish merged wheels to PyPI (production). |
[pub test.pypi] (or [Pub test.pypi], [PUB TEST.PYPI]) |
Build wheels, then publish to TestPyPI. |
Plain pushes (no tag above) skip the matrix so CI does not run on every commit.
Manual runs: Actions → Build wheels → Run workflow runs the build matrix only; publishing is by push with [pub pypi] or [pub test.pypi] in the commit message.
Authentication (publish): the workflow uses Trusted Publishing (OIDC) by default — no API token in GitHub secrets. Register the GitHub repo and workflow file on each index (project Manage → Publishing). See the comment block at the top of build-wheels.yml for OIDC vs API-token options.
Private repositories are supported for OIDC the same as public ones.
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 Distributions
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 atabet_data-1.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 894.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a914a65604b77acba6f6c2ebe4e4bce59a09570918a0e6de1a805f16fea75db6
|
|
| MD5 |
85a93e245a326b763f2b4cb13a4b32e0
|
|
| BLAKE2b-256 |
1877e51efa9c7b6c8dcb07f304434a58e78c7c6153935f3b105e24cb437b8468
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-win_amd64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-win_amd64.whl -
Subject digest:
a914a65604b77acba6f6c2ebe4e4bce59a09570918a0e6de1a805f16fea75db6 - Sigstore transparency entry: 1280507367
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-win32.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-win32.whl
- Upload date:
- Size: 784.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71310ca6c95d0e759d74e42669db55129bd791bc86aa3a73b46bbd96868a4404
|
|
| MD5 |
d00426060a2802e731c79b8462338d9e
|
|
| BLAKE2b-256 |
b254e362843ae8de877130fa77869ba3e6dd0b0b8ecddf90f660c37ba4437a6f
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-win32.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-win32.whl -
Subject digest:
71310ca6c95d0e759d74e42669db55129bd791bc86aa3a73b46bbd96868a4404 - Sigstore transparency entry: 1280507261
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e8164d79cdde8ecc95db4fe9c62d5f3195652029def3a7c5f1df25c77689412
|
|
| MD5 |
24e5c2486b0b78e9fc8c7e82e421c174
|
|
| BLAKE2b-256 |
1fae0d18b2be35ea96f6b82b7e4214f421add246e1f2388e2cf8e36cc49963a3
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
1e8164d79cdde8ecc95db4fe9c62d5f3195652029def3a7c5f1df25c77689412 - Sigstore transparency entry: 1280507676
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8952131841761f9866e44a7dd5f2268a52fc0f3278f933bd020a0508ffbe9f9c
|
|
| MD5 |
eab91150ed76a1bbd319dbb9d6b9a133
|
|
| BLAKE2b-256 |
7d6ab165acfb9461faf182fc58af643723f93fc6e97140893b3cc58f5e309869
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
8952131841761f9866e44a7dd5f2268a52fc0f3278f933bd020a0508ffbe9f9c - Sigstore transparency entry: 1280507578
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
203825cbf3b98d9594af3d255a8d59e2f60c113ac1f509db2a29c2599ad7f168
|
|
| MD5 |
4ae12e1fc56b221f1f9df8a409ebe03d
|
|
| BLAKE2b-256 |
69c3be0e1ea37eefbaca6e2853a7f197b75deaaabab8033c560a89af112a7968
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
203825cbf3b98d9594af3d255a8d59e2f60c113ac1f509db2a29c2599ad7f168 - Sigstore transparency entry: 1280507450
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56255ed8164b356c74c323e61594fb890b57375b8f74762e0f09c3040cf59126
|
|
| MD5 |
c7ac785995709ed3735ebd4186886099
|
|
| BLAKE2b-256 |
2621422b8b438511a743252e71293e475948ef439e63b9d5400d5909864ddecd
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
56255ed8164b356c74c323e61594fb890b57375b8f74762e0f09c3040cf59126 - Sigstore transparency entry: 1280507536
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 965.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5f3a707a2238fb7de1283a2dc13fccfd8d9aced563958a5441e4b0bd9a2c4ce
|
|
| MD5 |
81a972b27745730e2677ed851d54bc37
|
|
| BLAKE2b-256 |
13d76a3afbc5179208a0a6fc59b81890b85080ff9e6054766592cf159925e9c8
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
f5f3a707a2238fb7de1283a2dc13fccfd8d9aced563958a5441e4b0bd9a2c4ce - Sigstore transparency entry: 1280507562
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 963.7 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
376d19bb515953f8e3dd50670b8e5639ae8aad94702d8209cbe76d64112412c4
|
|
| MD5 |
618ddc2705cd01b74aa0e0ecba8647b6
|
|
| BLAKE2b-256 |
a75789d7d2830dd13afb332d439b6a10a9bcbe98b8d86c919bd81bef562863dd
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
376d19bb515953f8e3dd50670b8e5639ae8aad94702d8209cbe76d64112412c4 - Sigstore transparency entry: 1280507478
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 920.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a7118df629e5dbde16eff6e1d4a6376aae701489f01e25ef2b364267c480013
|
|
| MD5 |
8aa4ba7ef8ef91cdb5bbe6b464486d30
|
|
| BLAKE2b-256 |
36bbae65939f36526d1391c49cc4eadeca2c1989a6df1c162296107975fc25f7
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-win_amd64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-win_amd64.whl -
Subject digest:
3a7118df629e5dbde16eff6e1d4a6376aae701489f01e25ef2b364267c480013 - Sigstore transparency entry: 1280507377
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-win32.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-win32.whl
- Upload date:
- Size: 807.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
207f555e9afc0fb8c0ce507efd5976c50408a483c6edd6ab5b32b03b260fb4f8
|
|
| MD5 |
199ef38f45724b01cc1483e0ab0da666
|
|
| BLAKE2b-256 |
6e6916745068fdf60a3c8c4306fbda049f2d92316e4ff75b392d9f8b95cf42e4
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-win32.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-win32.whl -
Subject digest:
207f555e9afc0fb8c0ce507efd5976c50408a483c6edd6ab5b32b03b260fb4f8 - Sigstore transparency entry: 1280507588
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48f456a9a84dcce0377a2bf5b98392269e5364b5a2ac4d96c9aca76c91c2dc74
|
|
| MD5 |
a87f5f30227e38042b7b99b89cdcf44d
|
|
| BLAKE2b-256 |
b7125d4f838784c98b6ed522a9580a77e905a2da17fe997b567507b1cbf772c9
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
48f456a9a84dcce0377a2bf5b98392269e5364b5a2ac4d96c9aca76c91c2dc74 - Sigstore transparency entry: 1280507491
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e3a3161d74b254fabf517b0409f4cada32372d0d80052a2de600a829680e207
|
|
| MD5 |
6a0f8dfa4bbc32eab2c2d6cbba7e59a5
|
|
| BLAKE2b-256 |
56dff91064096e85d14d1031519b57404dc576c01680abb7b9c79b886971854d
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
4e3a3161d74b254fabf517b0409f4cada32372d0d80052a2de600a829680e207 - Sigstore transparency entry: 1280507458
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3efe80cf3e9eeb713cbb8e7133d57056204809f3dd3eb02206eacdc713b0971
|
|
| MD5 |
ea03aa2fc593a29e3d51e336377d629d
|
|
| BLAKE2b-256 |
35e12447048f0a97d7284a63f409812a3920d1ccccc5093d5da1a94d0580b37b
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f3efe80cf3e9eeb713cbb8e7133d57056204809f3dd3eb02206eacdc713b0971 - Sigstore transparency entry: 1280507572
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d41439be30c9a92584dbd3716d90f5f9063ff9c0e6cbffaf48342a37f4cc31c
|
|
| MD5 |
6e52f76a338c6ba14d5567358510492c
|
|
| BLAKE2b-256 |
0890945f8f6eb28f498cac85a93fa1d5d556a4a221ab80d4dff1cc4f216abff9
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
1d41439be30c9a92584dbd3716d90f5f9063ff9c0e6cbffaf48342a37f4cc31c - Sigstore transparency entry: 1280507324
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 978.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68f1b1f2456d31c08bae3cdda43920a965ebb92834c4b567f7fbc1f47b449963
|
|
| MD5 |
15dceeffada477de99471973eb83019d
|
|
| BLAKE2b-256 |
e569443c803f60b3d715b14c83aa875fff976f8085eda99ac4fcf967228fe1af
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
68f1b1f2456d31c08bae3cdda43920a965ebb92834c4b567f7fbc1f47b449963 - Sigstore transparency entry: 1280507604
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 968.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bc8a7148612ff0c3a19c85ed4d42c92356a813ab5889969273db15374559c93
|
|
| MD5 |
6358b1ea0ebde74c206a8e680484d1bf
|
|
| BLAKE2b-256 |
0abb3d9aa79daf715502ecea704bd84e159ad53dfbddd8ef326286f613111ce9
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
8bc8a7148612ff0c3a19c85ed4d42c92356a813ab5889969273db15374559c93 - Sigstore transparency entry: 1280507390
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 917.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc9fddb1e574816252d7cbe35bcac1b4e18f6af85d1ded4fe45bc63da1fd5da
|
|
| MD5 |
e343dd8d04a0155135cc059b9f55b50a
|
|
| BLAKE2b-256 |
7bf641c075c9d86dfe05830d4359e0ce296d0062c05e8bc450cfc9424c714041
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-win_amd64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-win_amd64.whl -
Subject digest:
3dc9fddb1e574816252d7cbe35bcac1b4e18f6af85d1ded4fe45bc63da1fd5da - Sigstore transparency entry: 1280507423
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-win32.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-win32.whl
- Upload date:
- Size: 810.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4be7293c0199b83fac7320b79ed902c2da683ef30647c178ada0768e0a6a9bf
|
|
| MD5 |
9a70807950394ede89e07b9523eda75b
|
|
| BLAKE2b-256 |
3af2a5a059aa28bcde86e15c8c5f56b4a7ac367e4679eb4101e4a10c2e3b4f70
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-win32.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-win32.whl -
Subject digest:
e4be7293c0199b83fac7320b79ed902c2da683ef30647c178ada0768e0a6a9bf - Sigstore transparency entry: 1280507430
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42cc3624d621d21c00356b8a783269a05fa8bd1d0d2da14bfe135d201890e182
|
|
| MD5 |
bc2a58e79b0a004304f8acee963e2930
|
|
| BLAKE2b-256 |
c8755977a316cff952fbe15c96f855765b2b4cd8b54d5038084287d4fe6ab707
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
42cc3624d621d21c00356b8a783269a05fa8bd1d0d2da14bfe135d201890e182 - Sigstore transparency entry: 1280507634
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f95ce3d0ab45415ffaff2091626933bbd07dba43cee5a959a3d594651419f68
|
|
| MD5 |
67eaeab976ab6ca087791795b1978f0b
|
|
| BLAKE2b-256 |
52ed8c67e1c8b8ecabe4935c7af90298a096dc27060d0daac5b0d53eefe2cb74
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
8f95ce3d0ab45415ffaff2091626933bbd07dba43cee5a959a3d594651419f68 - Sigstore transparency entry: 1280507350
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e960323fa73de9fa1ca17bee80f4ae9a20c1f566e730323651e1fdb0f80f1bc7
|
|
| MD5 |
e6649e9c400ca6e02d1799cae128f2c2
|
|
| BLAKE2b-256 |
d1c8ddaf746e81ee1b6ff33a202d67c5b91098784f02167319778afca05f7dcb
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e960323fa73de9fa1ca17bee80f4ae9a20c1f566e730323651e1fdb0f80f1bc7 - Sigstore transparency entry: 1280507415
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3204a2cb08b644e91aeb23f0902a7256217a88eba20f4a496baf7d7f5e88ece
|
|
| MD5 |
2db16264be2b55dd7ea16182830ddd81
|
|
| BLAKE2b-256 |
ac707bf541d275d9c9ad54e421c7a11f132d741fcde601081392d31f2c05e1e6
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
d3204a2cb08b644e91aeb23f0902a7256217a88eba20f4a496baf7d7f5e88ece - Sigstore transparency entry: 1280507613
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 981.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
278ae6048fc40a5d1a854e2fe10e0d1496e284e9f5349b1d613b062890fcaa61
|
|
| MD5 |
538125c6bf1c17ce4d38b1198305890b
|
|
| BLAKE2b-256 |
c4073acfc7aace4079c8c55b9f166d5d1ca2d1b3432a45d9f21307908b04bd80
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
278ae6048fc40a5d1a854e2fe10e0d1496e284e9f5349b1d613b062890fcaa61 - Sigstore transparency entry: 1280507400
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 974.2 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87177d6524ad98b9d911dc0188973cc43bb0772cb5f91bf2e163f0b847c9d030
|
|
| MD5 |
7d8064e6a25996286d99c972cf2409bc
|
|
| BLAKE2b-256 |
8376ea815da725b36b853dde3abf37bbc410913e7769778cb667e60a8a615bf3
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
87177d6524ad98b9d911dc0188973cc43bb0772cb5f91bf2e163f0b847c9d030 - Sigstore transparency entry: 1280507356
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 922.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7351a9ebcf0683e7140fd9c9725ea0e0e7d3160fb209a696cb990cb322eeea83
|
|
| MD5 |
de5868fd262d2ddbf22ee82b9c951f45
|
|
| BLAKE2b-256 |
4538deb4df61f780859b449cf08f3274b2726ced9e8342855598f438dbfb88ae
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-win_amd64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-win_amd64.whl -
Subject digest:
7351a9ebcf0683e7140fd9c9725ea0e0e7d3160fb209a696cb990cb322eeea83 - Sigstore transparency entry: 1280507241
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-win32.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-win32.whl
- Upload date:
- Size: 814.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
847c84833a97fa7529bbab1a6cb4610ac9a36fbde35e28220c3d534d1bf5493f
|
|
| MD5 |
6cd7d840c56f45177ce12eb00905216e
|
|
| BLAKE2b-256 |
dbb265f10d9800cf44491c1eaa2244605e2c2e1f4970a33a313bb7ca2832aa3d
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-win32.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-win32.whl -
Subject digest:
847c84833a97fa7529bbab1a6cb4610ac9a36fbde35e28220c3d534d1bf5493f - Sigstore transparency entry: 1280507657
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
540f676a1a2ea5b068cc2a18d65f77d36aa9fffd6130c0280be429f62e42d0fd
|
|
| MD5 |
aafdc0972d7d28539d06e78cba5bb7ba
|
|
| BLAKE2b-256 |
a3f7757a30d6f1065fd2d15f8c5dc2ce7dc0659ff8e78e3aeed01d36bb24e779
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
540f676a1a2ea5b068cc2a18d65f77d36aa9fffd6130c0280be429f62e42d0fd - Sigstore transparency entry: 1280507509
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c6f74c7927d2c661a3e49078260ecb145cf7f5274e5f765e96efff3b5f87c36
|
|
| MD5 |
557af2848d80e21d1a7b2c3563ca3bd9
|
|
| BLAKE2b-256 |
50b6abc04fc950c1538ace25187ba87f1e9ab0d71c8f0611b4526d9c9705022b
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
1c6f74c7927d2c661a3e49078260ecb145cf7f5274e5f765e96efff3b5f87c36 - Sigstore transparency entry: 1280507177
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
494e070ae36babb5353b8849fb737397582280ba351143d7b4fdcc084c321632
|
|
| MD5 |
fa7aae8cf6ed91b16d4f6cb76a8129a4
|
|
| BLAKE2b-256 |
93428a297a7b0f4590e2fb57886dfeed34fa95b218e2a1ec8022586e995be435
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
494e070ae36babb5353b8849fb737397582280ba351143d7b4fdcc084c321632 - Sigstore transparency entry: 1280507307
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4939d23ecf9961abf331041e1bf25a6f7742ebe2071db635ca2a45d9c0f5fd48
|
|
| MD5 |
c063c22e58150b6cc46b3d3a25d3d92c
|
|
| BLAKE2b-256 |
2d0d64306d983527e79b775ea16352861e550a4cfcbaff6deaa9534fc6c2736e
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
4939d23ecf9961abf331041e1bf25a6f7742ebe2071db635ca2a45d9c0f5fd48 - Sigstore transparency entry: 1280507338
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 988.2 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cedd89a7b141b47266d4ea484ecbf4176afe2f3295a5c316180468227d58cc65
|
|
| MD5 |
9e204dacceaf59e730b7f8b5a46d8177
|
|
| BLAKE2b-256 |
2ef3ddee715d8c57438c4243e4b1d61990d33b83a0dbc3d9600f37dad7e1cacd
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
cedd89a7b141b47266d4ea484ecbf4176afe2f3295a5c316180468227d58cc65 - Sigstore transparency entry: 1280507292
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 980.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd06518d532eb27819c869b86d56894a843d136dc078f8452a3d1412f1b49552
|
|
| MD5 |
88370d124fdd31aadc6bfbb3d1302b09
|
|
| BLAKE2b-256 |
6b1651656596cdda28ad3aa1000e2f5e8d25c824b91a8134c3121ec5d1a81648
|
Provenance
The following attestation bundles were made for atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on josephchenhk/atabet-data
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
fd06518d532eb27819c869b86d56894a843d136dc078f8452a3d1412f1b49552 - Sigstore transparency entry: 1280507222
- Sigstore integration time:
-
Permalink:
josephchenhk/atabet-data@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/josephchenhk
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@59f9105a52b04c92dee1338d306a07fa314d7ae1 -
Trigger Event:
push
-
Statement type: