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

Uploaded CPython 3.12Windows x86-64

atabet_data-1.0.0-cp312-cp312-win32.whl (784.1 kB view details)

Uploaded CPython 3.12Windows x86

atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

atabet_data-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.6 MB view details)

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

atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (965.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (963.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

atabet_data-1.0.0-cp311-cp311-win_amd64.whl (920.5 kB view details)

Uploaded CPython 3.11Windows x86-64

atabet_data-1.0.0-cp311-cp311-win32.whl (807.8 kB view details)

Uploaded CPython 3.11Windows x86

atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

atabet_data-1.0.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (978.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (968.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

atabet_data-1.0.0-cp310-cp310-win_amd64.whl (917.7 kB view details)

Uploaded CPython 3.10Windows x86-64

atabet_data-1.0.0-cp310-cp310-win32.whl (810.8 kB view details)

Uploaded CPython 3.10Windows x86

atabet_data-1.0.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

atabet_data-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

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

atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (981.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (974.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

atabet_data-1.0.0-cp39-cp39-win_amd64.whl (922.1 kB view details)

Uploaded CPython 3.9Windows x86-64

atabet_data-1.0.0-cp39-cp39-win32.whl (814.5 kB view details)

Uploaded CPython 3.9Windows x86

atabet_data-1.0.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

atabet_data-1.0.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

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

atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (988.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (980.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Hashes for atabet_data-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a914a65604b77acba6f6c2ebe4e4bce59a09570918a0e6de1a805f16fea75db6
MD5 85a93e245a326b763f2b4cb13a4b32e0
BLAKE2b-256 1877e51efa9c7b6c8dcb07f304434a58e78c7c6153935f3b105e24cb437b8468

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 71310ca6c95d0e759d74e42669db55129bd791bc86aa3a73b46bbd96868a4404
MD5 d00426060a2802e731c79b8462338d9e
BLAKE2b-256 b254e362843ae8de877130fa77869ba3e6dd0b0b8ecddf90f660c37ba4437a6f

See more details on using hashes here.

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

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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e8164d79cdde8ecc95db4fe9c62d5f3195652029def3a7c5f1df25c77689412
MD5 24e5c2486b0b78e9fc8c7e82e421c174
BLAKE2b-256 1fae0d18b2be35ea96f6b82b7e4214f421add246e1f2388e2cf8e36cc49963a3

See more details on using hashes here.

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

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.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8952131841761f9866e44a7dd5f2268a52fc0f3278f933bd020a0508ffbe9f9c
MD5 eab91150ed76a1bbd319dbb9d6b9a133
BLAKE2b-256 7d6ab165acfb9461faf182fc58af643723f93fc6e97140893b3cc58f5e309869

See more details on using hashes here.

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

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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 203825cbf3b98d9594af3d255a8d59e2f60c113ac1f509db2a29c2599ad7f168
MD5 4ae12e1fc56b221f1f9df8a409ebe03d
BLAKE2b-256 69c3be0e1ea37eefbaca6e2853a7f197b75deaaabab8033c560a89af112a7968

See more details on using hashes here.

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

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.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56255ed8164b356c74c323e61594fb890b57375b8f74762e0f09c3040cf59126
MD5 c7ac785995709ed3735ebd4186886099
BLAKE2b-256 2621422b8b438511a743252e71293e475948ef439e63b9d5400d5909864ddecd

See more details on using hashes here.

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

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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5f3a707a2238fb7de1283a2dc13fccfd8d9aced563958a5441e4b0bd9a2c4ce
MD5 81a972b27745730e2677ed851d54bc37
BLAKE2b-256 13d76a3afbc5179208a0a6fc59b81890b85080ff9e6054766592cf159925e9c8

See more details on using hashes here.

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

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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 376d19bb515953f8e3dd50670b8e5639ae8aad94702d8209cbe76d64112412c4
MD5 618ddc2705cd01b74aa0e0ecba8647b6
BLAKE2b-256 a75789d7d2830dd13afb332d439b6a10a9bcbe98b8d86c919bd81bef562863dd

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a7118df629e5dbde16eff6e1d4a6376aae701489f01e25ef2b364267c480013
MD5 8aa4ba7ef8ef91cdb5bbe6b464486d30
BLAKE2b-256 36bbae65939f36526d1391c49cc4eadeca2c1989a6df1c162296107975fc25f7

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 207f555e9afc0fb8c0ce507efd5976c50408a483c6edd6ab5b32b03b260fb4f8
MD5 199ef38f45724b01cc1483e0ab0da666
BLAKE2b-256 6e6916745068fdf60a3c8c4306fbda049f2d92316e4ff75b392d9f8b95cf42e4

See more details on using hashes here.

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

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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48f456a9a84dcce0377a2bf5b98392269e5364b5a2ac4d96c9aca76c91c2dc74
MD5 a87f5f30227e38042b7b99b89cdcf44d
BLAKE2b-256 b7125d4f838784c98b6ed522a9580a77e905a2da17fe997b567507b1cbf772c9

See more details on using hashes here.

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

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.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e3a3161d74b254fabf517b0409f4cada32372d0d80052a2de600a829680e207
MD5 6a0f8dfa4bbc32eab2c2d6cbba7e59a5
BLAKE2b-256 56dff91064096e85d14d1031519b57404dc576c01680abb7b9c79b886971854d

See more details on using hashes here.

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

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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3efe80cf3e9eeb713cbb8e7133d57056204809f3dd3eb02206eacdc713b0971
MD5 ea03aa2fc593a29e3d51e336377d629d
BLAKE2b-256 35e12447048f0a97d7284a63f409812a3920d1ccccc5093d5da1a94d0580b37b

See more details on using hashes here.

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

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.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d41439be30c9a92584dbd3716d90f5f9063ff9c0e6cbffaf48342a37f4cc31c
MD5 6e52f76a338c6ba14d5567358510492c
BLAKE2b-256 0890945f8f6eb28f498cac85a93fa1d5d556a4a221ab80d4dff1cc4f216abff9

See more details on using hashes here.

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

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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68f1b1f2456d31c08bae3cdda43920a965ebb92834c4b567f7fbc1f47b449963
MD5 15dceeffada477de99471973eb83019d
BLAKE2b-256 e569443c803f60b3d715b14c83aa875fff976f8085eda99ac4fcf967228fe1af

See more details on using hashes here.

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

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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bc8a7148612ff0c3a19c85ed4d42c92356a813ab5889969273db15374559c93
MD5 6358b1ea0ebde74c206a8e680484d1bf
BLAKE2b-256 0abb3d9aa79daf715502ecea704bd84e159ad53dfbddd8ef326286f613111ce9

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3dc9fddb1e574816252d7cbe35bcac1b4e18f6af85d1ded4fe45bc63da1fd5da
MD5 e343dd8d04a0155135cc059b9f55b50a
BLAKE2b-256 7bf641c075c9d86dfe05830d4359e0ce296d0062c05e8bc450cfc9424c714041

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e4be7293c0199b83fac7320b79ed902c2da683ef30647c178ada0768e0a6a9bf
MD5 9a70807950394ede89e07b9523eda75b
BLAKE2b-256 3af2a5a059aa28bcde86e15c8c5f56b4a7ac367e4679eb4101e4a10c2e3b4f70

See more details on using hashes here.

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

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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42cc3624d621d21c00356b8a783269a05fa8bd1d0d2da14bfe135d201890e182
MD5 bc2a58e79b0a004304f8acee963e2930
BLAKE2b-256 c8755977a316cff952fbe15c96f855765b2b4cd8b54d5038084287d4fe6ab707

See more details on using hashes here.

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

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.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f95ce3d0ab45415ffaff2091626933bbd07dba43cee5a959a3d594651419f68
MD5 67eaeab976ab6ca087791795b1978f0b
BLAKE2b-256 52ed8c67e1c8b8ecabe4935c7af90298a096dc27060d0daac5b0d53eefe2cb74

See more details on using hashes here.

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

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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e960323fa73de9fa1ca17bee80f4ae9a20c1f566e730323651e1fdb0f80f1bc7
MD5 e6649e9c400ca6e02d1799cae128f2c2
BLAKE2b-256 d1c8ddaf746e81ee1b6ff33a202d67c5b91098784f02167319778afca05f7dcb

See more details on using hashes here.

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

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.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3204a2cb08b644e91aeb23f0902a7256217a88eba20f4a496baf7d7f5e88ece
MD5 2db16264be2b55dd7ea16182830ddd81
BLAKE2b-256 ac707bf541d275d9c9ad54e421c7a11f132d741fcde601081392d31f2c05e1e6

See more details on using hashes here.

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

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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 278ae6048fc40a5d1a854e2fe10e0d1496e284e9f5349b1d613b062890fcaa61
MD5 538125c6bf1c17ce4d38b1198305890b
BLAKE2b-256 c4073acfc7aace4079c8c55b9f166d5d1ca2d1b3432a45d9f21307908b04bd80

See more details on using hashes here.

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

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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87177d6524ad98b9d911dc0188973cc43bb0772cb5f91bf2e163f0b847c9d030
MD5 7d8064e6a25996286d99c972cf2409bc
BLAKE2b-256 8376ea815da725b36b853dde3abf37bbc410913e7769778cb667e60a8a615bf3

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7351a9ebcf0683e7140fd9c9725ea0e0e7d3160fb209a696cb990cb322eeea83
MD5 de5868fd262d2ddbf22ee82b9c951f45
BLAKE2b-256 4538deb4df61f780859b449cf08f3274b2726ced9e8342855598f438dbfb88ae

See more details on using hashes here.

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

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.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

Hashes for atabet_data-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 847c84833a97fa7529bbab1a6cb4610ac9a36fbde35e28220c3d534d1bf5493f
MD5 6cd7d840c56f45177ce12eb00905216e
BLAKE2b-256 dbb265f10d9800cf44491c1eaa2244605e2c2e1f4970a33a313bb7ca2832aa3d

See more details on using hashes here.

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

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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 540f676a1a2ea5b068cc2a18d65f77d36aa9fffd6130c0280be429f62e42d0fd
MD5 aafdc0972d7d28539d06e78cba5bb7ba
BLAKE2b-256 a3f7757a30d6f1065fd2d15f8c5dc2ce7dc0659ff8e78e3aeed01d36bb24e779

See more details on using hashes here.

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

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.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c6f74c7927d2c661a3e49078260ecb145cf7f5274e5f765e96efff3b5f87c36
MD5 557af2848d80e21d1a7b2c3563ca3bd9
BLAKE2b-256 50b6abc04fc950c1538ace25187ba87f1e9ab0d71c8f0611b4526d9c9705022b

See more details on using hashes here.

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

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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 494e070ae36babb5353b8849fb737397582280ba351143d7b4fdcc084c321632
MD5 fa7aae8cf6ed91b16d4f6cb76a8129a4
BLAKE2b-256 93428a297a7b0f4590e2fb57886dfeed34fa95b218e2a1ec8022586e995be435

See more details on using hashes here.

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

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.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4939d23ecf9961abf331041e1bf25a6f7742ebe2071db635ca2a45d9c0f5fd48
MD5 c063c22e58150b6cc46b3d3a25d3d92c
BLAKE2b-256 2d0d64306d983527e79b775ea16352861e550a4cfcbaff6deaa9534fc6c2736e

See more details on using hashes here.

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

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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cedd89a7b141b47266d4ea484ecbf4176afe2f3295a5c316180468227d58cc65
MD5 9e204dacceaf59e730b7f8b5a46d8177
BLAKE2b-256 2ef3ddee715d8c57438c4243e4b1d61990d33b83a0dbc3d9600f37dad7e1cacd

See more details on using hashes here.

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

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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for atabet_data-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd06518d532eb27819c869b86d56894a843d136dc078f8452a3d1412f1b49552
MD5 88370d124fdd31aadc6bfbb3d1302b09
BLAKE2b-256 6b1651656596cdda28ad3aa1000e2f5e8d25c824b91a8134c3121ec5d1a81648

See more details on using hashes here.

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

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