Skip to main content

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 AtabetData instance
  • If an invalid token is provided, InvalidTokenError is 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 data
  • get_historical_data() - Get historical data
  • get_datasets() - Get datasets data
  • get_mem_weights() - Get index members weights
  • run_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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

atabet_data-1.0.1-cp312-cp312-win_amd64.whl (884.8 kB view details)

Uploaded CPython 3.12Windows x86-64

atabet_data-1.0.1-cp312-cp312-win32.whl (783.8 kB view details)

Uploaded CPython 3.12Windows x86

atabet_data-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

atabet_data-1.0.1-cp312-cp312-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

atabet_data-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

atabet_data-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

atabet_data-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (979.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

atabet_data-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (977.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

atabet_data-1.0.1-cp311-cp311-win_amd64.whl (906.2 kB view details)

Uploaded CPython 3.11Windows x86-64

atabet_data-1.0.1-cp311-cp311-win32.whl (799.4 kB view details)

Uploaded CPython 3.11Windows x86

atabet_data-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

atabet_data-1.0.1-cp311-cp311-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

atabet_data-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

atabet_data-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

atabet_data-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (991.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

atabet_data-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (982.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

atabet_data-1.0.1-cp310-cp310-win_amd64.whl (907.4 kB view details)

Uploaded CPython 3.10Windows x86-64

atabet_data-1.0.1-cp310-cp310-win32.whl (803.0 kB view details)

Uploaded CPython 3.10Windows x86

atabet_data-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

atabet_data-1.0.1-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

atabet_data-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

atabet_data-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

atabet_data-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (994.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

atabet_data-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (988.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

atabet_data-1.0.1-cp39-cp39-win_amd64.whl (911.3 kB view details)

Uploaded CPython 3.9Windows x86-64

atabet_data-1.0.1-cp39-cp39-win32.whl (806.5 kB view details)

Uploaded CPython 3.9Windows x86

atabet_data-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

atabet_data-1.0.1-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

atabet_data-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

atabet_data-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

atabet_data-1.0.1-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

atabet_data-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (994.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file atabet_data-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 884.8 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

Hashes for atabet_data-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e11d442540e15ae11310ed9f5cd75abe1341c46f1ba00398e40849a85a7a15ff
MD5 7fc4a84c0c63d7804eec729bfc53d7c7
BLAKE2b-256 bac8668f89f27947bd06f0b99e03eb160e110e6cc9e555374014a219ffeb426c

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 783.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 05c2ab39c9876cfcff438eb66bcd7ce4bf4b251762d3dcb8f3844f906ca6ee84
MD5 2815587286c8f1007c523255f5337648
BLAKE2b-256 a37ce6f97e80acb98d20c59230f53edaa860124ede8bb175264813b518c291cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-win32.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5d2e68c900f079a5fae6fdd1406050ae5201f0b1b885956c294c9c2300c5366
MD5 e3c67f2def4879e1c918d4ef6168b450
BLAKE2b-256 81b1272dc89be4b014cb00096e4e7576f42eca767733da330a0b25132daa7252

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9614cc6246530d29e061475b81e88ff20b98f6846a63c12d8fec0312b9335be5
MD5 4cede3b2b2e9078091cf8f5e747de45e
BLAKE2b-256 07ac2567cb94f723e4e8642d7598422ec77c1d2940efe6f1699cbf88cd27c24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f17d951a42b3885fbc09f8e21fc425758a76c711a87413e51ec1e745d193c6a
MD5 5614480da6647ffe3078120a05bf4ba6
BLAKE2b-256 5e4ae72d2b6e8a80bb7c9b23f975517d644f842e5d9506b9980574a08cad0495

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f680f737e851ec4a055fbf83c14c082d5095ce98c67aaeff70c7ee5372cced6
MD5 fe437247bd94854217df2eb2d69876b1
BLAKE2b-256 2e37400970aa8a915d66ff89f227d26982fb5368d9e03ac8b1d35d27eadf66af

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a40ec24660f103ad00a311b1028fc95eba66ac0e613579fd503fdec38af0ada
MD5 c04932f529db376045df4026119cd524
BLAKE2b-256 a258b44ee02772cf6c2bc9b05e78b7823209e5ace30b2ae7b23c0377d0073f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c67d96f2115113aab39b19e103b0d0cd84753cbae6a5ecd49c0e4d0af9fd3f0
MD5 f4823ca12f85488db21c99a3e3d2c60e
BLAKE2b-256 86d860554893c7cc81a4e0e55ec3907b004a49a43a64152455ebdd34c387e61b

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 906.2 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

Hashes for atabet_data-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8e49e5aa2b93659f3d8ae223720d860ae13f78241b9a0dcdcf2ab2a616b6242
MD5 233a0e547d794802c8c9ad5c63d14faa
BLAKE2b-256 11e1f7489f987c1bcd862eaa1a60363b87863dee9e24caca2342ca84d00b7cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 799.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9e4193489f2d1bce61c86c46236564308989794f4f995cb5f18a0626cac061e2
MD5 02b0da90776dc4230f677da8f28fce4c
BLAKE2b-256 edb4cef155e2738606cbcae919d01649f999ab0aa5b74f77cb6bc114f932f50b

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-win32.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a82f38bfd39255c8ac84253927a34a78379188c470fcab4b8d11425801e37ba
MD5 2a8697dc6483fd5e51eaf1b09fe69af6
BLAKE2b-256 295edd90ce5f5a1b4e2cc7447d05127cab466f152fdcc0ad033bc5ceabbe6d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4afdf55c31f2def2a48434a02de5e0b2c14591c517397b29fc9a11301926c890
MD5 8ff825921c1c0330694ae9a241caf221
BLAKE2b-256 0eaac38977690823ce46ff71adf249e10870583921fa04d7d1dbc933329dc0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 417309d209add0c3d47c801abe08b982b1ed1e7dfef818ec46fef47e4d94dd06
MD5 209ff8c4a5a0084532250c3befef2395
BLAKE2b-256 40c53a70acf4271a444495e545771337561ebc0c24c71ecb0c0fbbb99bad27cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1bdbfd94013a0a4f4d74430b9f4ee3a97842abd1f584e1c692d5ba99445256b7
MD5 6d11526b9d4be95c0bdc6b5985cf9aa6
BLAKE2b-256 ca67072f86daf50c105c27414839f3ba48020b09552bf1cb7a6d243543f24e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f90807ba1c9f79a301fd9e6187f0c8ec9447041503aafe8a0732c76fb20c7197
MD5 bc007eec34145e6f11ade28a7a76c594
BLAKE2b-256 d7b5dda86b710f88924983e8dd97de6e8a15ab460e38f06b37a0a652cd73f7b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4012c5f4210578aa382a6ac688608fdda2a5867a7916aca143865165a154c96
MD5 75e62856bb7a40b308ff4ba439dfccc0
BLAKE2b-256 a3bc4f5a7eadaedff191fa97a04a1a2a8d1472c9818482cf1a9b64693c27fd54

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 907.4 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

Hashes for atabet_data-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e0b88f65bc8ebe2581996035c694a71b356c25a9ef148ebd639027e54d6abb5
MD5 dba2edca9d0fc0b2282fac9e8da11c3a
BLAKE2b-256 ea59eff09b431aea769897ee5bb79f7e08a9337af0e20761a620dae6d2aa4995

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 803.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 98868a0d1642710d2981cc03c08bf05c40f8e9f4531863244ec303ac8cade862
MD5 3060b6a604f15458c43cf4c86104d595
BLAKE2b-256 20b397c8be3146e050ab1e77f454b4a2d37f4ad16e681ab95288ea5f8a570f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-win32.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0011bf068e4f106b983ec7fcf63b54256978684aff392107fa0299078369b1b
MD5 f1a1c2c5ba90cc91b9fc128b86ef8683
BLAKE2b-256 ba30403602157b02da5007bdd03f9dd1bf3639140a080ac24337974a9fcf60bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21f4a57a2906a0a4e0b5f40d516d7d5f7ff9a4a6c30e561e2f2fdbb26115fae3
MD5 6f1d707e5a794e78866cc09267d9d4c0
BLAKE2b-256 0b2e60484e5509f99d1b0770b7e7a2518012f791cf5aa9141951d4c0db6e6b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cbb980d2506baeb676aad8d299a59a434628802769739de287c3c025f1ff03a
MD5 f7ecbe7f067ca22c6e566bbdbdad2c30
BLAKE2b-256 a30ea92b15c8440d4cbebba4b875fec4253d682a4766fdbcac78aeab44fe2296

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e080cc3ebd9239c03b0354ce85187156f7fd86693f8909e8126f291784ebb483
MD5 87857e3d1aa72b5a9268bde939671504
BLAKE2b-256 f28e8e1d61d0b3ead63fbdcbcb392c48a7c0011b49cdc4665819c4720f0bea6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dfc59694ea84e30ce6a454b05c3e686c1dc2fc1283c02e98880e744df5ecde5
MD5 fbfedb949a62688646b093e1b81f2384
BLAKE2b-256 e37c8581862a063fd8ccbfcd1c6516655e09b15245d9622973472ca1b60a63fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e774e2982f37ff0f62d8151c81f5e9547bbc121e785a3fb890d033b66a49a1e5
MD5 c63bdf8b4659c117655435532184684d
BLAKE2b-256 e4f59598e1a1cb3485f473cb2325fb8746ef613e6b261114c1ded916f4989836

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 911.3 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

Hashes for atabet_data-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4bf01c6d8eb6a53d26a493ed7f9976641aa1f18010f7619d4bacb162e8929de4
MD5 953ba03996d610804c0d3b841dcf5547
BLAKE2b-256 e83780a88c7fe6f476c62d27755ac1365651daa01bdfe19bb0551c9e9878ba08

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-win_amd64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 806.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

Hashes for atabet_data-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5a42dcea90031a05efcc23d350ddfcdcfa70961a4e4a453d49b00f576a573008
MD5 e91048453a1fdbda2ad0e4096761ff11
BLAKE2b-256 870883ba94896c57da3b79a402d7aaa8d17b2399757aefe3655b19a233ecc1a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-win32.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b485e622ff311b9a888e275f4e4f7f1bc5ec2c173e79e3715ed3b9160a2c404
MD5 85c512b4b1273c1fd1d54aa7ec81052c
BLAKE2b-256 0693aca749946a49df4d2f0e50907b63d602da72656f8231f98b126104d6230e

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8ad6d9aa76b8c9d0e94e65d56aa4e064c8eb007f165fa4ab327a6f238f32122
MD5 1edb1521e99b87d36bd8ac4b816f9a15
BLAKE2b-256 cb56a435cfea7ec9df79661a323d57ced2ea7c652474bfb5faec19139b963c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7458838483c905a8f78fcd11ceadc3da8b5ef5286942b763c58036207b3229cf
MD5 ade9cd3d661d7c4dadd9b92f46c11b37
BLAKE2b-256 66d470ece629e638238c7ed9b45a36d3b2837f115cc9f52d9a490cd13a725196

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba815e4d928cc0502ce382df9bb45043d6723f5acd063ad77bec98a644714f46
MD5 6ed58438bfd643c96c61f5e63a29f95f
BLAKE2b-256 c696f2619798125e6f3fbfe08a042efbadb5937db1c4684cbe2a756cd08f156e

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a46683c48bb6cd074725a51025c8fc82491e78d356373ac641c99b47df724090
MD5 e31c2870f7f819face28ef93afdeb5e8
BLAKE2b-256 c91abc0a8dd1b2ba13075b27816453e826f95015748ce9ece8f8923b0f95db0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atabet_data-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d033b558e1f384227f2ae0239ea735b626e5a0d631630772ece7d6ba11846e58
MD5 c72fdaec9820aec2ebc9533346cac398
BLAKE2b-256 08840867414185ce5e29efc079c03fa541adf3c0955323826c02d735a458d63a

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on josephchenhk/atabet-data

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page