Skip to main content

CartoBoost

PyPI Python CI Docs Release License: MIT

CartoBoost is a Python toolkit for regression, classification, grouped ranking, and forecasting problems where place, time, route structure, or repeated identifiers matter. It is aimed at scientific and applied modeling workflows such as mobility, logistics, demand forecasting, route ranking, and other structured prediction problems.

Choose CartoBoost when a standard tabular booster is a serious baseline, but the study also needs model structure for:

  • cyclic time such as hour-of-day, weekday, or seasonal demand;
  • 2D spatial patterns such as corridors, neighborhoods, hotspots, and service boundaries;
  • list-valued memberships such as zones, route cells, H3 cells, or S2 cells;
  • directed movement such as source to target flow;
  • high-cardinality place or route ids that may benefit from learned embeddings;
  • leakage-aware validation and reproducible benchmark comparisons.

CartoBoost keeps a familiar estimator workflow, but the main goal is not to hide the modeling choices. It helps you state them clearly, test them against simpler baselines, and preserve the fitted artifacts that produced the result.

When It Fits

CartoBoost is most useful when the scientific question is about structured temporal-spatial signal:

  • Does hour-of-day interact with location context when estimating duration?
  • Do zone memberships change fare estimates after distance and calendar features are included?
  • Does preserving route direction change source-target predictions compared with unordered identifiers?
  • How do rolling-origin demand forecasts compare with naive, seasonal naive, theta, ETS, or supervised lag baselines on the same split?
  • Do spatial splitters recover zone or corridor signal that an axis-only model approximates poorly?

It is less useful when place/time structure is irrelevant, the dataset is too small to support structured validation, or a simple interpretable model already answers the study question.

Modeling Primitives

CartoBoost supports:

  • L2 and quantile regression objectives.
  • Constant and linear residual leaves.
  • Axis, histogram-axis, diagonal 2D, Gaussian/radial 2D, periodic, sparse-set, and fuzzy split behavior.
  • Dense numeric arrays plus list-valued sparse-set features.
  • Feature schemas for numeric, periodic, sparse-set, and model-contract validation.
  • JSON model artifacts and portable weights artifacts.
  • Optional SHAP explanations, Optuna tuning, Polars input support, and ONNX export for the supported dense axis-tree subset.
  • Standalone neural embedding regressors and optional neural feature-generation workflows for high-cardinality IDs.
  • node2vec, GraphSAGE, heterogeneous GraphSAGE, and typed-schema HinSAGE graph regressors, link predictors, and graph feature encoders.
  • Forecasting APIs for geographic and temporal single-series or panel demand, including rolling-origin backtests, naive/seasonal naive/theta/optimized-theta/ETS/AutoARIMA models, supervised CartoBoost lag forecasting, weighted ensembles, CLI runs, and portable forecast artifacts.
  • General utilities outside the forecasting API, including single-series forecast helpers, local-level/local-linear Kalman filters, Croston/SBA/TSB intermittent demand, and ordinary kriging.

Install

Install the released package from PyPI:

uv add cartoboost

CartoBoost 0.3 keeps the root import surface intentionally small. Read the 0.3 migration guide when upgrading imports from 0.2; forecasting and validation use named modules, while advanced model families are explicitly under cartoboost.preview.

Optional integrations stay optional:

uv add "cartoboost[explain]"  # SHAP support
uv add "cartoboost[h3]"       # H3 point and decoded-route encoder
uv add "cartoboost[s2]"       # S2 point and decoded-route encoder
uv add "cartoboost[duckdb]"   # DuckDB relation inputs
uv add "cartoboost[optuna]"   # Optuna tuning
uv add "cartoboost[polars]"   # Polars inputs
uv add "cartoboost[onnx]"     # ONNX export subset

Verify the install:

python -c "import cartoboost; print(cartoboost.__version__)"
python examples/quickstart.py

The five-minute NumPy quickstart creates a complete place/time dataset, performs an out-of-time split, compares axis-only and structured models, and checks save/load prediction parity. The optional pandas extra enables ForecastFrame.from_pandas and other pandas adapters:

uv add "cartoboost[pandas]"

