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},
)

For a fast exact decomposition that scales with the number of rows and fitted trees, rather than SHAP permutation samples, request tree-component weights:

explainer = loaded.make_shap_explainer(
    X_train_dense,
    decomposition="weights",
)
explanation = explainer(X_validation_dense)

This attributes each prediction to its initial value and each fitted tree. It does not attribute original input columns; use the default feature decomposition for that. See SHAP support for baseline semantics, sparse IDs, performance guidance, and the TreeExplainer compatibility limit.

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.8.tar.gz (806.8 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.8-cp314-cp314t-win_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

cartoboost-0.3.8-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.8-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.8-cp314-cp314t-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cartoboost-0.3.8-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.8-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.8-cp314-cp314-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cartoboost-0.3.8-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.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cartoboost-0.3.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

cartoboost-0.3.8-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.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

cartoboost-0.3.8-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.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cartoboost-0.3.8-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.8.tar.gz.

File metadata

  • Download URL: cartoboost-0.3.8.tar.gz
  • Upload date:
  • Size: 806.8 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.8.tar.gz
Algorithm Hash digest
SHA256 47e6e17934a5a03f0709d0210b4ef881dbe2f56fbf617caac59f6bbbabd5ff01
MD5 02a4e0e69c9ccc6188112acde093632b
BLAKE2b-256 717002c547742853f13709da74fa9c87e40822fec59bcd48c3852e36477d7981

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8.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.8-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a235587e954ac533ad9090895e2b4a750b43caaf39659804c3a2c2fb0ad66ef6
MD5 6fc268a8ed513fc412a67fd0a57d67af
BLAKE2b-256 44975d595f1a9ba19f3ca866b17430170a4bfd0aca0ec3b9e98541dde45fba8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0d8ed38a3316ba02f009f6c1b04e6dffbe47f9be7a3151e0af6f3376ed6e7e52
MD5 40385239c3223533b5542868be4411e0
BLAKE2b-256 5a8b1d01b17a1d9d986a83119413fdfc49445b9cda59f8b9ecc976001955d811

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bba8c9b5e251420b9d1ce11d89c7b737d617411b9f109ee411c2464501a2d3a
MD5 f646ef241073e1c43977b87158097953
BLAKE2b-256 04bd45060819b1ed5abab495c03004094f7f0fddaf515c8376d2223d7f2043a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5443a58a1b977ce61e521ece5afbb98cb5407f95d2e8ac466c6564f8073eb40e
MD5 76baedf8065609c811e870688598e7ce
BLAKE2b-256 00f6b06192b3e0349d9a5d4a7b424ce9f14c7717727a951c6f0b0fe5b1d96c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c57538187b92bf47308b75af89d755d4d2cba6290cb67f0c4107a454f6228de
MD5 b793383a1cc030cc11be9a8ca50b82f6
BLAKE2b-256 82a2e2c4cd91bac256de447a41d48827eaca23dba0ddd1db5d11dfbf7bc7b441

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 792d37a879c60274764badac2842a632b6b7da370a133c773fcaaaf900dee41e
MD5 69699f394268298885cff77f535f3314
BLAKE2b-256 c135f06fbaa17c12f321ca27dcd1622d19098e55d895dbb4c8ce4c63e901f203

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 086075d075951a9fc7e5583c012e12f874bb79d5b9e3860cbb631f4df4b0f0ad
MD5 e4770c2199635ff5d3b4e00f91eb2b75
BLAKE2b-256 36d302f2396f138cab06307eb2b588fe56599cd3b94e877e77633ff743aeb506

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8a91e74c62f63a32793be589b6d3c2c8560c07982a3998bd44525aa648a4fb73
MD5 49e0e2fe5a9d14a299c832b4a90901fb
BLAKE2b-256 32d746ed20ef5540088cf0f87b4fccd3a85b0eed405be84bf2c372af9ce427be

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d8310cccf5519af3e5d596588005a029b5de8dcfba9b944379673e34f561a88
MD5 e84db013edcc8f5675af016a0c152a50
BLAKE2b-256 bef5999f4e9128677fdf6453768601e87193fc719ff35d0096b8b76db4cb141b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a6f96ac0b2a9dbe47d6c25ff4d1f6fbb6a469a4592cb7e3e30042c10009ba87
MD5 b6f72763b8f815a1f9c9fce9f30753f2
BLAKE2b-256 dc434b4f91120d89ff3401c79c6459b4bebf3b0cec16199ba4b4be3d9b6c819b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40a4f02ecbd0683389d9cf6710fb1e3e9a77f4451ab513e2a2edd15f0886f1ab
MD5 d079b214306aae7cc7db1b97eaa7b1e3
BLAKE2b-256 aed5a301767fea636c64cdedf023af5c27e62e6a1cacfb635e353a816e0cad5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cec8cd7f4023584443d34d6d611ea528cb243b6ca393d306fb60058dd1f46b64
MD5 5821d95b9d8860652adcbb5e6dbcb179
BLAKE2b-256 98fccc977055af182cbda63b00f1eb5b0d3f9d135810408f8f8dc8d7806d1eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a9b48a9358783321669f4ceb800bcd1995c242feb90fd2711237ee8ecad5876c
MD5 7360e9a5c1df5977b35769bbe08843c4
BLAKE2b-256 1c2923821398e8af4c5dc26ae6ae34a5c3875031b9d137fffffcf7a2888b2b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34b036bb8ce9940f5e8ebc52e68368182252710deba864d402f45b40dbf4a75d
MD5 6f8edf2f040ff5c1d4c7ebc3cc42eeb3
BLAKE2b-256 53f1a1191ff2c5deed1efc386fbdf335671c660f836d9f33f13866cf4ca4c795

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0165ba98f619f7e36074c638a2cc17ca0bebcd0639fbc453396022ecdd745692
MD5 e503804618a01b436dfa5efb3efdef5d
BLAKE2b-256 985f3a8f440aa15422cfd7bad9f5fbbda8a078ed0a4832f3df950fa6bb4232f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 140f431735c8aee918a077966dcb1da6649d2c8f52ea3b7d2a77ae35c58124cc
MD5 9df6f59a5462c22024c8d64802e4b35f
BLAKE2b-256 0cf58664b0bf044f73c79f0ef4a36c07454950ee0aa0a6c749a4b08000723993

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 763eea5d51766f9a3a9093008300334138b155dc256ed8c467585ceb0fbf8d03
MD5 69f09eb8eeb2ea83bcfc1021dcbd10da
BLAKE2b-256 1983b073d301da37529741a77ba2ea1cc6bc2ac56d082a13257c5ca707bca262

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c813f63d9c5fb74da371b6a8976cbfe6bb38b0e3f5b9ffccd7d968d973bd53e9
MD5 56c9c605ea77928071c3a6fa75706b86
BLAKE2b-256 00a287094e6d226adb0b9405e01ec3c56da4ddcd6b9d078598c0118cfe9b4be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f0f916d037756fb99a819fe92d6126a656fa4662d4878de1ead95871fa8ac3bd
MD5 4c99d801f0e14c8214fab947ab448b31
BLAKE2b-256 a54ab795b3c96efed8a81ecb716b668a690972c4923e693b01b0e56c65356dba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75a33d544dc1e448fa713e6953760afce2898db9c208384b3acfe0efdddc5f9a
MD5 72859e51776d2b0bbcfaf871e0c54123
BLAKE2b-256 9a3011b571f81dc823bde902cbabccfb573551a6c584da4d4c78595ed1338789

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03b3d125cf2dc4a7f4eea3ccc118684162c8784769f20b01bb5b48e9f868796c
MD5 69b198a2827c8578be651d237aa1f88b
BLAKE2b-256 dd02f420ae342e297541c270c29dfd89012c72b8347f4b2af42a20c3f7a0b842

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94bfd4429da3ceabb63cc903440c575b06e5dc845db0e308fcc2413898f44a42
MD5 399f49f0dbe4d16ce17a57953a7acb7b
BLAKE2b-256 9ff438e25f7077b6f9c40f55f66fb42f0e5a6640776ec649c6998a37528f425b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92c46138431ac974fe71b89227e47b612628bc5c9ef2b32b2995a420becb9059
MD5 936885cfe036be3e486cb587e37c4a2c
BLAKE2b-256 d1015981a648b27b4cdbda81d2e6ede9b431d2c42f2357fc17722c23c4bc0d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbabb26a22fc13df6be20aa3c3528568f1567a3e7ff339cb14b96135deab9db2
MD5 0a5c956ea817f44f141b568eec15c005
BLAKE2b-256 beb8c00dc49ede99bda571924378529bda0f252ca3e33dbb1addec18f8975c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 80e06bde965b73ccda2cf9d014d3e24153613aa1e5fbc6bc6efba98c8b7e7bb1
MD5 6aae8bb453b6e26e72599922b914f4ef
BLAKE2b-256 69af2ebef413cd3fbfffd5f225ade3423d925f1370947113be124eae615d543e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 075963928af81c13b391d40e8ce08c126adfc8ee30617d782304a2396ee0203d
MD5 3842102363533288313959f001957ece
BLAKE2b-256 c60bbebf7be58f68167a139e6fbd77a15b7c6409478f9594ab6b368fa9a83724

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 317c3aab1f606f2b4c036c7589f9e196763f25703cd5a81f4fbd11d1c638f180
MD5 67e16720e57289664d3344ca05a3e1f6
BLAKE2b-256 451fbdd9960d07934beb184cfdfe085ae1976e314c2230614010870e080fd38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ee9cbe1172cb0396712b337f9c94258af71e63670ccc40e487343f556152783
MD5 1145ead0515d1ddffb2a42771c097b64
BLAKE2b-256 6ef0133f4cd6ff3e5e33fb69a0e51ef25e0c54ee235ad5c4d75b32184f5ac393

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f0649735620836f75dcad8945ca62624114c4328cfab813550f3f9fc2c62f7d
MD5 bd0c5b88905708fff193a5ed3aeceb53
BLAKE2b-256 0b00dd820de43efd5c93cd78e7f00514d5cc804a709b125927543dec168ac252

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c4db50cf9c8aca7ba426c1b43e83369316d7834a9afdfbe4fd2d813e2962d0b
MD5 eb9b8001f4f4094317433ce8655c3697
BLAKE2b-256 bbb5a74ad528ee15ea65c315b07a4c42a251ad7c4d4894794c95b27ac9b66dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cartoboost-0.3.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e1377f7820597cd7034ab0b322aebc40e467bfa5701c6eeea775688966e51b4
MD5 d5b3f3bede4dee8a754e7b7cfd15307c
BLAKE2b-256 59937a5ee1340f87cba97d4e8348c08c9125ec3d4694eecfe0efc4dd800122fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef150b0876a8e3e79690cbd76e7584dd84a7eb729a2570cf7a66a1d45f16df52
MD5 814f398e83028601284d39d803b1e054
BLAKE2b-256 091e9367d5a6f85923749584e22162e66458c7a51a8e5ceb2c6cce28539a459e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d31677e1709151a94f457941082e7f7d901fc3c7555780d55ebadc8f3924390e
MD5 3e2829d6c94a4dcf8f589f57bfb57622
BLAKE2b-256 5236dc9323d804fff8b46e1a65238b2f3330e3e24c864b24b0614e8dfc51baaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bbeedca39601f09bca08a676f92cdadb7c003590a5d1e7aca685b5861114606
MD5 608e7eb282349c647a83dd6d37b19442
BLAKE2b-256 aa2be5f68fb29e40ec345d9a5e9fbf6448d058ebc109b8c34766cb998da5c5cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cartoboost-0.3.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7dce251be1581ed89912e1841c83c8aea81479fc45ad664f2cd535ea7198fd37
MD5 160278289e30c1dc49b92aeef4b50099
BLAKE2b-256 925282300ba93771e986cbe59f8e7c3fe1604d888d1a5dcd0a1f8277930c0b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for cartoboost-0.3.8-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

This release

0.3.8 This release

36 files

0.3.7

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