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.

CartoBoost does not publish package extras. The base install contains only the runtime dependencies needed by the core Python API. Install each third-party integration directly when your workflow needs it:

uv add shap          # SHAP support
uv add h3            # H3 point and decoded-route encoder
uv add s2sphere      # S2 point and decoded-route encoder
uv add duckdb        # DuckDB relation inputs
uv add optuna        # Optuna tuning
uv add polars        # Polars inputs
uv add 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. Install pandas to enable ForecastFrame.from_pandas and other pandas adapters:

uv add 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")

# LightGBM-compatible native TreeSHAP: feature columns, then base value.
contributions = loaded.predict(X_validation_dense, pred_contrib=True)
reconstructed = contributions.sum(axis=1)

# A standard shap.Explanation, still without serving-time background data.
explanation = loaded.explain_shap(X_validation_dense)

# Explicit background data selects the existing background-based explanation.
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.11.tar.gz (1.2 MB 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.11-cp314-cp314t-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14tWindows ARM64

cartoboost-0.3.11-cp314-cp314t-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

cartoboost-0.3.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cartoboost-0.3.11-cp314-cp314t-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cartoboost-0.3.11-cp314-cp314-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14Windows ARM64

cartoboost-0.3.11-cp314-cp314-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.14Windows x86-64

cartoboost-0.3.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp314-cp314-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cartoboost-0.3.11-cp314-cp314-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cartoboost-0.3.11-cp313-cp313-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows ARM64

cartoboost-0.3.11-cp313-cp313-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.13Windows x86-64

cartoboost-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp313-cp313-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cartoboost-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cartoboost-0.3.11-cp312-cp312-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows ARM64

cartoboost-0.3.11-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12Windows x86-64

cartoboost-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp312-cp312-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cartoboost-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cartoboost-0.3.11-cp311-cp311-win_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11Windows ARM64

cartoboost-0.3.11-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11Windows x86-64

cartoboost-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp311-cp311-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cartoboost-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cartoboost-0.3.11-cp310-cp310-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.10Windows x86-64

cartoboost-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cartoboost-0.3.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cartoboost-0.3.11-cp310-cp310-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cartoboost-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cartoboost-0.3.11.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cartoboost-0.3.11.tar.gz
Algorithm Hash digest
SHA256 1573a5b9b46b0e4f2e80d46dce323c07c31851343bd75e76d1089cb5ea19f845
MD5 3d2c0f410b3902c6bd25e473ac4f39a6
BLAKE2b-256 c6d8af3332e0e871d5a2cb8436fe34201c35625554b41205a87818dfb89d8bf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 596e32e301fcc6a3b5bf046e6281684afefcc08df625ea9bd3418873f6654568
MD5 0e77fe686c55577a44974e0ad3b18d55
BLAKE2b-256 b45e4591c9f448b89b62a279bcc52779a893de8e73000eafbcf4ccfe65ffb41e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c2d200f45ad1afd7a383a51837fe01830c9769ed376902b45d6b379cbe6eaef9
MD5 3206da5286472b1d6308ef05ce8cf8cf
BLAKE2b-256 0cf74c96b3098258087e5fff13f98aa91fe3794ac6ba1e77d08b3a64c3cccc49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5bf89ee423f51230348e19c22d5a4e476a7d8454520db91dde946601b2d41cc
MD5 5fff4a60650b66f493e75d4fec66afa7
BLAKE2b-256 9fc2dd3852155cd45644d6b15cc527d491ea15eba2ccf238f742ed0471f49615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9991aab2659225aae8dda5cde3c906019c042f2348914b1e8ea4e601ecec85ee
MD5 254ee516805b15643f00e70d61d277d3
BLAKE2b-256 ebfcf5ae3caae90e1884421134de5fd39baae61dd96e3ceb727d62456e5f4132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d097a2de467fd0768e362416eebf7eba40d0eb49d629121e42b8d7e1e17b24
MD5 cdb3ab9fd45a2d4ce908b06ec0136d41
BLAKE2b-256 f3a921ac725a31a201ae4314350139cf7aabd1f21807e4d78cda0b089c7b8170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 974c0d9a790650a1b36ba80407f1b40fb70a3a2507390b2f95cc19a94ffb318c
MD5 9205f3f7966e3a13ce286daa5f7c42e6
BLAKE2b-256 b0e480b6842670c3d16d0ce9f3ec566afd8aa669efdbfba51ae9479f92528bee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2328646e69d363658d36ed1118229356bb468dbda045770213205e2f88bd03a7
MD5 5928a41785c5e34752e0bbb5d9760841
BLAKE2b-256 4f2142030b723c266c267cda9e04b2496cb4e2a4e3ec9e6fe142fe4141be74c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 91c8198842d5bbae2d685e9e95a4ca1f6f91c9831af9d2708d1566616c950c54
MD5 e415105bfbc6c4ecb925dabd8e85cdf8
BLAKE2b-256 b20e33295162846f5384aa6c94aa740cb28725edf9bce59f2e3ef0f0ba150725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9284f6550bf51451436b884078b43a5d5e00f3881b62cbec108a475a99866a24
MD5 7d4023863c59886a6de21925a8905710
BLAKE2b-256 9294aef289d76b8a8e17dd396fd2d24b0a0544dc5c7452bc3068af4ebf9d6c24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6c3b890c2e544d64307ae1d60338bd3797e2fdfad53b4e6e06275ef6cd1c1c1
MD5 fdabc8f97fe78cae8f0c7919461b127a
BLAKE2b-256 895c6f182a84d3b23f875242dcfde8072e3085519f3a5cafe06cdd9d07e62724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ec60e7c0fc37ef78854f54dc0058d02cba3989b1d0af3ee5f2e703429b583dd
MD5 7f9c63b659975a650d664254ee5447ae
BLAKE2b-256 374d33e946c85e3dbb3b10db1beae6f2e87679f8078e19a230e5cc8bea7f1796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88bc04ff01c2c05db61c69175201da60de8087c7dfd0dd7ee77a67290d51cfe1
MD5 646907f3b7610c14686e6f20dc98eec8
BLAKE2b-256 d5f4e15e60e4f22448ec90203306a4159a64b4c1dc02bbad5bccdf46bf15d9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fbce74d2a3daefd8b6f6b20d87a1e42799cd62b44dbada326bc66d6c4fdcb08c
MD5 b4d136d0a4eee9d25f42a702735e0778
BLAKE2b-256 bf69e1492514f7de22dd1c159bf3584de058000de35f1f41e88bd445ac14cb48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e41c175dae2c018a747b9057dd606d57d66b89119c6a85a1e1dd8e6d8042de5d
MD5 de1f1dd6a7bf632527f3f39176f8c4ac
BLAKE2b-256 29b670211716ecafd7f98dda1c4c973fca49c122f064b5af95e17718c0124613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6cca6f8bf093ed2efdd774663c50d22360e1c127b42944a18f64e767a0325fe
MD5 2c191105861e2b66f483b233ea08c69b
BLAKE2b-256 5c9285adbf0045c685fabc9ea992c5746110617ec1e59f2f05b6663bce96ae08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d44e0267f2d273ba8c3d3cfe5dfe466127b7a29023852c05a352823154dee839
MD5 a024db3303837d1ee44aff5419f28da9
BLAKE2b-256 6fccfae145e83dcef76aa0f080e8591a585a423fe01c7632b844075497a847ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d93a78dc99b1d7bf1fa19e282f76d5aa0858cc8460ec564122caf61d7c9263
MD5 e7f8dcda3cbeaac7d07af86fbb9de66e
BLAKE2b-256 006490638588da7ceab3857079bc74ae349b77cc5fdc93bd6b0b47fc66b52f98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07b5368031f3525669c343cc560bbdbafb483c14dd9a446824982d3e91751e95
MD5 04c23d8f44fed5206b0c8c0f91dbc31a
BLAKE2b-256 f27006d4c26a36b3c9d0ed1af3539f2e4edc42362c78967fae2c7c85c8addd1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2e886092abde2d5008a440bf0220a83b729c71ac0fa585b9c084ee755d8ede9b
MD5 a4ed551c31161f5083071dfa922cdc44
BLAKE2b-256 a636657c0c304162c3030ad9f0b0124ff7862f21327b4fd9794bcd7b7d054b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b99c25aa113a197ed4d1d069dbc4af57749462ec2c93c977029d000c4f40827
MD5 281f18f030ea5833fdc29f35dbd0a294
BLAKE2b-256 58c5895ac6b42814786c5b591a35cd34af33e43ff0f122478d78374dbe5bf132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9dde174e032c1925239f296efd520748f3c9d6861f8cbb46aae7545dc647c1a
MD5 6f9cef188b9ca17927f5bac0763064a6
BLAKE2b-256 02dbb98ec8d9a959b5cea486ceb2f56542c94c299cc31d968885e1d367e77232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ab8dc8bef3903d9f362eeb6f52978104cfefa1e159377f0fb64082f343b8f25
MD5 a587fa2e9235b81bd0b9234ecee7d1ab
BLAKE2b-256 d2e1a76334ef1daef9650fd8ca12a1c1a91a47ee60070c1f3651f11f82a007a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f11e95f08cd603264d5fc5bdb2ae64013c027c62be19c4d148d1ed7cc0fec76f
MD5 1436735b4ee9822a9f58fb385ecbc66d
BLAKE2b-256 df5343ac60435877059aa0c1404f0de3bfe36e50fe00f59450d8b8eca5d1d93b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b71f83991af7f5ca4180615977f3be39da18d67c4d529c22fbc99d985acb0757
MD5 efd70701bba26296a3a2dbd48d5c7dfc
BLAKE2b-256 d1565ff4e45df7228f40addeeed23180af01bf114f947c63668fefd5aedb95a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4dd5384c390db3ba999482bbc8450a956c7613df691077efa6e28e8c5c3c779c
MD5 66b2821db3250242bd3b703e04a40e6f
BLAKE2b-256 e87f4f3dea19a212d21e3fbda252bb7bc9b4a8e2d393be0fe87709d640d2ab9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c3711e667b600ff707112d8118ef0f8eb7f5851ad7e42aee117d68a3ce0ac1e
MD5 de5de9d166e09b1bf2c04a7184ef8b38
BLAKE2b-256 a8a401fb04eafa6116003c55fcbd8f315ac603692172bf84028f509f391a342b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6141b8a017810d16ce182b036ca96a253679f8da6fb64b2e46126a7476c636b1
MD5 164f08d6c9cd278b79ed03d07c156b56
BLAKE2b-256 0c3b7effbd64352e9402ee4962013999ba7bc7b379286b1e84d1c710011d3f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcbbc7446e471bb7837f41fd973c3be5fd87e96684579060853d5cb3157d480e
MD5 340715c470c7b980cafe955c3e695445
BLAKE2b-256 57d8660553cd4aa7fa069347f62f282da516ba2418988e92efe126189c8b0e6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 555849389b66fc78914cba90ceba699b75ae31825e1cc230cfb94dd8863789e3
MD5 587e7707aa65cba78bbd71dee634e748
BLAKE2b-256 3bb904acd7a942ae5c0f818b68255fe071c86ef7737e08aa6c3e4e3398c3f984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e7b2afba0cfca5cac5825543e3b0e723857f61a4337daa5e5c56868d59a2089
MD5 fc14f1e1c70f60c8dc1e8ab68d808619
BLAKE2b-256 b49c127fc4c7744a0acdecfec41a4540ed1896ced69d2776bfed88b17436566a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0fbf6b579c1423af916750cdaa45b390309196bbcf85e6745efc2806257ce841
MD5 6cd8b6751baf60ee7b78a9b6244560ca
BLAKE2b-256 a2e0d605a8f41133619737d4c0a34f02ff5513a7d33b19012433eabe5ea79e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe73daa07e728b1d69a879db12ffe5132435b1a7e38e9e93c747b5b4c5973ce7
MD5 a4b4fe5f108a61bad65f70510c4fba2a
BLAKE2b-256 b88b78d89cae0478d0e5a8bca54e759020abfe95dec36ad0b743e17a3eb907b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2323c4292a9a3944fa17adf667e69c2732bf0614fd3bc1fca4c66c26c568780
MD5 9e2681483070b49c4efed4e70f9785b4
BLAKE2b-256 6d75d79f3b08b0eabbe2c9a25695b182e6433ff079704bbb70424e0ca8906a1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fd8d435d26448a75dadfbf359dd6f573f3c24aec45bcf2c987c8de868bb6a5e
MD5 9c4877abdb32c9fc50e6ebde0d79f8bf
BLAKE2b-256 2ceab74c6b1b967474303c72179497add9805b05071f7b0b6a26f4d39bc0efe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe8ce90ccc61438be117bf193dbd1f745463d4e141f891aa80eda50bd1980150
MD5 f1e44bd589164376eb05bcdb8dec42a9
BLAKE2b-256 36a2bd73653e5664771d5344da4efe633ebc286e537bdbde080f9b184cf009fd

See more details on using hashes here.

Provenance

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

This release

0.3.11 This release

36 files

0.3.10

36 files

0.3.9

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