Structured Regression Workflow

Start with the scientific design:

  1. Define the target, such as transformed duration, fare amount, or demand.
  2. Hold out data in a way that matches deployment, usually out-of-time for tabular rows or rolling-origin for demand forecasts.
  3. Compare against serious baselines on the same rows, such as LightGBM or XGBoost for tabular regression.
  4. Add CartoBoost structure only when it maps to a real place, time, or relationship hypothesis.

Then fit the estimator:

from cartoboost import CartoBoostRegressor

model = CartoBoostRegressor(
    n_estimators=200,
    learning_rate=0.04,
    max_depth=5,
    min_samples_leaf=30,
    split_policy="structured",
)

model.fit(X_train, y_train)
predictions = model.predict(X_validation)

For structured mobility or operations data, dense columns might include trip distance, hour, weekday, coordinates, route context, or category flags. Add sparse-set columns when each row has route-cell, zone, or similar memberships. Decoded OSRM or Valhalla routes can be converted into H3/S2 sparse rows with build_h3_route_sparse_sets or build_s2_route_sparse_sets.

schema = {
    "dense": [
        {"name": "trip_distance", "kind": "numeric"},
        {"name": "pickup_hour", "kind": "periodic", "period": 24},
        {"name": "pickup_x", "kind": "numeric"},
        {"name": "pickup_y", "kind": "numeric"},
    ],
    "sparse_sets": [
        {"name": "zone_ids", "kind": "sparse_set"},
    ],
}

model = CartoBoostRegressor(
    n_estimators=200,
    learning_rate=0.04,
    max_depth=5,
    min_samples_leaf=30,
    split_policy="structured",
)

model.fit(
    X_train_dense,
    y_train,
    sparse_sets={"zone_ids": zone_ids_train},
    feature_schema=schema,
)

Why these choices can matter:

  • periodic:24 treats midnight-adjacent pickup hours as neighbors.
  • diagonal_2d can represent oblique spatial boundaries more directly than axis-only trees.
  • gaussian_2d can isolate radial neighborhoods around hotspots or airports.
  • sparse_set splits on list-valued route or cell membership without a wide one-hot matrix.
  • fuzzy routing can reduce hard jumps near spatial or temporal boundaries.

Forecast Regular Series

Use forecasting APIs when the target is future demand, counts, or other regular series.

from cartoboost.preview.forecasting import ForecastFrame, ThetaForecaster

frame = ForecastFrame.from_pandas(
    lane_demand,
    timestamp_col="timestamp",
    target_col="demand",
    series_id_col="series_id",
    freq="D",
)

model = ThetaForecaster(season_length=7)
model.fit(frame)
forecast = model.predict(horizon=14)

Forecast outputs use deterministic columns: series_id, timestamp, horizon, model, and mean. Use rolling-origin backtests before making quality claims, and compare against naive, seasonal, local, or external forecasting baselines on the same series and cutoff dates.

Graph And Learned-ID Structure

Use graph models when relationships are part of the observation process: directed flows, zone hierarchies, route networks, or metapaths. Direction is explicit, so A -> B and B -> A can be different facts, features, and embeddings.

Use neural embedding models when high-cardinality ids, such as locations or route ids, carry stable residual signal. Treat these as hypotheses to validate, not automatic upgrades.

from cartoboost.preview import NeuralEmbeddingRegressor

model = NeuralEmbeddingRegressor(
    dim=16,
    base_model_kwargs={"n_estimators": 80, "split_policy": "axis_only"},
    final_model_kwargs={"n_estimators": 120, "split_policy": "structured"},
)

model.fit(X_train, y_train, ids=location_ids_train)
predictions = model.predict(X_validation, ids=location_ids_validation)

Benchmarks And Claims

Benchmark reports should identify the dataset, target, feature set, split design, comparison models, metrics, and meaning of the result. In this repo, benchmarks track structured regression and forecasting tasks over real data families.

Quality claims should come from real runs with fixed comparable settings. Record RMSE, MAE, R2, training time, prediction time, model settings, sample size, task names, and split names.

