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

Uploaded CPython 3.12Windows x86-64

atabet_data-1.0.3-cp312-cp312-win32.whl (785.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

atabet_data-1.0.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (982.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

atabet_data-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl (979.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

atabet_data-1.0.3-cp311-cp311-win_amd64.whl (907.5 kB view details)

Uploaded CPython 3.11Windows x86-64

atabet_data-1.0.3-cp311-cp311-win32.whl (800.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

atabet_data-1.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (993.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

atabet_data-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl (984.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

atabet_data-1.0.3-cp310-cp310-win_amd64.whl (908.8 kB view details)

Uploaded CPython 3.10Windows x86-64

atabet_data-1.0.3-cp310-cp310-win32.whl (804.4 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

atabet_data-1.0.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (997.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

atabet_data-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

atabet_data-1.0.3-cp39-cp39-win_amd64.whl (912.7 kB view details)

Uploaded CPython 3.9Windows x86-64

atabet_data-1.0.3-cp39-cp39-win32.whl (807.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

atabet_data-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl (996.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: atabet_data-1.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 885.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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d66013d94a9d2b549f0fd42f5154c65355bcb3455e56391ae90dcb7c9cc58cc
MD5 c277921e33d1547088e82aa85699c3cb
BLAKE2b-256 3faf3f7d50a9f9023210ff30dd2673c625fac946bdf1bb6847484ab298e3468f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 785.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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6341c7493f5c161cfc21f0406aa094f29d7ccf6f33e4176289a42defd64bd2a7
MD5 bd7bf73bf7b2d7cf8f2a31fcee968d7b
BLAKE2b-256 143f4dd3a2e4f679a24058963718b7c03976f8df8b724efad2940fcc8d2a81de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a374b0b437e3280d6adc5b17c64d3e9fc935c6511ec8add6ff2479c2ae78d2bf
MD5 e40fdaf97ead23c5ed47ce9f1ab2330d
BLAKE2b-256 b631a2d6b909bd23edfaacb5d195efc80fbbc9e8e218067b075f3aeb7d1b0c8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 799e74dae2a2b1bd8294ec4a53844085b04ec80c2a57108a16f1a38bb8830414
MD5 9d008e073eef81c319739628a462aed9
BLAKE2b-256 f2c6893ff7140d05c49782b1757cb097c1f2c3d565c2505ab25adcfe2c6a30cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 865c603566b271d9b2e974ca5239d7f2eadfc99063891d875e58dcc34cc4db4a
MD5 126044a782a0f250030a4cb1814c4272
BLAKE2b-256 fb39b9b0aa1e7de652b594c55fe89053d608aa2a0877a997035a77eba8ac56c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.3-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.3-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.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f84070813a6256f7f9c9a9d551143d58b6a8b6e66c62b7d98cd2b33b01513048
MD5 9f7062e116fe46bf5a1f5cff7ac197d8
BLAKE2b-256 afb6994cfe850e0d88b4804c104c2e394013532e976e31f60dc396e7a3d0008e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ac6176f8fa68a2fcc2c2a53b369ff515a42f857cd55a619b06944f5c4a83072
MD5 984b52e73094ddb8f7aee20de04502d2
BLAKE2b-256 5a2e364b59031591f8e52dfda5c24f61ec4367d4f8bb593def4d45abbf4adb0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 242fd8c7af6f6e1c7b99eb11a343a06e21a2d57bc51c0c7546407e0685d637c5
MD5 403bd108a90a778c36cc24c937c15869
BLAKE2b-256 943817b11ba482ece6c9e5ba94e2f29dcf7ab020372e04952ef3c248dbb61c99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 907.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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4f9be34e00c53bc1f414ef85061df60e3a1c965a8c67a5f0a5f1bd98ab96e42
MD5 debadc113a944cb9074a6a83f5184903
BLAKE2b-256 a50bcbe7f2c39e724ed29f186b5bf2198cac91324102a2e57490aa10f7892b31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 800.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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f95c6914c8306b8de2cb36ce2353e625beeeb4853e00593615109dddb042e2fb
MD5 f871274f019f46781dda382157555652
BLAKE2b-256 a32a61ec0abb97749938680416049927ecff0df4eead2583a93b4ea134bebbec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24486b2dc7b3b88f77f1941ab30db596aa9031bd0372ba81e111fdc1ff322d7b
MD5 537fdb8d44779d189139ccef6b53d571
BLAKE2b-256 71a8f7acae74fd0e9f5eb920694147bedf7ef0cb79915fd4899c1cc5877b64ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 710da6cf5be3d50d57accc4bd79378be801805608a52e55cda1c776a543aa5f6
MD5 241361cfec2354436eba5bffa25c6983
BLAKE2b-256 81076a18466ba24fce1bea321ecd7f849181a0e72ae00d06462a08f258a244f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78f71852ad0662c63e554f46fd06cb7b0c55afca8421b249748765b3e305def9
MD5 fc25c1c0c09159f6993fba683aa6517e
BLAKE2b-256 7299b00dfc322eee507211195dea488cb1c7653527597c0a4a596146cc7c2635

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.3-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.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4586ad83b2e57a6ebfac4be25702d3a6d09957ad400e84bd0f2c4cf2b10a068
MD5 67d744099f543092ebb3910c347675ae
BLAKE2b-256 ebefbb35e92d99f2725d931430a9eb6f39666c96722f7141cfe70b46bc3135c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7ba2aa0d70c191574eefb904154911c936c058cc7e09fcf545eb4108c98164c
MD5 c78c54136957de28509097df530bc4fd
BLAKE2b-256 0a419246925625327a204703a89d515574439b6ac155c8fd59d1ef95a41abcbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09219e61ff008a80ec877f26aed3d6de22f094e557874e7ba5a288c192868e70
MD5 32adc8642b945436ff739d3328f43ad0
BLAKE2b-256 22c2e366f37844502a9c727713385e57ce89cafc9c4a515671e68a227ff92579

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 908.8 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0df0ff517e65e6e5dae5b30eac77a1121be6904db47cb956677e5053ddc976f
MD5 a6145676ac4457f35d3ff65e3490a793
BLAKE2b-256 a93ed6dea4515fd721402b7aca422813e773f81c0f4c5348b601e2bfdcddea4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 804.4 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 781a8fa4895e931af60b0aef7d70500a8120453bd2046334e2f1b0889947fe7a
MD5 4279fbeb2dbcbab088780a4b56b755a5
BLAKE2b-256 58f6513810ca8921917fef788d3ed52359a8cbad5a0c06053497475145aff804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d86852a269ddeb8bb45cb9ab6f24d398a45f65fafc608e9561ea07178be5915a
MD5 e48453e4ba9f2cb3aa8c53661473622a
BLAKE2b-256 f7924ab8f3fe6e72052d36b57138b82268ec9f7aeae945f34a971edab72a5769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0a94e81e6af287209fbf5c7b6753b451064ce95f7035c24e3aa00cc931f6ccc
MD5 bb9b0be82a17c6e97e2fbe71ef34e82c
BLAKE2b-256 1864ab37e9cbe745420263e3ec94b98e54e7dd58de425e2145a53b6edc0bdea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4490b1e82e195663abcbb2d537ede83e71c7b40f311bfce3824666b829ab3fb9
MD5 af2820290a93c0b1a848015b08044c76
BLAKE2b-256 94fa5d537eac8e76b99d402e79a59c48b3fe1f2bdd57da7fb19c45215267244c

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.3-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.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b90f8f3088c6263631057af610837ae5835721b6eb7722d2a083d8ce38cd5cf9
MD5 1ea5c1947dc358254bb6fb6cc10cb86a
BLAKE2b-256 7a0a2e8c04814ea2df33a449a44810a1bb15d9729a31ecaaa6375fe38e1ec1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efe7fd32e7ce7a040896904964dc612b1668d5d260330844259b23ecbf78ed60
MD5 abebff90389da5628c04cb5f058fdcb7
BLAKE2b-256 b6abf1f67d0bb7994f492ccff734e5660b5153fabff4d3b72428fadd3a01db63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b9c5eb4ab7ea607ce8349113567d240c8a2d78a729a6d887535c6028c3d3ef0
MD5 d5bb737ce42dc22b3231fbc91f17b167
BLAKE2b-256 2b2433d6bde8ff468588a2f9a79ae43f2f73459944272b19f343a0bdda5316af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 912.7 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4b805557a99b8ffaf6fed7c9477e16c48fef809876be960f206b0abddecf43fa
MD5 3844e5fc1942d1750217595462516ec4
BLAKE2b-256 4244093deb84c6018a815bf3bd1468b0af302603335b1095de63e9428f4e5431

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: atabet_data-1.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 807.9 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b881bd3b20cd5fd7b480d24db884ef84766f58d02f3bbeb809cfe205da5f4ab4
MD5 331c6edac350ce99fda24c325a3f8752
BLAKE2b-256 a1fc40f683bc44aeeaae7fcfc634d99f90c5ec13d103b6dc2905ec5fe623699a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36cd9a86fe801c6470e6c07dcc46a0ce3e52214d2c573bef37137c6b9c5dab11
MD5 7e8ac4b0ed29826ca72736dfe24d05de
BLAKE2b-256 38657c4ce8ddfba1880db1f7ee6493e459f393e8c1809e377c28818b7105075c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf02e72d6d32a07213e67c6d97e7905f42f818a3bfd1944d7e801aed6dbc2b31
MD5 019cf751b8f91c1ab70afc4702a2169e
BLAKE2b-256 c07166edac2f81c541ac057e50d53459d9771f7161f37367b3b9045a0da67bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c63530a08c1835e97df404a47d3989e36a282fb33a64e7115f396ce30ab7b5c4
MD5 6a0480f88af0f13cef29a016c4fcdd81
BLAKE2b-256 cf4be9047c7d5d0684e2ebb12120ec141d215b88f23059c32188ea3c960af770

See more details on using hashes here.

Provenance

The following attestation bundles were made for atabet_data-1.0.3-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.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a76264f4a20e2949980aa63b67d7350d666c63baaa03444bd7f65726a1b106d2
MD5 234f5cd90230e47470a6fc4c9d8b7717
BLAKE2b-256 02076a5569f19611eaa8f71e2ead339dce1f9bfbfb4f92ba138187beeb80b7a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9176674c3f613b384457330905479af74d906e62c6360db5871fdf16be6875a6
MD5 0b25cba0cf152853054b718d91a3b47d
BLAKE2b-256 4ddcc3e2af180910d32fe8714073bfd0effbacb549deccaa1c2965ee8d75e7fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for atabet_data-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e7301042e95e825910e955b73e03a478399526c0ab72b77d218502f6c746b05
MD5 30a441dc473be0056dc6fc1eed2fa206
BLAKE2b-256 ff31a10cd53d81689e59aba7991b2e6586a207943fe4cf9e78595146d9a386e8

See more details on using hashes here.

Provenance

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