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.2-cp312-cp312-win_amd64.whl (885.9 kB view details)

Uploaded CPython 3.12Windows x86-64

atabet_data-1.0.2-cp312-cp312-win32.whl (784.9 kB view details)

Uploaded CPython 3.12Windows x86

atabet_data-1.0.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

atabet_data-1.0.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (995.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

atabet_data-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl (982.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

atabet_data-1.0.2-cp311-cp311-win_amd64.whl (907.7 kB view details)

Uploaded CPython 3.11Windows x86-64

atabet_data-1.0.2-cp311-cp311-win32.whl (800.6 kB view details)

Uploaded CPython 3.11Windows x86

atabet_data-1.0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

atabet_data-1.0.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

atabet_data-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl (986.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

atabet_data-1.0.2-cp310-cp310-win_amd64.whl (908.9 kB view details)

Uploaded CPython 3.10Windows x86-64

atabet_data-1.0.2-cp310-cp310-win32.whl (804.2 kB view details)

Uploaded CPython 3.10Windows x86

atabet_data-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

atabet_data-1.0.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

atabet_data-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl (991.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

atabet_data-1.0.2-cp39-cp39-win_amd64.whl (912.8 kB view details)

Uploaded CPython 3.9Windows x86-64

atabet_data-1.0.2-cp39-cp39-win32.whl (807.8 kB view details)

Uploaded CPython 3.9Windows x86

atabet_data-1.0.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

atabet_data-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

atabet_data-1.0.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

atabet_data-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl (998.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: atabet_data-1.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 885.9 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3a4fba789810794dc8469563c22d2092db69265e9b4c0ae35a455d6db4ddcb9
MD5 9c20d5f105b86e7b6725c51ef9d33345
BLAKE2b-256 66eb3776d856e31005a433c8fb1eeebf5925fc638d7666433d91f179b459c70e

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 784.9 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6886d279c511daaebd597fa7b482c576747b9680e4103f63441db0d8eac373be
MD5 c0c6dc4b98aa887fc8f0f86f52603edd
BLAKE2b-256 cd71d28d726e6d0232bc221aa08fc1f2ae6bce812fef38e3b331d6494e4dc13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0bb6e660dbb5bdbe00668d1120cbb5852f4902b52a83f7c70821165fa67411f
MD5 c487475af42d36e927dc530a464d4503
BLAKE2b-256 464829f5553376e059079bf1692fe2287c60dc255084551ea0e3b184fdda6085

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e78b8ece0494acc07c60a7ccb45e5c3db0476c2dd1848a840c1c41dc00902129
MD5 2f87724ce620446134be09e5c896a570
BLAKE2b-256 a115299cbb4740dff860038547280d377e625131661d5ae81f3a49dcfee7c810

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c10ae48e21139a07cc4eb78df06f77d713d199a818e710e94afc3ece5f533e68
MD5 5f609f77e530cffa01ebebe0a4448a41
BLAKE2b-256 ac7e8bcf63836e05fe5d3cb1d45f231d6c13aea72cd7300f75066ce07f229b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d81572e5e133b6334b99e89e5b3fc56dfb21961e81e8638002367471cc499db6
MD5 243dfbc216d07487987cacc5c8fd6df9
BLAKE2b-256 399eb6d9196f64c948d1f8f586db278703296ac5e9540db94ef83614f87b61be

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58b05952fc48a07fb0705e981cbff1fc7ceaac20ad3b3bd8ca37d879a4b2a2d9
MD5 3825e43c5081fa9767b7c2da14d0e97a
BLAKE2b-256 ce16cb36b26ef7e1eec525a7b83e86010a118eaf2456bb98274dcde3c21304fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7ea27ee80cf6b7a674b82886dc81c478ade04dd9c40eb79554c150b5b6aff7ff
MD5 e5bac0cf7a4973f2d590ac725b48afac
BLAKE2b-256 e63f83769528264212cd73e3a5639cc86fafef9d166ec42479a8905632247ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 907.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b54b8cbab6ecf05092ad6fa4ba30ea7259b2f5a052152404e7ed37caf70dcceb
MD5 7289e049529392865e956591e139f214
BLAKE2b-256 a4b455c463d96ca6fdd34db09968e745ec0313a670daa36c1bb5bbea1d662a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 800.6 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c317a942dfe9b92b538a6d824a08571d359d7c6592eba75011447ca022ff7679
MD5 87dc2f76a23232b4145c802643d5f69c
BLAKE2b-256 5529af6fd58cf84a6f7be4cbaa81f2cbfd1ab581eb6aacd2a66802f344d972b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97f59faf9b1127cef7bd454cbbdd1868cdf8cc359773656ff588685390e501c2
MD5 7cc8ca1e8d9550bf3bc3710c4df1e33a
BLAKE2b-256 c77700f85279b9a397b4553c8b61a9351c98e7c2fdaaa7f447b63a08dca6b939

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8798a2cf778e2649cd849d79c3b805813271358e0f59ed62bb453ef46aa2e37
MD5 9813b5447cc84803d8c72b1a50548b16
BLAKE2b-256 3209d09ce77b27bb3253d00eda03d0c8e805858ae36f83b97eef937aeba324e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8a54d9f1a8dc74610d8de385d5001102a2a694209ff739f4b6f3c6e184ea93
MD5 f1ecc8ed9288942afa6b0c1d071351a4
BLAKE2b-256 aa8e4bafade80c4947b8e629701a23abb03a9709fe32dfbff68b7d700920ad39

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 659298c75254171c2b42c778b30d609069fb3676a879b84f7606be1f67b5ca16
MD5 8c8e14ec1997c232416b939335fbc5f3
BLAKE2b-256 e8d3c7db0ad69f040ef105bc2e286f9705eeaab3e9383757a71a87e64965e24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96629fc5b50b86284b20fefa113ea10c6085255210dd0cc30d42a29f550c664e
MD5 10059fc6b86cf411a644b44c1b44915f
BLAKE2b-256 d32c6dfa599b1627d3603f8b82dfe31d3c07ac3f0584d339d2afab58100ceaba

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85fa0ae9ca5e6deef2ee3647e7c6dc64fbcb98f3c9f99bbfffb26cda5be0ddf7
MD5 9c6e78c8c342f4e9b02452a68e02a5eb
BLAKE2b-256 193a4a004b17cedab195d9a7be6eec0fa6edd614c1a27dd1ba52aabb9cb0089e

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 908.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97927ebf4b43dd4318dece4bec7b505053620ca1644fd00cdaca1d9219817452
MD5 be43f38622c0311d71d7d6cf4cf6f7bf
BLAKE2b-256 04bb9591cdeb40de7154d0b00d8a01d00980a641c9ac2ea2595ca882e0e8fce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 804.2 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ffda65013fe9fffb8216e68d188181651d1df90f28d93342b88b86b88ee3b577
MD5 c9124b0647916e9aaf9111bdc33a7ffc
BLAKE2b-256 791eb0adce37c02fad678acf1f54998ecfa5e2cc3c2b01f58d7f69175c8aeb90

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567dad0de982865888c6288c0e8e136e3e1555b9b3519c0535b8a971984dd09f
MD5 379120e4bc0c07843544b4f3897c12ff
BLAKE2b-256 9bdf685db14f6af74a28047be3e661e27a07a51364dd6258084f8bfc3cc284d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3ea356d360d64d13b8a7e77c64a7507498207415f4788bc4952c3ebbb8f3460
MD5 4867aacfea02a01cfe3a0417bc7666dc
BLAKE2b-256 4e2776851fee134a92ed8806cee292e103fe2a0cd5d5116a16055d122a134cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d2e442cb7f905de072629d964b078f2bd62a394e7dd935fd71c139626b4352
MD5 60cf7b57ad1d250ed92a4dabaa5bc18b
BLAKE2b-256 2e54246136bcaf674e99c643316c564c75f6d188d83aa10d76fb1cbe46712179

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-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.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7e295117a5a25056dc85cae3079fc4be50deca7fc5288b1d3440280eb800548
MD5 f1430bdfcfe6a1151906f1ad661b178d
BLAKE2b-256 8f65172ed62603fa1cf54fdf166f1d6bf3d4a3f7f5e85e44f63b226bd769b02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd583d9a05ebcd71be7b45c9c14a95639e8d06a4a992d682e41b31b6bff2c308
MD5 7f696c6afdcee6b2adca604b8b87ff4c
BLAKE2b-256 1e7864f21ff73fc9b62381241fa846f5ba739699f996eb89d995a87b5c81406b

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78f908fb1747b4357fca8d6ca1c8ecba8cd15d53718cc45d0321f6ae178a0b72
MD5 3ad897b9a6836abd0abca3b68170c32b
BLAKE2b-256 56c03f94adf83a30ddbfd1741d71361deb1fadf3dbcd26b8866db81984340c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 912.8 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 626565fed430e537dfc3509c1f20aad1227e05eed2715ad463067b8d4421f839
MD5 13d3d01e984e1208b076f3b145009a54
BLAKE2b-256 a7c191c0b89f1feb5146dd660ff2f05d85ca2177db3019766e46e9d63c2dbbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: atabet_data-1.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 807.8 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5ce4795cca9a5ad5e4892a2c6f616653bf6440cf40039ee74975a30f3544ef3b
MD5 bfea690ce87705b1d3ad1c3d9621dd99
BLAKE2b-256 e78df6203daa1e252f46d0884bf474e67ca03fcc6b33b88f78453069341b5396

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0c697ec70c29bb96206722a4a3702af35ec6e96dfe9c77f4919fcbdb12bf47c
MD5 e7c3b52fd5dbc316fea8f4055c61df4d
BLAKE2b-256 eeefd1f9221c0956b92a23d8fc6c42fd52392ac46d62d005f09ce522e98f74e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 347500f1423c5b17749339d6bb529c28ddcb68f1b801f508cd01f1eca650d9b3
MD5 69cb525fae28de88a8516ab69037b72a
BLAKE2b-256 682a6609403f37050dad90b90eda40253b6e2a10a85e5f841c98d4c7a05a64d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9362cb9cd2040b87dca4e45042f94df678bb846b2a32f728b13cc1b045bd8300
MD5 0ea51d28fe84be2e4e1380007ecede9b
BLAKE2b-256 59ff830e1f53c1eef3ba2e391308017e1723f694d8f68fb9fe49b7e4e16a2102

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-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.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 702379d9bfb9f185120e7ba2347048cc591fa6956100f6380d5c63b20d7518a3
MD5 bee899ce2680e7fab5b2fd301a136ace
BLAKE2b-256 257eab60aab34ae85760e1a771ef2af5adc02692a0638d117f323ea6ee91ed64

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c4d02c8a5cd7c5c4ecee7ed37c633f69bea669e33c90366683994e7aa0d2b78
MD5 29b9093a3afc7d267220baea12c6724a
BLAKE2b-256 fee61d41803a223ac89277e48b60f476a0a612b4db4e90fdca93e05d0ae9ae66

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a8c9264675595c919ab0dfacab15e196fe7830f39042a4ee60d9d0dd4e30c2c
MD5 cda2998bf4a227d85bb4064aa9ad6cd0
BLAKE2b-256 acaaff3d50304b5a8c10cd87a4f0b1b8fcfa503f4ff6fc87cb592224f364b2e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.2-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