Do not publish a benchmark claim unless the CartoBoost row satisfies the primary metric threshold under the same split, comparable feature access, comparable tuning budget, and complete baseline set. If a required baseline fails or interval coverage is not actually computed, the benchmark is incomplete for that claim.

Save, Load, And Explain

model.save("duration.cartoboost.json")
loaded = CartoBoostRegressor.load("duration.cartoboost.json")

explanation = loaded.explain_shap(
    X_validation_dense,
    background=X_train_dense,
    sparse_sets={"zone_ids": zone_ids_validation},
    background_sparse_sets={"zone_ids": zone_ids_train},
)

Model artifacts are versioned JSON and include optional metadata, feature schema, and training configuration fields. Graph and neural standalone artifacts are complete model artifacts. Feature-generation artifacts should be persisted with whichever downstream model consumes their generated columns.

Source-checkout CLI

The Rust CLI is a source-checkout tool while the Python wheel remains focused on the estimator and forecasting APIs. Run it from this repository with cargo run -p cartoboost-cli -- --help; it is not installed by uv add cartoboost.

Documentation

Download files

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

Source Distribution

cartoboost-0.3.7.tar.gz (804.3 kB view details)

Uploaded Source

Built Distributions

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

cartoboost-0.3.7-cp314-cp314t-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

cartoboost-0.3.7-cp314-cp314t-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp314-cp314t-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cartoboost-0.3.7-cp314-cp314t-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cartoboost-0.3.7-cp314-cp314-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14Windows ARM64

cartoboost-0.3.7-cp314-cp314-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cartoboost-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp314-cp314-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cartoboost-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cartoboost-0.3.7-cp313-cp313-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13Windows ARM64

cartoboost-0.3.7-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

cartoboost-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp313-cp313-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cartoboost-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cartoboost-0.3.7-cp312-cp312-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12Windows ARM64

cartoboost-0.3.7-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cartoboost-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp312-cp312-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cartoboost-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cartoboost-0.3.7-cp311-cp311-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11Windows ARM64

cartoboost-0.3.7-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cartoboost-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp311-cp311-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cartoboost-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cartoboost-0.3.7-cp310-cp310-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cartoboost-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cartoboost-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cartoboost-0.3.7-cp310-cp310-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cartoboost-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file cartoboost-0.3.7.tar.gz.

File metadata

  • Download URL: cartoboost-0.3.7.tar.gz
  • Upload date:
  • Size: 804.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7.tar.gz
