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.6.tar.gz (4.4 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.6-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tuiml-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tuiml-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tuiml-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

tuiml-0.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

tuiml-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tuiml-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tuiml-0.1.6-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

tuiml-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tuiml-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tuiml-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

tuiml-0.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

tuiml-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tuiml-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tuiml-0.1.6-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tuiml-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tuiml-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tuiml-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

tuiml-0.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

tuiml-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tuiml-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tuiml-0.1.6-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tuiml-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tuiml-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tuiml-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

tuiml-0.1.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

tuiml-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tuiml-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: tuiml-0.1.6.tar.gz
  • Upload date:
  • Size: 4.4 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.6.tar.gz
Algorithm Hash digest
SHA256 9700d1c4b4ca1efc88bf923ba1a9c3709e7f2849a65ff24dc8c902501cb22325
MD5 92cdcb2af7cb75a8662f41b955f9bf89
BLAKE2b-256 bc91aedcd073763b4440c4e2a7e03d798a53a2841e12d817a2edef92367ea251

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6.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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 87b194e491f02d82cf1bd685c9248c28db6b0d21bfbd75d8da8790c71be12150
MD5 52d35ef26f993f79aa3140c303e0dee7
BLAKE2b-256 7c2c4c2cf6ac53fee1bbd64d91cb7653c329e0291fb00774287d4bbe2ba71960

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 809ff66adbde6526e7f69015312fb0945b810da3d6ac9b420fd3311f8c6efe91
MD5 3d4ed868480b411848878e5d980defc3
BLAKE2b-256 e1d778fa8dcd708430e8cc0df137a2c2731979f50e45b4a0edb81340cc2dbc3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f34d9772f8b19643e2888ac3f4103c25d9e991fc97a27128be06b4fefd341312
MD5 d2c2711263d4702b5612e48a7afe0e0f
BLAKE2b-256 d7b2907bb65ab52bd4911f35675f7a414f6d316f51d05e96ee7899417ec36f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 092405a9b59f33b6bc27f3f38ff49f9a5590ac9dd7cf161444bd3ced1ad2adb2
MD5 96e8c59ad1d59a064105adb4a23b37ba
BLAKE2b-256 103ded1b8f259318facb683829c462e091b38243d8963edc4fad01f97c1ce915

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2dca8d05bc4f3d3555789ecc5eb0d34100dc262b17f390dd87e90fdb471092d
MD5 2b8a8929fe0ce36be5f8285ce0b42cc7
BLAKE2b-256 b37bc0c68f20da97671be8269dab5ed567ec24630fbea3818c4e4cf5c8b6034b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db29ebfd9d534fc81da3aa922397c599c2db116de6dcdd3608f60455618d5fc8
MD5 1dc84f73baa32fd9941dbf6a50fb5fda
BLAKE2b-256 a52458b452d743a3c89170bc52bbf8f724cee4d730efdb87742e683f218c527c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e3825c3e915dc298326b37c3abdb4c9e7b788ce791d5f7154834c5babe22bac
MD5 fbfb8ce3b04fe5d4ae8ca8b11067b044
BLAKE2b-256 1627c1ae268b4c38c573d37a78c36f1f2513cfe2944ad8602a508ee5b7dbd0b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a3c7644f72c4026d1d8cbb066f006d579db7a92d9217bcfe0752e85354e7257
MD5 29850fcabf6347263d012bade56167fd
BLAKE2b-256 a95bafef98b0697d0e877eb60ac91cbf27215f562eb23567fb85d7b103db8203

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88468fca88d3d598623c587c0f92eb3fad235a606debd4367098928f71a0eaf6
MD5 56625ecdd41aa8508471f2923b5c2446
BLAKE2b-256 3f1565eae06f931430408d1a395334e3d5506145234911f2dc9b4e02567c9443

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77e57330a70e25f594c96a9aa0c9c12b48995f0bfb2ec4a14dc6d0832ae3adf8
MD5 1f6efbf4aeffd297a0261ef8eb063263
BLAKE2b-256 c6ae49a0a9af5e8e7b1ce3adbbfba11aa6a93ba8f4448564e23f2a0bde93a816

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3616907a26c1888b2a477c82fadcaa861b888b79583ee1e52349aeb9d4637bcc
MD5 37c21e2a64f5a633891cd42c697a9c4f
BLAKE2b-256 7e60e30c5f836172cea671cb4684cb683cef9e5b3f19c396a509a0142383ff8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b7a6a6cdf8521bf1d0ad096f191ed978859f84beb23b9e7860e92536d85bb2b
MD5 ea14948ff39c8e5a16ec5281e47c4e15
BLAKE2b-256 0545b0e642e5f8d75dff2d05b76bb52ddf083e168d24c05e2bf773e78477b7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bdea41caf4bb71ac13cbf260aecb76d545e956a61f36115fe8b605253e20ddd
MD5 4b34e4593f6a83a1ca8375b0fa7bf104
BLAKE2b-256 e4ae1003c239a4f95cf4379393a033f7ab8f168340ec8560b96170312cead7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1cec2ba7545d9bbd10dfc524ee3c0b29cbbd160c5bb2f6802dd100d9d3f7d055
MD5 05da00a161e85cc6e2466fb0cf767bb6
BLAKE2b-256 ad90bb39e28fcc9691ee175e6590eeed9b79c30aff035ffa549dd9aff50c66e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e3eb0dedce52793390c835af6a83f7bbe465185860450ad08eee875b2164551
MD5 2445207f267d6daef181b911bb873dc3
BLAKE2b-256 4af1e2a863d27999a8a6a069d46c70405e555c63d83a83c284e777a0a7469388

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81569ad5ce3f7f3f4d13e378c0acc9461869d5d8a6690a640bc13b6db2209354
MD5 3c826b522c67fa6e57fb40fd43cb14ca
BLAKE2b-256 a509dcb54021c79b6a402b3b80ad1079697e60f3e595079140460a61cedc98d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 034afd02558584d0e3d47bef8ea50c9ecb30181d989f7132b05191d8c4ffed68
MD5 ebcb59bb87409a79c9ed1aa179a7f464
BLAKE2b-256 7350f327b5d726b3d3accba46ac1fbf82d79444283f0d602656864e8bb9f181d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bde5d1a85ce0e0615eda852f44ff9255033e8307b5da81bdce764328748922d
MD5 9a2ec7ea5db9209aff0881d5d27ac69f
BLAKE2b-256 dbc20da3c4cc5c30377df0b0e89c7728b3632f7402f8ecb59d8d3224f2734569

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3de5265b1d2f206491ef2b99bd4b264ac4547c3083d66c2d1144d64cb5022f8c
MD5 cec7215ca6f4fcb4a88441f8210e1f07
BLAKE2b-256 b3cfed86f564ed09fcc7f562652c8103fca41ee8265069e49b1d1563d3c9a459

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73ccd3efd2c8fb6a9ef20d38f165bbbfab5b1bef5f7c2c97532a123cc26c9b76
MD5 e19f2488957ce226474fdf2b0135d925
BLAKE2b-256 9461c6986504228c084b11b6b3a18b7eee28b99f3ba883b4d6927f84ba02456e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a20ddab40d99de9d365cef784eabd0a31141e663f6b6a64de20644df5d17af05
MD5 8e07b7dc0f2693f1df65485b556ef5ac
BLAKE2b-256 41c7215b8b77c6243b49efc9165299a32d94aa4031976a3a24b70b6779c75cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tuiml-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a616de380380812ef2bdb18479f476fb4513f342c30a477248f05c3020c825e
MD5 bc8876811203609bb10e32e83e2c5c4d
BLAKE2b-256 a00c5ba8791302ba31c61a5c2f9ce9622cc2dbc40ba9fae89e4dce50d69109ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5055d9ab92e9b3b78c09c1ec9d271b431554b7ae94a55df710dcab1a7da27afb
MD5 b8bc2b3c73bb95f95507bfb05daa9ce6
BLAKE2b-256 675b3218b5d306a02e57bac8f9fda93c3a21b00887dcb75727fb2cfa00af2ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f4f302861bcad7b139b40e7f839112cc18886d261ca9691d4a5ab31706725b4
MD5 a16173d2308c0df7f66944f600eb6518
BLAKE2b-256 ab9f1984c4840e9d468b2130f1693f15626d7df2375eaa888984bafa89cae38a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 665d82d282c3ed6d4987f9bc509751fcf84d9338560801e7eed5d8006b29e47a
MD5 27c3928ec36719a975e6e67fa3e4325b
BLAKE2b-256 1bcfc96a39e6348ecc3a0b2bf8230e145b9d886697841a49dfdb6d106dc031b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4f084dabcd42c869286fa1d43a37792cef15dcc51771857f5038f35a1b469ad
MD5 f55cc5c9cdb9982f371ea7d4f6a4c2e2
BLAKE2b-256 fb967e4e2eb52d227f515b3f388ddc4ff6746e920c474e31c51f611d58185bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f249e1ce4ab25777f498b8c70b11ce78d0cd4119b57a37ba45abf47fd36756b
MD5 5fd30721b3a094cb8d8d78155c70eac5
BLAKE2b-256 c87ad0fbff577a5bc363ea11b1f059daaf71168f27282549a87effd26270f26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tuiml-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ecd25232f373d05c952a2d6ab3083b66e522a0f150ab7f251a592f4d251c6a0
MD5 daea05b32fd70926ad7e5ffcc343ee70
BLAKE2b-256 a55edc0c7623a675c1f3ea599f7ddb5a21a25674ddb9d1b906aa1b8681b0d4fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuiml-0.1.6-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