Skip to main content

An open-source agentic ML ecosystem with a clean Python API, MCP server for AI agents, and a community Hub for sharing algorithms, datasets, and models

Project description

TuiML Logo

Machine Learning that agents can actually call.

TuiML is an agent-native ML runtime. Install, connect to your AI agent, and start running real ML workflows — classification, regression, clustering, experiments — all from one structured interface.

PyPI version  Python versions  Documentation  BSD-3-Clause License  Downloads

Why TuiML

Agents can call it — Every algorithm, dataset, and metric ships with a JSON schema. Agents read the schema, call the tool, get structured results. No hallucinated parameters, no wrapper glue.

Agents can discover it — A queryable registry tagged by task, data shape, and benchmarks. Agents browse and pick instead of memorising class names.

Agents can trust it — Deterministic, typed, reproducible outputs. Every call is a loggable, replayable tool invocation you can audit, diff, and trust in production.

Get running in 3 steps

1. Install — one command, installs uv and tuiml globally:

curl -fsSL https://tuiml.ai/install.sh | bash

Already have Python? pip install tuiml works too.

2. Connect your agent — auto-detects Claude Desktop, Cursor, Claude Code, and more:

tuiml setup

3. Ask your agent — in any connected client:

"Train a random forest on my sales data and report the accuracy."

Your agent discovers algorithms, sets parameters from the schema, trains, evaluates, and returns structured results. No glue code.

What's Included

TuiML ships with 13 algorithm families, many originally from Weka, completely rewritten in Python with C++ acceleration for hot paths.

Category Examples
Trees RandomForestClassifier, C45TreeClassifier, HoeffdingTreeClassifier, M5ModelTreeRegressor
Bayesian NaiveBayesClassifier, BayesianNetworkClassifier, GaussianProcessesRegressor
Neighbors KNearestNeighborsClassifier, KStarClassifier
Linear LogisticRegression, LinearRegression, SGDClassifier
SVM SVC, SVR
Neural MultilayerPerceptronClassifier, VotedPerceptronClassifier
Rules ZeroRuleClassifier, OneRuleClassifier, RIPPERClassifier, PARTClassifier
Ensemble BaggingClassifier, AdaBoostClassifier, StackingClassifier, VotingClassifier
Gradient Boosting XGBoostClassifier, CatBoostClassifier, LightGBMClassifier
Clustering KMeansClusterer, DBSCANClusterer, AgglomerativeClusterer
Associations AprioriAssociator, FPGrowthAssociator
Anomaly Detection IsolationForestDetector, LocalOutlierFactorDetector
Time Series ARIMA, ExponentialSmoothing, Prophet

Plus preprocessing (scaling, encoding, imputation, SMOTE, text vectorization), feature engineering (selection, extraction, generation), evaluation (metrics, cross-validation, tuning, statistical tests), and 15+ built-in datasets.

MCP Tools

The MCP server exposes 200+ tools agents can call directly. Key workflow tools include tuiml_train, tuiml_predict, tuiml_evaluate, tuiml_experiment, tuiml_tune, tuiml_plot, tuiml_list, tuiml_describe, and tuiml_search. Any component registered with @classifier, @regressor, or @transformer is automatically discoverable through these tools.

For manual setup, add this to your client's MCP config:

{
    "mcpServers": {
        "tuiml": { "command": "tuiml-mcp" }
    }
}

Component Registry

Browse all registered algorithms, transformers, and metrics from the local registry:

from tuiml.hub import registry

classifiers = registry.list("classifier")
regressors = registry.list("regressor")

Building Custom Components

Register your own algorithms and they become instantly available through the Python API, CLI, and MCP server.

from tuiml.base.algorithms import Classifier, classifier

@classifier(tags=["custom"], version="1.0.0")
class MyClassifier(Classifier):
    def __init__(self, k=5):
        super().__init__()
        self.k = k

    def fit(self, X, y):
        self.classes_ = np.unique(y)
        self._is_fitted = True
        return self

    def predict(self, X):
        self._check_is_fitted()
        return predictions

Documentation

Full documentation is available at tuiml.ai/docs, including getting started guides, API reference, and tutorials.

License

BSD 3-Clause License. See LICENSE for details.

Citation