Algorithm Hash digest
SHA256 91c89f9b6f3ee3176ac290086a76c3c90d0ca87ff3c9c4886f62ff54d7b4a586
MD5 01aea08f09b52dc7709d9b8fe875462a
BLAKE2b-256 79ed79e76d2c4e55a1b53dc3d56091516408d60109d996258f14056087d849f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7.tar.gz:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7877555e80b03b248b4dbf67591741e47b8a8519047bc5c335ecdfe5053bedf1
MD5 83a3c4bd78cc48c2d4608294eabdcff1
BLAKE2b-256 ae103141f2e53b75c3ed2e99816a6e3410cc8cb3539c2021e5a8f3d7db01fc7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-win_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 53099d41f1b1049190459eae95b78bf640970c231cca8b46395ab2ed0aaaea58
MD5 bfc9a9bf55bc01c7eec1fb02f19b534a
BLAKE2b-256 cea5d059d1d8d3922d4af40606529a09e1ae95a154e50c646912854e41979fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4481dacc988c3b68cde10d81d827988f7f3f5705d0d962946e933dc78d0c0dff
MD5 8ee7f40209889040faa33d7ce578af79
BLAKE2b-256 41e1eed82650c5bf0221b588e7b46a7c2aec190fbb114ee45138f6db8727380f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cb00173812399b54701930aafb0d09776b4587ae1e39a4cb31d8bd3b4110486
MD5 36e76f2b5015440f3bd5b79d4b3eed76
BLAKE2b-256 3a1a7bd6a00c66d88f28faa1e5cd8f82675f09e3e281c80bf687977b73578e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7961e847a6e67ee5580d0463e642212b9b4c8dd22566ad5a681175f201d96768
MD5 dde9578722cf3cb9696d92c474767c24
BLAKE2b-256 863b225f0d4c49e0ae4abccb8226b2d5854427f857f02d6ed3f294283c033ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b749658b03ba53bd5a934bd2a236d854f5811094f74662f648d81f33af3e876
MD5 90cafc9a3df09aa8b67010fbf0ef36d5
BLAKE2b-256 cadf26550760ca867e393af90049d8e11a75053ccf031c426c4665c4043b3c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f6340114f65f3d05aa10977c15455492c2ef8936523af20c9122295df98832a5
MD5 4f5bf76975dfd3e83cd3767c8f368fa5
BLAKE2b-256 edc499d6343dc27d926cd4390600022843a8c8211d43f0b25cfb27b6effcdb97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-win_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b6d30a0d6e45aa4b4bf8515309f1aaa77871aba739f5a36418ce5ccaffa2573
MD5 b7e35cded1e0dcf5a96a03610d90165c
BLAKE2b-256 b64cacdca3ed070d2111866b738103ed360accc53911b935f230468bb26dd514

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 873e11b526e6b6ee26177c9c3d3cb3af99ab22074245c7967d914312e1d4a07b
MD5 e109f9c3dee720d0689a0b7cc6aa3081
BLAKE2b-256 1eddc1407b009ea23f2458d410da62acdfc13ef5fb8d579d525d7ecfe14d033e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58dc690a7256f61a4997571bb7e400444b3f46813ff9a74e6e00c250aa112c3b
MD5 5e4231e0ee6ab824bf59c91c030e66d9
BLAKE2b-256 8c139f59a67a73be534d1fe67c762e209e90d333fe70bce9abd28b4b502c396e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62c6a61655350fb6d86ec52a55641fcb94f0af4b785e46ea2838c4651365f186
MD5 1d88c2c9a52e6d5ed168ccac126a5d89
BLAKE2b-256 86887d5106f363a0301d93d1bce771b5742ea9d427cfe385f9fa57651dd77b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f0d3545169381c153a691caa73cde13f15d31518f2f73b13cc334d42cf71079
MD5 f8d536be5148117658677048cb11a6f3
BLAKE2b-256 ed785e62e6abf9881d82bb6241337d41c8d600296e0f8c54e48b392543c2f233

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a5f1125b10ed4ed954bef6631ae784d0cdeeee252cdbe425f324a82133427003
MD5 2d03e3c44e584d23a25afe41581ddb83
BLAKE2b-256 4f10379ee4db348eaa3c15d81005a15b920151e6d79d3b3087c4c3cd4291d719

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-win_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.0 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 cartoboost-0.3.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 84a6b56806e59c4241dd33a70373384dddee410719886c771ad2a88c601ebac6
MD5 0d3e48c7054e32fc4b172b9718adad7f
BLAKE2b-256 97731b9392a35313c3b3e792e6faf50cedcfc62b4cb4a7a793a8ce72d2fc1041

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c614003c3ce7bc34ca34e5fe609e0f8b38849b49563e33ca2e660b6bdaf2a7
MD5 faa2b980c70586c456aa96367c771d51
BLAKE2b-256 16a3a28968914e836df9041615efe29f4f7be1e4be0a065e0869a90870a69782

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb98eb49117a4c024d0424d3fe2fd524adc12865ff9409f61627384ef1ea1e2b
MD5 e1809e9e01402e39213f5adca45d4074
BLAKE2b-256 3556de86ab349ddbd99e40cf7b83376bcd78bcb0e54c0046bd49b0654948579b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2712a577ebcb30a73423e215d0239af3bdea4f6ec71360134cd03d6fc76b561
MD5 7954e7a725d5c1ed9724c7673439f947
BLAKE2b-256 04f0d0b4545682a217e90a0543fe2a90b82c64c0ff30c003879a69821d3410b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4e946a63ab71059b6205c155bfeeccec81a92ea40e2d89f0b151290183ae04d
MD5 151b8fb431fec6d57c12f729f9ee3eb1
BLAKE2b-256 530a48f7e91fc67725853555398b913378f8baecc1d2e07456445fef99041c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b122acb7606521cea13f49047dc6293a6d9c7c24c78206ff9539a613385276cb
MD5 c70b1cb536f12828ebbc6110e2b491f9
BLAKE2b-256 e1b449a97eb46842ad8b67e14747fb2c289303ea5d28126c92d720e71b072999

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-win_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.0 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 cartoboost-0.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8507bd16cfb636de254e1f9c4b07d428e994305973266483c09922d6ea91dec
MD5 9821295a2bdbef5ae588317033e66006
BLAKE2b-256 5c81f37d523533e2a00b3b4a4fa57da67b89f1d8112f438801da7d6f3f54bb73

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f61234a2ffbb9b5f345496d8f5b0c0ff3ebe8a62c33cb9f0d7b139dd69edd097
MD5 48c2bd5a98d20a195624f2752dc820cb
BLAKE2b-256 6eca87e03937af478f20b012d909ae5f5b067ceec0ec4c3c4c486718a0a0037c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a3877de412d4451e6ba2975303350b73c27141133ff37b3db94325f4aa36544
MD5 01d2480728ea0cdb1fab077fdec401d9
BLAKE2b-256 3c36da7d79d4f6bf6f0ca56195dbc24e591f60b7ef4bb4d4e50eccf2fff8604f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6907a6807a43774a7aab14c2fc7019282c95e7c29b8560e812dd24e42baa92b9
MD5 21dae08dcbbf532ea3b8e3a5125dab7f
BLAKE2b-256 4562dd8438b155c705c1a17d3229974ee28193a5299550bed126195645e71a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58eb3c45097a40b299c7b3e50abc7f6cd6d303ddb343956f21321b5bbbc14fe3
MD5 4c124a8d5f5a0e704556ada055fe568d
BLAKE2b-256 63d7dd632fdac39ddd5beeebff29cd39cd29493601561f57f1579b66dfdbdd64

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cartoboost-0.3.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b48e86b1ca0523183a6bbf30332edc9a11eb68081cd66bd79eaae947e95c1767
MD5 ccac061557de8c2251e0c6d091de25dc
BLAKE2b-256 f6c86355687b3fe26e63ab8cf7f00f5c692cb96529265b0854f2110a4e23b33c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-win_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.0 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 cartoboost-0.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a3f399da126c9793921d1bed20f0117800e2ac357f710da3665454167e5997e
MD5 b8d9dd5fa94e44b72acc3ef13946f862
BLAKE2b-256 03db406d5a689c46b6ff68370144379e143682fce573746d0764ae35fb9a3360

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f891758bacfd68060cd8b554261a623d0d3077278121e178b8a20169969ebf3
MD5 b8e1df6fc2e2884b559eb0aa514c1c24
BLAKE2b-256 fa2cb0e5c8b79fdf2fba7543309a6b9d29f40df1dab094b91dde4cf65308c699

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77f88e80672a26a58c4f6eedbb79bc92d61acce0a19ff284d12ae9d57c16fbb0
MD5 de42f9760715b0669bece4642786c2ce
BLAKE2b-256 4f0af710b6a3ad496ca992f4c9a395240852cbe6b9c7f4296b601ec4e2218f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a654ec4c55734e27834e5a7eaba5ab1f7df381c260546af7875b1e36f291e9
MD5 9d27e7e519decd1a72ad9963d4054d54
BLAKE2b-256 ed157c7902a4c5f6dbabd9582b9e1adfa90d30aac1e009d13db0fd75fe09644d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7d4491dcad1c83deb9a9697cc0e48cb9e80da698db8afb051a6a90678009b2c
MD5 466c78cfa51e01b4d6ee402b89cd3d5e
BLAKE2b-256 6e4f150c55da797b8751b3b786be93981c3b2906308af137607b211657580dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.0 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 cartoboost-0.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e7a103f883649ede4e88b51e712be7a98a9b48a274c78d60e33af4985ccd3cb
MD5 d7ec6595e789f95bf92def9a774889f9
BLAKE2b-256 60e7888a56268fe1219da9aa177153a89cf3eb06d153084b4858cfa1ed57c685

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d4180aef64ce5839c3b66238f3fda555df1837423b07b19c0547c06a3309494
MD5 80ae7a342f1e771e3677ec2a2c454854
BLAKE2b-256 f6827c056406c6a57f19beffba6aeedbe7c733c235acb899992ae728a683df19

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d3b7538cc27d14223648c22862c69497a130599edc64142be68739efb77c8cc
MD5 5b54dd52d2e25acad4f724302b2373d2
BLAKE2b-256 9f7fc2f822cbb3c7613694b7dbdd7afc19673585a74ec324080e7ba7ca729a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1fc31c857954e4e2f7b64464a709ab8b0c973c03123cdf5895b7e1db48ba37d
MD5 72eba4aab5669e1552582a52ad016afa
BLAKE2b-256 5c545e2e757b469824b75b35ea6c68c9182c5fd57dd6bf90b0bec565808b4605

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

