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

Uploaded CPython 3.13Windows x86-64

tuiml-0.1.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tuiml-0.1.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

tuiml-0.1.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tuiml-0.1.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

tuiml-0.1.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tuiml-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

tuiml-0.1.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tuiml-0.1.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tuiml-0.1.4-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.4.tar.gz.

File metadata

  • Download URL: tuiml-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 6a6624deb2d437e307b9ff7bef5d9348f8af4087965ac623e54ad231eb6d8372
MD5 9b8bdd58e3a69b9af190ee01bfd18150
BLAKE2b-256 d14dcedf0aea231bc5d157593288fa13b70fa89a46bf9b27769b6380b3ae22a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f57084db17471f2948703a021853755cdc805bba6b799dd43a6f94d5b1130bfe
MD5 a317aea5c40908628ea6149094535349
BLAKE2b-256 42a1431a4981116c297a422e7cac467e7deb493c248f01c12c256e82956643f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4c3fab483d1916e7cf4cf53a12b37cd823475c1711eced564b82a543953ffa0
MD5 4a28e0e32e0cd0598958c346b53e3541
BLAKE2b-256 994b939add9c96783df131e59cef5e3dabb3d1925de48cf1243765685672993a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 279039dabe7fd9064f8eae3569114fcbf2704d7c3cfff97306cbfea971a66992
MD5 fe0f3b35f5c7baa7fe110d2351de2089
BLAKE2b-256 cc746c6b039ef49a0ccc83debbe92c05fefe61b35619e828b7c35cda2c10dda5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c13d1d757e49c4d3e8ff3e8c914e6bc8ee4bdc267d8a2619ff4798545fc919b4
MD5 337563eea4afe652d3fe43c0952da438
BLAKE2b-256 c7e158592f494232b744c22c34f6ca003194b52a49ae197122e51b3af732825a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f3b1da34061f1eb400842d0162de988bafd184e49f96ec53ae3e13f754e57c9
MD5 f1c8018d69a08ae30453dfadfbb976df
BLAKE2b-256 fa1635204f45d343f2b3dac2ff6dad15e80ee8f494865a85bb27e89395d54f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50b3e6b99003279463b49a5b0e90903ebf582906ec1b6b1f16cc34ae70935b88
MD5 de83f88f587ccb894f0f120599c4a324
BLAKE2b-256 04b5bda48ff628f9bf645a33f17ba24d8fcb2c29986e033437be4c7572475485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fa375d592de8a42c995282d0aa5f37bf560d31a2b770c7b1ce882e7b2446b8ab
MD5 3996b342810192aa3303e6e57d1f66fe
BLAKE2b-256 c35c65fbf04c75a70b41636aca66e7c33cfa615b9fde95eb862010f2572bcabc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98bcdc7dbee6fcf13085d16ed45dcc2027c049cedc5c13a86dc0d242720ddb8c
MD5 df68bd633468053c2c6e042feedd0c9a
BLAKE2b-256 2f1a3a3d1529369af0f73a204243ff7814c90845fdb79d2f6c1708628e6ddbe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69f9c780eb054e559203698e96d7b727601e52c946d6ad0ac4337d8784fbbed8
MD5 c4410b7fd6f0966d840aedb04ff9fcd7
BLAKE2b-256 7eaf8fe9151e769147f2be77516bec14a9dfc3e23241f57df1cd58d8dcb11958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 026cbf3e1d58a1c7a12552b13a0dfb60541686cf306b935a78c96da1685f5995
MD5 acc6679ae66040b64abb2782ea0c11cc
BLAKE2b-256 e594c4b676580535b30207acc65ae8051c81a2a6d958e3e62184373d7d7a57a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3f9b100df5c5e0457add19ba16d100f210b5932f2a0650cffb1f9dd6fcee37c
MD5 8063dd8761fd839ff59def7af2376511
BLAKE2b-256 6154f468f302715830993e2af422c563954e54774b579ac3e13da50e4aecd356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 972df51e7ed7bbdc6f8052abc2f4d749817b7a9faa6d3b0944af37413841647b
MD5 7cbee65f476fdbfa9ab2a30dc5b4193c
BLAKE2b-256 bd9f38190cf88e87aab32ae3a26c17897b798fe3ccd5022311e05b7518f2d065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f8ab6324b00082b367b3922a6e49b8b68a848e11d52e86e413c4ab35833313e
MD5 3b9dd6f91f43ad1e0184f28f1bd5ae6a
BLAKE2b-256 06b923a3b750d8bad06ad36c57fc91c5f9d8f68f3bdbe073c9e16ba7f20d45f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83394ed3fc3f553641e40e664fb1703b14331ec703445b27325d74bb8ae202d6
MD5 13e5c2ab613188909cc22285776d0802
BLAKE2b-256 f49f737056b0a3b052273003430bcd9fb7f08fc9c1b7d64929bf4e42038b8697

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9eaa09dccdebe88a063e49b9c3db5ebcc53ca20e08d8d68a120c30a9e76ca013
MD5 709837f2beda77f122e87566c3828751
BLAKE2b-256 f1cd2e6a360aeaaff4f89666ae7c563fe25198345bc7fe72298ae374d21d57d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0adba12e8740fb10c26978f516621bbab1621d877d919e69aea161a8a151277
MD5 daaa9b5d22a6541d9f526e77379caaa9
BLAKE2b-256 96e9c6ff6a96217fd520b0fc693bc13f7d084b4a9093c0c375f1eb55adf63519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fc66caf2b3f8b6b0e78134620097ea4008c3fc13844f4331a0b9e3179c94617
MD5 eb1699ebdf50a501a1bc415acffad997
BLAKE2b-256 a5b672a55d670e65d35746490dc35555da52b9936260f27ddd7fcb0ac6d3ff22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56cd79f06f160501d81325b72c4dbb7a3a81a5e18f7cf4a552696806c56e6000
MD5 16ff5c8fbb81c5f5cf1da9638ea615c1
BLAKE2b-256 6c18f581114dabfb79fa18b1f8b14db42ac6a97c9265e0747b49f71a7dfbb08e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbca1d9c4101eacd31877eb7936e995eb4a9724ccb85a5e90994928439da64f8
MD5 0614bd77f4fd820a9909d45230b6a156
BLAKE2b-256 28764cc2e4686fb49d2fb2e58efc0148f1d1587fd900107a6afd71c2ddfebac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0444e62c2758c1196cc2c52f30186131a5b279b21c8978897e41b4dc2de1f09c
MD5 53060641c78ab7d58ff25c9ac6e7aceb
BLAKE2b-256 1ddc4f65fa860f7ea43cb7374cedced230e38b5d49171a2d9f2ab3029a1b818a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4e73e8b546c6cbcad385a28568961a2abe94dc7588b47508b9468d87b7a0358
MD5 769dac53a91c3ae4d5584ecd0885f3b3
BLAKE2b-256 c4fb03f8d9644b3d60b1297b88d4b395a2c54a836600235aaef4e3c2cebc8f84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tuiml-0.1.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4c72f16a4f45ee48b935cf9d3b67bc5cabda111c56dbeb10d30fe2426c07f90
MD5 7840fdbdae8590603459e327fc090e49
BLAKE2b-256 565637bf8ead0fedbc0027123ac1ee74c63dccc3a6af8a6c0e837731b696d5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dedf10336fe249a9b9e62eb9c3020da7a9551e631b315c8da5a46a50806c68e
MD5 4d0b576e00585b4980699f813a26c6cb
BLAKE2b-256 a3b5e1eb78f5b5c330dc535c1d7c75f24df6eb9927ca84054f28adbb75fcfd5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 734ff014cc89117efaa1e9e0856ad681c3e6165cc6ed5343fae1d752ea368723
MD5 1c22353f263163f02403a6e8a9b71fc9
BLAKE2b-256 a4a9449b5bdca167bd31d472f074ee4bae0c9a01c6cee12a90df2ec285641267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2423e34b225f4fa9eea61926cc6b831197c13de1f993190e57de0e17fb88bbaa
MD5 85ac2d058aa8a0445027dd22ab64bf76
BLAKE2b-256 8e25b90a7a921e4090df0389ccda5ae27665d1b9c5fdb05b9c114f882f35edf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44db1038adaf1fb86e084726465c05a161457bd937878493e0d2c5f0191fea11
MD5 319ce5b7d42a0a7f5d0464c08890d9f4
BLAKE2b-256 979b636c2c0981b1e2940590d661276e9d1d8c0c6bddd9daa952a8f5a403bc1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c6cd8bd8a94519919e0baf177c5683e947ba008817cd1d9163a9b0f4ea111dd
MD5 b9a78e13bfa371489aff46a8faa2342b
BLAKE2b-256 f55c1b26a4f06f2c55ad3c38a917935756f9acb08a8d0b79929398472fb72e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tuiml-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 671a5a22d54583cc0fa2cf300df09809338f5c8af3f330f074e026a53e354421
MD5 5df268ec2b3717024638cb1d59de7049
BLAKE2b-256 878c233fb9cb760d3b5ac77a16654a0e8458b10cb9a5dc21c8b39b932c5a6f3a

See more details on using hashes here.

Provenance

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