Skip to main content

Fast Adaptable and Extendable Trees for Research

adaXT is a Python module for tree-based machine-learning algorithms that is fast, adaptable and extendable. It aims to provide researchers a more flexible workflow when developing tree-based models.

It is distributed under the 3-Clause BSD license.

We encourage users and developers to report problems, request features, ask for help, or leave general comments.

Website: https://NiklasPfister.github.io/adaXT

Overview

adaXT implements several tree types that can be used out-of-the-box, both as decision trees and random forests. Currently, the following tree types are implemented:

  • Classification: For prediction tasks in which the response is categorical.
  • Regression: For prediction tasks in which the response is continuous.
  • Quantile: For uncertainty quantification tasks in which the response is continuous and the goal is to estimate one or more quantiles of the conditional distribution of the response given the predictors.
  • Gradient: For tasks in which one aims to estimate (directional) derivatives of the response given the predictors. A related tree type is used in the Xtrapolation method.

Beyond these pre-defined tree types, adaXT offers a simple interface to extend or modify most components of the tree models. For example, it is easy to create a custom criteria function that is used to create splits.

Getting started

adaXT is available on pypi and can be installed via pip

pip install adaXT

Working with any of the default tree types uses the same class-style interface as other popular machine learning packages. The following code illustrates this for Regression and Quantile random forests:

from adaXT.random_forest import RandomForest
import numpy as np

# Create toy regression data
n = 100
X = np.random.normal(0, 1, (n, 2))
Y = X[:, 0] + np.random.normal(0, 1, n)
Xtest = np.c_[np.linspace(-1, 1, n), np.random.uniform(0, 1, n)]

# Task 1: Fit regression forest
rf = RandomForest("Regression")
rf.fit(X, Y)

# Predict on test data
Ypred = rf.predict(Xtest)

# Predict forest weight on X or Xtest
# -- can be used a similarity measure on the predictor space
weight_train = rf.predict_weights()
weight_test = rf.predict_weights(Xtest)

# Task 2: Fit a quantile regression
qf = RandomForest("Quantile")
qf.fit(X, Y)

# Predict 10% and 90% conditional quantile on test data
Ybdd = qf.predict(Xtest, quantile=[0.1, 0.9])

The main advantage of adaXT over existing tree-based ML packages is its modularity and extendability, which is discussed in detail in the documentation.

Project goals

This project aims to provide a flexible and unified code-base for various tree-based algorithms that strikes a balance between speed and ease with which the code can be adapted and extended. It should provide researchers a simple toolkit for prototyping new tree-based algorithms.

adaXT provides an intuitive user experience that is similar to the scikit-learn implementation of decision trees both in terms of model-based syntax and hyperparameters. Under the hood, however, adaXT strikes a different balance between speed and ease of adapting and extending the code.

Adaptable and extendable

At the heart of any tree-based algorithm is a decision tree that can be fitted on data and then used to perform some version of prediction. adaXT has therefore been designed with a modular decision tree implementation that takes four input components:

  • Criteria class: Used during fitting to determine splits.

  • LeafBuilder class: Used during fitting to specify what is saved on the leaf nodes.

  • Splitter class: Used during fitting to perform the splits.

  • Predict class: Used after fitting to make predictions.

By specifying these four components a range of different tree algorithms can be created, e.g., regression trees, classification trees, quantile regression trees and gradient trees. Additionally to this modular structure, all other operations are kept as vanilla as possible allowing users to easily change parts of the code (e.g., the splitting procedure).

Speed

As tree-based algorithms involve expensive loops over the training dataset, it is important that these computations are implemented in a compiled language. adaXT implements all computationally expensive operations in Cython. This results in speeds similar (although a few factors slower) than the corresponding scikit-learn implementations. However, due to its modular structure and the avoidance of technical speed-ups, adaXT does not intend to provide state-of-the-art speed and users mainly concerned with speed should consider more targeted implementations.

Download files

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

Source Distribution

adaxt-1.5.0.tar.gz (35.6 kB view details)

Uploaded Source

Built Distributions

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

adaxt-1.5.0-cp313-cp313-win_amd64.whl (814.2 kB view details)

Uploaded CPython 3.13Windows x86-64

adaxt-1.5.0-cp313-cp313-win32.whl (677.5 kB view details)

Uploaded CPython 3.13Windows x86

adaxt-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

adaxt-1.5.0-cp313-cp313-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

adaxt-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

adaxt-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

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