File details

Details for the file cartoboost-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 954fa73575af87ec33ccd806026021e7cac75fcbb9b3a3aa7364b4b75a40965a
MD5 2f849dcc5478e2d87304799443bbdeff
BLAKE2b-256 ba75838925ea6b90cf56274c8b568bf27b8115fe7a1ed066cf502d00a94af208

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on TheCulliganMan/CartoBoost

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

Release history Release notifications | RSS feed

0.3.11

36 files

0.3.10

36 files

0.3.9

36 files

0.3.8

36 files

This release

0.3.7 This release

36 files

0.3.6

24 files

0.3.5

24 files

0.3.0

24 files

0.2.45

24 files

0.2.44

24 files

0.2.43

24 files

0.2.41

24 files

0.2.40

24 files

0.2.39

24 files

0.2.38

24 files

0.2.37

24 files

0.2.36

24 files

0.2.35

24 files

0.2.34

24 files

0.2.33

24 files

0.2.32

24 files

0.2.31

24 files

0.2.30

24 files

0.2.28

24 files

0.2.26

24 files

0.2.25

24 files

0.2.24

24 files

0.2.22

24 files

0.2.21

24 files

0.2.20

24 files

0.2.19

24 files

0.2.18

24 files

0.2.17

24 files

0.2.16

