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.supported.

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.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 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.9.tar.gz (820.1 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.9-cp314-cp314t-win_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14tWindows ARM64

cartoboost-0.3.9-cp314-cp314t-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

cartoboost-0.3.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cartoboost-0.3.9-cp314-cp314t-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cartoboost-0.3.9-cp314-cp314-win_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14Windows ARM64

cartoboost-0.3.9-cp314-cp314-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.14Windows x86-64

cartoboost-0.3.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cartoboost-0.3.9-cp314-cp314-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cartoboost-0.3.9-cp313-cp313-win_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13Windows ARM64

cartoboost-0.3.9-cp313-cp313-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.13Windows x86-64

cartoboost-0.3.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cartoboost-0.3.9-cp313-cp313-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cartoboost-0.3.9-cp312-cp312-win_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12Windows ARM64

cartoboost-0.3.9-cp312-cp312-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.12Windows x86-64

cartoboost-0.3.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cartoboost-0.3.9-cp312-cp312-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cartoboost-0.3.9-cp311-cp311-win_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11Windows ARM64

cartoboost-0.3.9-cp311-cp311-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.11Windows x86-64

cartoboost-0.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cartoboost-0.3.9-cp311-cp311-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cartoboost-0.3.9-cp310-cp310-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.10Windows x86-64

cartoboost-0.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cartoboost-0.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cartoboost-0.3.9-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cartoboost-0.3.9-cp310-cp310-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cartoboost-0.3.9.tar.gz
  • Upload date:
  • Size: 820.1 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.9.tar.gz
Algorithm Hash digest
SHA256 c73118ea4f5f3b5d78a4881a4b5ed01f29f0fa2b5eedf92f2a9342e9b6d196dd
MD5 dab20b6911084b25014407ff1fa917cf
BLAKE2b-256 32a2eb6a3089de9fb48aba80edc2ff189822edff9e58ec8500b4c77a1135f154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 686e6d8fa33f2e3e108643fc52c85be99647859d21c5c2cfef641a592819a688
MD5 fe61f94b543233f707015fc1702e7bb9
BLAKE2b-256 97751f208e17f9b7302d7ec6ba65471bc7a618bed7e8ee23b6c716ec144ff0d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c8a69ce92b94010b47c3a91f3d43561fc1d8ffd07d7035c8732cac857cc8fada
MD5 d5b01dbd672049cde38cb280800f8364
BLAKE2b-256 48764a47619915abca8cb44c427906e19605036407816095266f3e83a7753d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d661f0c9da926f3fbb47b1da8381d9d70ab6e0c472a9950a2ef934cef9655070
MD5 f817b79c9d8d9ae3825aa1830221fa3d
BLAKE2b-256 83e0b6518af584d2bc2c99cc597257572cdcf533016e468748cded443a853635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 282e884b6271a6dd63382e441d6cbe92e1a6fc1eebf7e8aa3c19791d1a796034
MD5 cc5d51d4d237abc560a4e73711742dc1
BLAKE2b-256 cb2f0e04e969db86a1e18b9623e7f551f1cd9732c0be76c1bedc69ffe6eb0bf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0084e6932003414a618d39818e8dc12be017be71630e268854f19583a1888398
MD5 528736dc6c443f67e830042a39740a83
BLAKE2b-256 f09c558ab9b484e038ce48eca1e325bcf45395cf398739ddc2b679050c2ee4b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f45921fa60c0a0ac9c7616d34e0d46b0d8a566596aa05c0f4e0c18bfa834acda
MD5 6eeb762769b1206bcc4279e0eeda6264
BLAKE2b-256 5a6f94901576a36bba6dc113f07bcfb84fe078e8674ef502a35040af17257e43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 4.7 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.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d9497fce6a06634930207276ec7886db2b4b2b2bd8b723bb08015673c217665a
MD5 23e1f8d4593b93d1186b7e45730f35e7
BLAKE2b-256 60c1fd1d46d1f1e3068d793e114918f8ad54d5775bbf5ce6ebc20319c3dcfb36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5cf781cb47cb1086c868796f621530a998de5a66c844be598acce5f1a8f9d8f4
MD5 4b979f172c911fb9e7dbeb3b95957442
BLAKE2b-256 17defabe7e6ceb8d32db05283f721bcee249de7ce062851b21986ed01b84f462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d51035726aa7dd3dd214c4da5329b35ca61820676bbeed5a4b28bef71a948674
MD5 d1956a4ce8991b1c7d0ca9a582ac4911
BLAKE2b-256 94d55ef4fb335aa69a20fb97d4e45780b4b22c5361a94177ee2887e8aea56aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c246253f0d9d61239c1a71b3309f93375482e9c1e56873db726921806dd6ee5a
MD5 4b5f43cf267f1dc901ef6e9bc279af97
BLAKE2b-256 1b2abfb62554f1ea0f2c02729ce2e9dd134debe34eb7630ad28c077f638b5b0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7956057a8847ba30c0d118d155cf0f69018f92f9726d64857c5c5bfc60d5c67f
MD5 b362c9570699480c034ab6cce8f4b6ba
BLAKE2b-256 79fa2654ff8b1dff843c6d4690436a6610b9f2257892543b35ad06def15fb2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fa85cf9565f217e747c725226b1686b34fc77ae35ae274673cfc479e44f1429
MD5 401e9f347a4ee777d83cf5130efbaa51
BLAKE2b-256 4a464b28db2ff7f8831d6e3c2ee44a3ca1f07a7da530420a04cca14757c7aefe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 4.7 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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 86539de40d76ce76faf00dd784255ea0586f7931e3ff6a10b8312f03625543df
MD5 5afe5e72c26040b980e84c27c79595b0
BLAKE2b-256 94628b86ab4b953cf6b79300e879c4219413825e25d83c028915e412c1262938

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46519c5d510bbb494722cc8696793341b185817d8533b977dd49f9d965fb0b17
MD5 c3b53d6d121a2d50b136612c0e4f9ef9
BLAKE2b-256 265b072ef0c2202e921132109a37267163a382213b4948b10db2984d4f63f116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8474be8c5c16e2bbb572ab40935976a05bad4f6b11828c598f4a73a4f0ab313a
MD5 84524f58c06c9670b565145f711ee86c
BLAKE2b-256 d29c1acb2f87f2929d8ebb6c7bb6e6fe44be136934a7a86018d4eaf4d373de0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fa3e2c3e089bf6de6ec8596d0eba1f5c24ce63905f8b5c62e395192d32e6971
MD5 362a2d10cd642d83a9d1dbb0ecccf520
BLAKE2b-256 4185323288dfa968d77dd57ee9e1feec1dc6e4246839372d2c7b45f71947713e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ac00ffe44c987b9a355fd7f2c25e49059fa17f119742f900b8d409b4625f51
MD5 a218570cfddac8800a8ad36a4c473c8c
BLAKE2b-256 0862a25af8a03ccd3269e112987e55fb64ab350816b1f3cf728b090d8d76c053

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0420b03276ee7ef30411c93277ad4ad0fa12b1cf17a7b9c49700332175cdc3a0
MD5 5c9d8195ed9dcfdd49c098574c3915dc
BLAKE2b-256 ebedd15dc0b4e25bf372817490875aa690fe3516519888c84f23e0594fa73f9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 4.7 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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7346d9009d49f09dd310b5ecf9cac528750204d4cea3f557898f596994fbc144
MD5 1cda18b3120a2860484cddaedc50abc9
BLAKE2b-256 a6d508b6924204cda8e5eb015ff534c79ee76a6f65d7c89b101487fb23a8b0e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8419f03840c73692a72c87d09ec58b7720e7b9b86cc8e43b79e6a8864b2eb7a
MD5 e5fe2d0a91311b8f7fa8f9a4784c140c
BLAKE2b-256 cba12f65220f5ee8c2b7e2b473f869011e8bdbb64099b22d4f188885628878f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6dd44cc87a5d237fe356c2034b0e3ea192f631934686a78e28e8e1f20c065c1
MD5 6ac0890b80087d375b854d8e475d7e82
BLAKE2b-256 3fc1469297ec04b20e0764dc7aea7e3bec9805a2ddea0e84d7c0af3af3a01127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fc89ce98dcdbb86df1f467244b49498d58ee4bc94147bb37e365a57002a60b1
MD5 445d84dae5ab9e533dc8b04aa7832487
BLAKE2b-256 cfce0a6062b821466c5c47f90643afa2ea61d7a77909e4c345ae09185dd0e131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1de66ef67e57774063c9b682d2b87c09161325bb513e51e6b919597c48d864d6
MD5 1c8351ecf3438500ff2a46c31024aed2
BLAKE2b-256 3843dda2fde5b162552d50cd52e1646d8523e3fb859d662ad60befe3156140c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b6bdec92567420aeb34962b52ded28f9adbcd5d87ebe5d2528e471c29216a4a
MD5 6c9b97aa762ebcfad6ccc506a5c64896
BLAKE2b-256 05e66fe7984c49d521efc5fb41e6cdad3cd0663364321ff1e395ee117449199c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 4.7 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.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 748ac1d6ff77c5ec86921f5c5d5068f16342ff04bd5a80850fd9b9b310193774
MD5 57cc7cbeb6ec148e088db02f0a598232
BLAKE2b-256 411a95c8f12d765649c76cd967ca8094aafc0ca872dd8acade279dc8c1b2c9bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b75351d7fbf1dad1152aed4cb86413cd05501ba8fc6e72d7463dc8511061e72
MD5 eec3ecf5858e39a0500bfce18942407c
BLAKE2b-256 66a140d39fbb4e90cc472240c03ba66efd78677df2aa671ec1570f46980c274a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 592686e7e4795e194b8f8e6ba63c7199df4f4d41428798bdd5cccb0513e6afee
MD5 a3dbb79ac72b1146d6346dfedebd3fff
BLAKE2b-256 502ec77a01d5702ee9bdff12d0cc9eff9de8d2828688651c6e3fc0d0c3bd8139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa36b990153a06fcaaa16e72f992a6dab3eff5318c01548f599583882d804882
MD5 81110d061cd7a8058f0a081f0944f658
BLAKE2b-256 b186e5dd3c205c8ba44bfff2a8d437f9193ffffe8057f4a5c7277c211f9b3da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27568f5e2a5186f2b222542e69c4ea7aab692f15348955a10cbcefbbfddf2b92
MD5 c8c7d460945233370692265d6f01bffd
BLAKE2b-256 ec8d05caa7160a2f077cbf7e651434041310d209793ec44477fa304c1e953016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fa91dd4254190dbd1afe5e26dd1fc8609b829d1027d30a3dbcbf30eaaa98270
MD5 b2b0e09840edc0e33b358c1564850ec6
BLAKE2b-256 e37ac2ab861e03a9f7251d8e6470e53a0fec0ca191e4413299b4e375a772ee05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cartoboost-0.3.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13ae316fd4950f2414028d5cce8e4a345a8914835fb9f614191319483970a28c
MD5 7d28f9dbb1cca178621882c9590d3aad
BLAKE2b-256 440c65809c6b519fb0e3cba7813ab0ce6d9684009cef13ee0f9626eaa10ddb7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab91dcec824e5ec7bba160967d62f987b90442486957b82b8c0388ae23ab77c7
MD5 fb2aa1b4bbf49708834ae792307a6458
BLAKE2b-256 af2f82d8bc88c70a78a96ba26b7844b28236e26391be34cf53c1c324879f8838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05ece45e43743ee631bfeffb911894a70abbf1c6ab71b34398f70f6cefbfaa3b
MD5 f96c0cd70b648b829f0d1b5e4df78c31
BLAKE2b-256 5088c47310d92176659bbe6d5f704a3b626646acf64a4258a682948b946c3d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4412145e203fc43805bb907eb82930d1ebd183ed36370b5e24580da477e0ca35
MD5 367a7821c57e3517fc1c73d7bbe4a464
BLAKE2b-256 6b4ecbc89911b5b00b41846d7e3ec450723a9cc2256a587af76a31268a76a099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 207846885aca4115a057776149925e6b6bf3d33a10027f9e0c2266275dce6eb7
MD5 bd3b0b41db54498db40e9303959a17a9
BLAKE2b-256 b364d879c0c8b95f05b04c337be2c02ae79a3e9f6418d2cdfabe87256d5af238

See more details on using hashes here.

Provenance

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

This release

0.3.9 This release

36 files

0.3.8

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