adaxt-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (866.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

adaxt-1.5.0-cp312-cp312-win_amd64.whl (817.2 kB view details)

Uploaded CPython 3.12Windows x86-64

adaxt-1.5.0-cp312-cp312-win32.whl (679.5 kB view details)

Uploaded CPython 3.12Windows x86

adaxt-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

adaxt-1.5.0-cp312-cp312-musllinux_1_2_i686.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

adaxt-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

adaxt-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

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

adaxt-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (878.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

adaxt-1.5.0-cp311-cp311-win_amd64.whl (820.0 kB view details)

Uploaded CPython 3.11Windows x86-64

adaxt-1.5.0-cp311-cp311-win32.whl (682.5 kB view details)

Uploaded CPython 3.11Windows x86

adaxt-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

adaxt-1.5.0-cp311-cp311-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

adaxt-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

adaxt-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

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

adaxt-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (869.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

adaxt-1.5.0-cp310-cp310-win_amd64.whl (819.2 kB view details)

Uploaded CPython 3.10Windows x86-64

adaxt-1.5.0-cp310-cp310-win32.whl (685.4 kB view details)

Uploaded CPython 3.10Windows x86

adaxt-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

adaxt-1.5.0-cp310-cp310-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

adaxt-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

adaxt-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

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

adaxt-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (868.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file adaxt-1.5.0.tar.gz.

File metadata

  • Download URL: adaxt-1.5.0.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0.tar.gz
Algorithm Hash digest
SHA256 a8242ee692ee190063971a2b5b31e16d834549d78df6580216784b83b636d3f0
MD5 b2ba071d6c229b1ea5ed448a317f3308
BLAKE2b-256 1a2abcf926d3414a8c897160383a0eef4096d64b0eba2aa0e0465440f7983178

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0.tar.gz:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 814.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e4d6793981d99b2b1057d043604c7ec9b54d2808852b9e0c3a10f8562fac72f
MD5 09005ea1d57796d084c82e8edbfd1ba9
BLAKE2b-256 17386cb7e83f809e5651906f6be861df0e2115c6f793b58a5bbcc6729abfa403

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 677.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 969af66e903eaf79c63c2fdc9de26f91b227195d45f5d1e8575e5d63c64df415
MD5 054d612bb35ade780a2ae80bf4006469
BLAKE2b-256 e2b963abb8f4fea5ddbb6080b9cbc8a28889eac4b73db8d4d82a4a761d0cccd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-win32.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08eb8a79e9defc0a15c117568e9b69cac61e0c5bba26d31850ee3dcc2016f710
MD5 c2fb8abc8bc1c039fe5f3f4a94bd1792
BLAKE2b-256 9e106431855a850f0b22dc0f95070c394c81b748f8b7848dd56df6ab72b6e0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49db7e334f1ed80d44c11c90ffbbd697a2acffb37328c2fb295f3879ebd7d178
MD5 ac6e0812d5885befd21b5344c0e14a2d
BLAKE2b-256 0cdaaf443181e764c8d5d3526ec301eb5e8051f695b34c48620e267b0f834548

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5336f26b55154973c69995e2875c50189b4fb164981d866dad6c1cd0c1f242fb
MD5 86398385f3377b70563d591969ad403c
BLAKE2b-256 cbc91b80e1f5d30fa49eabe8ade40e8eba3fd02e6130786b1cc77a851c66e212

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93663b32bf405cb56925790de1035da867f3a79cc83cd066a95e8a74d33b6b3f
MD5 34f245e4c4426f5a93e3c604beea5e95
BLAKE2b-256 336cf2f89b9a0bb4b104cedba8617ff6bbb0eac3f983b2fd7584a1fbba673fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2150f8f2da3b900fc85aabd5df9bba8d5704395b4c21fd5c1614278586a9469
MD5 df0a688a3520f83981ecf27d022d69aa
BLAKE2b-256 ba817c6e654d6a2e863b52cbf56dae9e48f62b52e9aa51d91d268f12e83c53b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 817.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4285e33352ec8fdbc97fa0319033641ded84f27da9061fa6779a39da55e7da9
MD5 0b9dbe602865950e545097cd5ee9834c
BLAKE2b-256 d9a1b3a63bf75635ba406b0dec1907c9cbddf32d58c0f20880224a341d9868b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 679.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1598fe475e96bd3217e3b3500d0cbfc837b687234db22e0eed84b97621f89620
MD5 99056875ccce9744b4fed8fb233ffa0d
BLAKE2b-256 4e7c16877b71bf32c6fc50cc78e8c7876e9a5af9f2c206b0e1db0ccd695b99dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-win32.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4f79b414453700bb2c8cec70d2ee88287479b22caff11212a7b27d141c38ed3
MD5 88d502b65531977b72ef3791d7ae1d5b
BLAKE2b-256 cd1929d51ae91c6d0cd102c22741e0b2156695d5f647922378536186c210045e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 983939fd44c2d8b45e77a7e6213653b787c2e58071b680f9fd3415ee17924d4b
MD5 4683ef36052cd53113d1d6120859766e
BLAKE2b-256 ed370c1f015af6015098a55334a3630ebe0a2969f3f5437ce8aef426a5ca622b

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f0cd25a41306f4c1c577be0ed7dc8be73e757e83f0129ed6e4b425838430589
MD5 80b9b48e74694d0ca8e8ca1a86093207
BLAKE2b-256 71efee0059d0c3a6467b951d3ad7f82425dc26ee49f57c196204f2dbcb301e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 615edfb51c8d278d8f87f0068099c222438516fee47c8301f5615db1ca5aaff8
MD5 39b104fddd71ef8e4f42b26f87b6cf5b
BLAKE2b-256 f40a65ee868aee466dc5230abc142107e64fd014435be668db9aa15bb52419b7

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e4554ce249c0947d79e464330b12ef95e8d78570cb9cedb22ecd70ad12b11e
MD5 4a3ee6e7fd7b6ac33d2d54084eee4134
BLAKE2b-256 802fa2bd19c7f0575a56db1fd46bbb12dfde48b847e7fd642b8ab2214ad3bac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 820.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 faf177dfa34f9a07c414a3edaac271faf95d1db3b779ec407ee000b348a2e907
MD5 6e5c1577a5fa161ca67adba1437528c1
BLAKE2b-256 662f99ec7ab5e834128a07482fa116e135c6444963efeab76e60cec502c9f5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 682.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aeeb5a18a0fa47020393b5e1a5d931411b0477a9e17b22385150252c0d6816a6
MD5 824e648ca3720d41548a011095830f27
BLAKE2b-256 294b2c6dd83553649fd8ea0db94e6781d1a694443ea167dac0c6a2acaf1732b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-win32.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 007a0eddea839b44ecb7ee1f5854b92fcbe6f2ea35af56a6bf761b86ec6c2228
MD5 25100125d1ae0c511c47391be7d6171c
BLAKE2b-256 3f494e96c647be0ff1af44435ce7d0a924ab1d4d14e58f66ea5c0ce39ff2a80a

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b8f41c289432407c396c1be673d1dce4f4acec5983650424b55c6c2e1f014df
MD5 400efdd98819c429f13443cc8666d7ac
BLAKE2b-256 ffdb8937bc3a1bd9216adac9377c4397331baabb4295498e85eab006dc7c39de

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1cf474a5a4c1ae1c484b00df938dc783a859052d446f9109ab5531ca6852b49
MD5 b546906e9e2eca4e44a9809f9e3921b2
BLAKE2b-256 2f773a3f09d3753c929b6821078d183c445c71ff7fbce1529264113537340e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bcc94fd7d2602f8c5cf8225905b0dfba35330925ed8e26a78e870d4e11917f5
MD5 67a7b5ac76ca9202927bacf996fd1a17
BLAKE2b-256 9d682e8e86df696c9b51c2a36515e8056e01881dc6328b38b2399a330b6b2ffb

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb20851d4939d461abe1d2f336f1636f82155cb76e7b402dc2039ee95a4b9d6c
MD5 645772c997ef86d5c8ceca08f48f286b
BLAKE2b-256 1b33bc5768b9e633f8b104b66f18279472822cdc16c5b4a586102941ee227808

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 819.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 637e4ebd099b0f9a43cc4b37cb56109fa100310bc112aefac6372634690507ca
MD5 abb615f2d3606771328cf4512899d7d9
BLAKE2b-256 216dfb94f03b8bed3dc8c21fea43837175e6eb97786ffe52ddf4b37772ec8c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: adaxt-1.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 685.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 de070c26e34aac269613b3b4ec15e7531126f9ab3070be17879a2e00f20bb01a
MD5 0dd13420f73dc86b251da911dd56f28e
BLAKE2b-256 633adfc46d52872390349f3994929b4c29e802c1fa3f9a3019df6dd4b6825ecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-win32.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2cfd4c98e83da32b80b691c5f1332a3f1361df2ef098b2068a3bafa264ba3f8
MD5 55290b76eb02effaddcd08b151dc5614
BLAKE2b-256 2ae76e360d8f9d9ebb49502cbdaad169ea4451f366c36392b1aef39eb13fabfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5fbe2edfd789074c2a67e0107577c6f4aaf8ef90a941fb1a37525548440b422
MD5 a1d43d3d6682696119749f0636d25f0e
BLAKE2b-256 80c771740c8bf96007c326c5bd737d5fba90c7520b1ba6d645adbeb31af5b8bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df0ce3175ab77c35804bfd6c5345d12cb27dc91f231f9773922fa2454813dc00
MD5 f9ad06d86b9887fea9da20868357eedf
BLAKE2b-256 30e4163c04547e941c9f70cec6efa90036401b5597161d4686ec3bc2f22ab8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0986696018b12b91efa848c57477e6242c9e866ea1586b4c0142d8daa2296b84
MD5 860356e61b4d41bdb196eb5662fd874d
BLAKE2b-256 7fb4f25dcbb31124145548866b75b8fb5a191ed5283c2784f9dd0cb1c2dbb095

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on NiklasPfister/adaXT

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

File details

Details for the file adaxt-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adaxt-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abc739d9157ee320cbeaec65afc824ad49a6b134c5665e6d403d5ec91dc53bbd
MD5 eeae308acfe901f60e5d53bd61dd1689
BLAKE2b-256 5b784dbae81dff6f07a3b4eeb7edb78696fee4035584f2135502125d88f3b541

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaxt-1.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on NiklasPfister/adaXT

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