@software{tuiml2026,
    title={TuiML: Machine Learning that agents can actually call},
    author={Verma, Nilesh and Bifet, Albert and Pfahringer, Bernhard},
    year={2026},
    url={https://tuiml.ai}
}

Links

Star History

Star History Chart

Project details


Download files

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

Source Distribution

tuiml-0.1.3.tar.gz (4.3 MB view details)

Uploaded Source

Built Distributions

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

tuiml-0.1.3-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

tuiml-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tuiml-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tuiml-0.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tuiml-0.1.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

tuiml-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tuiml-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tuiml-0.1.3-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

tuiml-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tuiml-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tuiml-0.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tuiml-0.1.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

tuiml-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tuiml-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tuiml-0.1.3-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

tuiml-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tuiml-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tuiml-0.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tuiml-0.1.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

tuiml-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tuiml-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tuiml-0.1.3-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

tuiml-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tuiml-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tuiml-0.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tuiml-0.1.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

tuiml-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tuiml-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file tuiml-0.1.3.tar.gz.

File metadata

  • Download URL: tuiml-0.1.3.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tuiml-0.1.3.tar.gz
Algorithm Hash digest
SHA256 577dfe733141514278575242cb86f3f56fa8c93409cbe93687a5571d98bb30a5
MD5 a6f44f0a55b27eb9e253735c91b7d744
BLAKE2b-256 23d6e816f8d3baf09a6642e6447287c201c6490cbc400803ce6478d7ddcb562e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3.tar.gz:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 611514a4c54c9ca18ec2a70ebd92f5f51e3689749b0ad1fb20e6c46a206a46a7
MD5 011467d0038d375be93f755d3494b80c
BLAKE2b-256 79cb2260e5f1955382adc296e29e149be53b4ad83e891e37b7a44e2a2ad3dc7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d37e0513ab7472f13a3fd36550b86268ac2cf07d2ec694312e2f20e5bed069ef
MD5 929c370c14e753ce705175d0b239125c
BLAKE2b-256 79b9b0fb14c0da9da23bdff36b6f88fcde76aec09cab84f5295978698d819ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e863876ec43eb1a995d2ae16a76acedb9fa60135406f36753d6ed9600a4cdba6
MD5 0cf34754c71b67bc7062c489bd9d9af1
BLAKE2b-256 558b397bd9a4bab3278e2779efb2c7bc03b0ed8ce8933dcd6cfbee1009ce9149

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa6cd1e68fa088e10e5fa47c5ae90feecb886d28f3249ad368ed5ee3e2d2a56d
MD5 774df092a6fefaa4eca3124f7eba5b25
BLAKE2b-256 f7cd161916f3791c5c0b8d20ee241fa0113dca17eb09967044592f49c629943d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ef569ca431a510989503828df4848dbe33a109b31f7bd0fa5607b3ddba28410
MD5 79a9d76f50d98bd6b61a90ee2edf0321
BLAKE2b-256 35bf43ab571b15f7b806c12daef4fdde5259235dc0642bbc4060cbf9bcf3e722

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9f94655ce2ace1660a4aad5268345e44afe1c8f88278c8f038998106dc71f9
MD5 a846be9c0f551fafae36430228ad18ca
BLAKE2b-256 20d139bd0998d1d8df8f54dba3f071806973f370d2bc96d4e8e1f485111ac0ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 929f49c0bc5fa413093bb1f2315e9df431b6a3d3c9459f741023174c88cc66ed
MD5 b5b3e61cd42984b698bfc8a1b14fef24
BLAKE2b-256 4828aae93db08a753c52c5f36ab020d2e53b0c1d10104fad536c68e587aff749

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • 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 tuiml-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9abfa8c1a54241a90a02ebc0c880c522cc4f23293c29d3381b094e4b6e0c838c
MD5 fa993332597c3ef5c2b60376b76d2eab
BLAKE2b-256 1df9ddf74a3ee7541abc13f92f3a7bfd1d055539be8abbcfcbb44af3dd135533

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e1541b1ffa61640e3f24889200d40dc9b75ad41e2cc70549e85fb13b2faa0f4
MD5 57181cd057f7f5153eb4abb271788870
BLAKE2b-256 644aadb29901d191feb2a3ff88d1037c434d3962cf53f24480530f391595a249

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f89646cad381f89ae246bfdea01b514d7f9ae5fd95e2f0f7a6dd1eb8b1ecaf5
MD5 5ee1213b736bb4f1fb45dd1a50cd040e
BLAKE2b-256 e5c3e7aa58143c956094d78e55cfd1aa69ee1b82631132c6024be766745f4bb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc66a7ec3dc039dd962fb58356ab9f456eb0d23ce2a9e1196c1a28d89faa0d1d
MD5 0e7daee7d4d22ff7b520ac7e8728b23a
BLAKE2b-256 b44c32fed522c50df33cfe261da0e9468f040de52448ba1fdbc323559eb07556

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24ba514458a250ce09036a98cfc6226d3be94f3e10414bf4852ed38bdbe03502
MD5 2a3bf02194f6a1dc3f8b6c375a6430fa
BLAKE2b-256 94f4f938e336a6a2eca0304db2e7bf7bb6f181772918e8bafc0c78aceacd2204

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fbe6a5cc9c6fe5fb7f00aff86c27db9131141d667f272c775b6adacc7f21918
MD5 87443b618ffce7c64e12f7323663e0de
BLAKE2b-256 02408068cb952d6d3cc3511ed616223fabacd5fa07f81e9b072b22005004599b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 525f25c863d46f2fb0a57cfe95346c8c6b84d64f896f1af165fb9eb44b88effa
MD5 9b5ddbf654bf257fbae9961423cb044e
BLAKE2b-256 3ca5df46944c7fc0cb81571dac0f50a2bafd503e2f8953f5a24e3304735069c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • 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 tuiml-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a94eefd367b09636f993a7235009c65a6d5a71c575ac4e37342187e1aa25cc7d
MD5 06425cdfd5ab666bcc31454d658cf325
BLAKE2b-256 9dab59ecbfdb566c4840ca9101155ea7271dadfc059edb58fe03d7073ee06a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10a055ec591fd429c9d1cb3538907fcee7285041951a6021fa2089e93341602b
MD5 d79f258353233016a338661d4ee15006
BLAKE2b-256 4cb1a066d4ef9a4f4f903d7a05e424badaccfe0fbe91d6d9db3d383fb5a790f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b31c51a2178f0924f9627aecb2bf3285f3d4d7d384b09c9e686649a6f6575f5
MD5 bb79ce2d42ed8a5ea5d22cd01c6f28e2
BLAKE2b-256 1f03b1603bbef2b175e597d88f4a2abaa2c8305f9e4cc5d0e3f551b10104d7cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dfc99a6b45994adf3023543d84fe9e13f2547297a6db22c479bf3253c709474
MD5 8d9ee4e90d42b2e9ecaab4a92c80198c
BLAKE2b-256 cd6303ecbaef0a25d1ce0913de118f3dccc77e8bc2bfb1a4298bc533863f52d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fbb3d425b32921799a5b23230942683863d499bc40f01a80ad77bc6abdf6828
MD5 e084468b0b9e1f4c29817418c68081ea
BLAKE2b-256 6d0a73908b201c4da2b661f418573f91bc483f334541b8849f687fd2462088f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7de3b2f2acd69e4dd84c4497a7719f344360a0ff66ddd2c16fd590277ebd5f7
MD5 c7bb1bc46c6f27c5f8a6dbef78f6fdc3
BLAKE2b-256 b937a7331d956b7a386029160bae1ba6923cddcd5c430c2a50a5ad554b7e2ebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa1f35e031e706fe3b7119adf60163912fd8a23ed2f4efe28ac53ca0aa4011b2
MD5 4af4ba520c00ca2a6302e1772e493c85
BLAKE2b-256 f26fb137fd6e47786ba766002145439c600d457da8d177960f278e3f993f2f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • 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 tuiml-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c7b9b766469dbf6a8c3e609785032e6b8ec5c4ad9828ec712b17a29238c78cae
MD5 8bd35d1f1c264347bbce8714372868fb
BLAKE2b-256 9b8ebc6d86d582ab8602173efe17511892fe565323354379d3f66d178fb9f6b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9abf0f79814125d19e8341a7b30d6e3681eb568852a82c0b51cfbb43f9702ff8
MD5 91b8408d1e3b6486253ebc858e1d6625
BLAKE2b-256 3761ff4dc2fa486f8d4e411924b1f06909ebdbdc6e2359f1c616d88f27546afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1b41d7c81c2da3dcb832584a7b6f7212af1c45eaf69d9ad2eddfd970864c4bb
MD5 cccbb1908256fae3bde2c0be4468965b
BLAKE2b-256 f1a518238df2dc05cba9cab78cddf2bb4fffb5d6724176cd7f6c28179275e0f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 844c0756bdb6a285bf3906d301a030a324e18f94f29eb54cc4eeefde9f8c49cf
MD5 0242c356b7d499e554288bb92ecce929
BLAKE2b-256 bcd29bbee4042f27ac21efd0062cf4dda09271cb15ac4af7e54b65d06b34d0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb16f3cd98c40ce35ba8bf706fc4e6b59e56ec94715cd31a3560907226a4fef6
MD5 6a4f6180c629dc119e1a3b9ed2d24b5a
BLAKE2b-256 dbae7fa3531fc5ac0db3e4c32e2f6e60f28abf86a1e4dafb3ebd989a129b5734

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd4ad363334f88e0dc0799d3048d47a7a570fe4e5c5dec4fc64bd093acd49421
MD5 8d90c3bfbd7e280795136af83ed2c96d
BLAKE2b-256 30ed8405d38d7bce69c784f34349a5cfb39d00cd9d94b53a21a82e7c9c7e987c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on tuiml/tuiml

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

File details

Details for the file tuiml-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9f0b9aed9bc0ff0f96e34c2308e006f077220042b9527b725c175ccbcb5842d
MD5 ebfbc696828fb4855a905f93cfb62a56
BLAKE2b-256 0f11458bd41452043bfc37c190cc1547005f4822bac0fb617684559517c280b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on tuiml/tuiml

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