24 files

0.2.15

24 files

0.2.14

24 files

0.2.13

24 files

0.2.12

24 files

0.2.11

24 files

0.2.10

24 files

0.2.9

24 files

0.2.8

24 files

0.2.7

24 files

0.2.6

24 files

0.2.4

24 files

0.2.3

24 files

0.1.115

24 files

0.1.114

24 files

0.1.87

24 files

0.1.86

24 files

0.1.84

24 files

0.1.83

24 files

0.1.82

24 files

0.1.81

24 files

0.1.80

24 files

0.1.79

24 files

0.1.78

24 files

0.1.77

24 files

0.1.76

24 files

0.1.75

24 files

0.1.74

24 files

0.1.73

24 files

0.1.72

24 files

0.1.70

24 files

0.1.69

24 files

0.1.68

24 files

0.1.66

24 files

0.1.65

24 files

0.1.64

24 files

0.1.63

24 files

0.1.62

24 files

0.1.61

24 files

0.1.60

24 files

0.1.59

24 files

0.1.57

24 files

0.1.56

24 files

0.1.55

24 files

0.1.54

24 files

0.1.53

24 files

0.1.52

24 files

0.1.50

24 files

0.1.49

24 files

0.1.48

24 files

0.1.47

24 files

0.1.46

24 files

0.1.45

24 files

0.1.44

24 files

0.1.43

24 files

0.1.42

24 files

0.1.41

24 files

0.1.40

24 files

0.1.39

24 files

0.1.38

24 files

0.1.37

24 files

0.1.35

24 files

0.1.34

24 files

0.1.33

24 files

0.1.32

24 files

0.1.31

24 files

0.1.30

24 files

0.1.29

24 files

0.1.28

24 files

0.1.27

24 files

0.1.26

24 files

0.1.25

24 files

0.1.24

24 files

0.1.23

24 files

0.1.22

24 files

0.1.21

24 files

0.1.20

24 files

0.1.19

24 files

0.1.0

24 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page