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.5.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.5-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tuiml-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tuiml-0.1.5-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.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

tuiml-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tuiml-0.1.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

tuiml-0.1.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tuiml-0.1.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

tuiml-0.1.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tuiml-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

tuiml-0.1.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tuiml-0.1.5-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.5.tar.gz.

File metadata

  • Download URL: tuiml-0.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 5e8829c223e4fe18a3a6b48a234f1a9531780f6975063e0366b935e9f7645f98
MD5 2e7d312da1b1c696e744515de4c0a8f1
BLAKE2b-256 d03a257c3534c980e41e73501e6bb61dca781fb8079013cbc5f3c4832913af3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d8d2d108087e5f10157de5965f895b8c235c6769062d64f0999a4af7fd66cee
MD5 1e27420b1927e93524617f8fba4c0f1f
BLAKE2b-256 9aabef877af5953cf178567fd249b1f5fd80076f14c794acaf79942e8fa3a8cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e9b535e8d591dbfe1de743214bbab1fb0d3a1e6414e2e87b85901b1907e2e0b
MD5 21e9b5406a6523930c4f12e95eb7c5ee
BLAKE2b-256 98770f7c89c74f3c916148b2c4392889018b88b9779dc73167b78c6e28b988e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 186d79e33fbd215265569ca4efdf54764eb4ac009d3ad49b0fc43558caab8836
MD5 974445643ed58b04529b24ac6a7300cb
BLAKE2b-256 f849f2f396637816be5169d38de7f20a893c1ba1ec3787604066e11671470021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fe5354f42a08172d4ecde8789f0aa8fa4c14234afc12414e1830e05247cf13d
MD5 f4d7ea7e886a00e0293f1d0bd52718dd
BLAKE2b-256 93ff9374760a612ec150aa917a96f2727637c69d6b44ef8145f8fcfc9958c5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 880e5097fe930ab898a16c429ec5c983e3c2bb0fe10543daf382765d5fd2bb99
MD5 9991779b06dadee4d927d08b333c44ef
BLAKE2b-256 ce06301eff201660c2c5c79a2dcff4e255088e33a8a2c5db7d6ce02f084c66fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390d11720c34c2b35c215492ffd8e29b89364864d7b0934d4a6a150509c56fe6
MD5 b5438d3cc153b644814cbc1d8a3d78f9
BLAKE2b-256 50a75b5914210d41ee974d0be4bb63d5fd571ac21abcceb7a5ee5192eaa5e5d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd8782ff9a8535f8fae739f759afcb5b6b2bcab272c74381d6d4f7d6e36efc41
MD5 dd65897817f184361d57d605a188d154
BLAKE2b-256 be9e6c985729c60740457839638a216a11e386b62fba4d1ea2749bde26c68047

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6c04fa9e5e8e1be59129d13c7d0b5216b7b5da27e6ffa06395b22c79c49562d
MD5 03f07088bf2d05b45a93d69ea89e84f6
BLAKE2b-256 c2b90b587f9cf3e2a1b20f391cb035e8013c3a8b5e845e13d17e6ced4a17455d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8ad4d48c636d618b85842db9202ba581968904de68182f2f3738314a9f1eb2f
MD5 4007c45f34d803894d48ffd378d4c3be
BLAKE2b-256 42df4a9c21854a5f6f8d7855a825d008545072a421bcce4cff0635da925e3658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08df64cb5e1d479fa5fa794a01187336fbbb0318a8a8534324db759e54939801
MD5 cd01477b5098825a8985c6e40a87f6ef
BLAKE2b-256 a623735187a3d7fe38815ead85136a0e0f9d84c6463edff4b75c60e318748a28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4da0395c54765c1828181ccf6afb3e6715bd23693fd1295282a5b0c0e18679d8
MD5 36be534a38c93d840cc525913331136d
BLAKE2b-256 24daad50fb27716d272df32c2f476bb3cbebfea7281cd158856bc5521a8fc108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab409abf0250fbe1f62616d595f9bdbae7cc260730085793ff87cb8d0d5b64e7
MD5 48487447a60f567b358b4bf8bfdd80a9
BLAKE2b-256 edf7dd49ba2c6e920372c89799628f6939c4eb28fa299ef742e3a5e31a722e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a65f7b2f3c4a22af167f9ad6e60de26d6c5e71b4fdb1e80b3e157c851543c9c
MD5 e9541c5f7cec26be5969bca69396939f
BLAKE2b-256 148b1dac54c1f88e380e7215a8cc190068c4a381b4252d5b9b3380f329b66916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b7feadc3a08014d73237c2d6bf3dde35d881c84f0ca9a5f97da9aa2ec376e478
MD5 be7a06c42728eeacc9a1714d6de89dc3
BLAKE2b-256 5fb74c283b20ca685d47af218d6fb7804755c3da35fe58a65b53d27db958247b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 467b7b714312463ad623fed906948160705162514003d3a08819c20ce93889d6
MD5 d2793546db324cb4a6babc9e79269bb5
BLAKE2b-256 425aa600a79751ca49038397d5bee312aba7de5bad4d7545e40891f864c35fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cd6e32d787ef8322e3a8b0ed5d3f5c7a9feab577a8a7dc013ddb3d2b3b1fd3c
MD5 91e146e52e80e9448c3c1c7521f9ab8e
BLAKE2b-256 f16cd213e142936c2195a514660d673bf21841019eb1d0c5b54bc2a8f707f926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d778a630ee49c72b223dc67dce774a6dcd5defe9bd68b9f93ac519b1cbb8b54
MD5 bea0fe6430730c944a58d057900ce0f0
BLAKE2b-256 dc1cb12e376217d8347fb84e48059891cc1284a4d6c7665c41d27197518269d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fe8a3c756649326e8859d97c2752cf61e4e06e758ffb4292a7cc4a22b304b17
MD5 364ddd518eb151a6af2883d4016e0699
BLAKE2b-256 f24162a14e9b812439d6ba933902f6140d889619510b5e94fe776463239b1cbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fa3942cdb467ae861b9ea079ea00ea3694bb8bf413c101ad3d8159d1e3bfe6a
MD5 1b4463a48633a03311740e9f1a293b83
BLAKE2b-256 93d8947b28da1d745811802e72d17db22693e8693bcb9f7086c385f06fc4009e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a08fcf0d7a0ccf3151bb61d495ad8df8b853ab81ea86fcb4b7bcb5491196f69
MD5 69fcc46150a317781cc8898cbb976c71
BLAKE2b-256 da1b36e360ee11a055bb2237968466eb3462deb8df8b17c546a83acfb7388962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 702e631ac07cef73785c0e8f9d11e4d428fa7fd15115ef359ae27addec0bfb27
MD5 39a1bedf8801093368ae64ad8509e0e8
BLAKE2b-256 50da623fd921617c5e607bc94844609f477520258c74c01caffea5c2ae159b37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8cd88aa7decc5fef2e6ffe5044b7878cc4b7068c7f45b046f9c8f0f8a41da75
MD5 121bd345e1c6b4ef49af526a3f5e5a10
BLAKE2b-256 fa644c89b6ac07af17752d31c507836cf591dea40909295940122b4f21e2a73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c07adbe6a341d683847c9c239f1962391bd14e197f6fc45d86e6b456de33ed5b
MD5 db66c3a902506120b39e0bdcd3478f8e
BLAKE2b-256 6cc23913936726b0e43151a6bb16f1ab7f606a810e4aa723d5096b2fe1e5fe83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d6a0b24c448e09326eeb37e6574ecb82a7c9f939af20097ab8262749752cc14
MD5 fbb7efcae6d4f3a39ee0ec3846406001
BLAKE2b-256 d869c9d5e2e650015c5171eb270a1d0f240821848d050b4f64ba23e432304354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6e3c06629287f9e13bc2f5572154c5599536c48d38a4ac06213a982e515ae1c
MD5 3181ad027ed4023eca20b4904839d0f2
BLAKE2b-256 b020bc134111a13b0ac41ec206f7fcba6b469d83e1e18b320f4bfcc2f91d3568

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 123e714537604020559ee4cfff086e90bc1a3b39996bcc4dd8e9924ac6f7219e
MD5 a2d1c24d75850ff71250628d63aca89f
BLAKE2b-256 9d757b68bb39b8d0ea1a3bb5c66c9d513c7b48fd68ce21d2868832fa150b1e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c02bf664f15aadb03d7b299fd91a5f1c22ee7ad3343dcd8e7e979a4ad74ac3c7
MD5 65a0c9d5815d9f13685d8654deb9df34
BLAKE2b-256 7b60225ba50250f83beee0d1fb625a97766c7afbe74afd3273befd4ccd725919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b12b17472bb3175b335b186695a6a3225ed3b1c92357b9b788ca8e34de151a3
MD5 ceb3a3410c194b29e46b8d205caf90b5
BLAKE2b-256 09561d6829ec259f0c14164125d50221ac14f9758bd3b4e166798764219312c1

See more details on using hashes here.

Provenance

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