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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

cartoboost-0.3.10-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.10-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.10-cp314-cp314t-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cartoboost-0.3.10-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.10-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.10-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cartoboost-0.3.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cartoboost-0.3.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

cartoboost-0.3.10-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.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

cartoboost-0.3.10-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.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cartoboost-0.3.10-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.10.tar.gz.

File metadata

  • Download URL: cartoboost-0.3.10.tar.gz
  • Upload date:
  • Size: 820.4 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.10.tar.gz
Algorithm Hash digest
SHA256 634730bc4e846970f248e9c1aa84578da7038847b8e7647fbbb97a780c418813
MD5 82f5fa8ba39155388b078d762ac9b181
BLAKE2b-256 6d137bed54082f3a16f28ce998d4d6843a234a10441db41c0faf9581ee947bd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 09f06b273cd775ec002c5fafe02c9e582f43054c3af1bb5f4320965548470c52
MD5 56e5879625a966d67701b6aaece2c752
BLAKE2b-256 79459c5a9f784e80addcc7cbd4f8aad70660a758f5326323d0d6eea5f070ed39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 51ada2a3c7d90a69d0b4e6265e9ae6445c0e58a34e08d64f5ceef3034a6c3171
MD5 1cad37a23cb4d162af19ee6242362a3d
BLAKE2b-256 f1d8f7223cf3ef2b1749be89086a1c1e1ca8c3ca1528d7ca37ac3313faabe1a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c261d9951a6dbfce066edfe5dd09e18c8365845737601dd7c0f9f424f2f8a4c0
MD5 266244c65ef6b3fb64bfb9720abe950a
BLAKE2b-256 b467454e43f51a6516294393b4839ffcc614fda8492f9ce7b675aba825d86f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3169ca803731b5a739538a9064450edcabdf9e7bc9a781d9563a5ff60e0773c
MD5 998d41c3c9a2cd04c0df96a4aa37b3c3
BLAKE2b-256 4627eec551276795ce14c8224b01ee0a1623d5971f9d100c09531f4885d10a67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b953cba42a939dd7a01c1e47298bd0047c2414a3e0a0a8d2f222ec3af9463c6
MD5 fa53f1d089f61df301b74558e088c05f
BLAKE2b-256 a85531431953d04faf716f6081cfcb7707fa0d879403f2f3af98dfd9ae392b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaf64ad050672151ee8b45c60604b53a8a8865f49929dc5b8c1aa611a4e90e2c
MD5 1c61df4f04f999f432aa1b41dd27601a
BLAKE2b-256 39c7ff626cc1572ed417cf84a0636a2cac341236a809f8b9a9e1c0e12d5400e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6ab4de3591f649252c414c64df282ec6bb99b31676cdf2c0bfb019036268ccf4
MD5 87f35d7910c2572e12455c7390849464
BLAKE2b-256 88259781446c78ae82d76abefb0a0f81037e9e132374583f45da1a2d39bac8a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36f1d3370cf5a80c45f79ef70ad232b6d1f0dcdc6b09a07d4693007c0758145f
MD5 659f427b6f25840f27090087281a315d
BLAKE2b-256 e6588cb6c938b574eb92ff870568d6ae22f912cbc376aa8246590c72fb987baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1081d53c6da9f7825beedd6fbaaf052c1581af4b6c32e05c02bb03228946b2ee
MD5 22f59aa18c50dfa6ac65b1047d7b7054
BLAKE2b-256 ce28ee5c7badb9c110d80573c0ae3618342d484df6935c23dbc4e90af4ad77c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e58b734546f152c190a101858bfbc393e48268bcb03207320c73c31515074532
MD5 94fd328e1d169090c7f10b74baba6065
BLAKE2b-256 0eb0561234820c338cbe20dde83b2c735bc4fc1bc2e4bcf3a2eec1b1fd30370a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d125705bb440efe75dd773def5245bb4aa1b8a004e171171db6d1ca5edb497b6
MD5 8cae6c9c37b743d56333ab3899062f2c
BLAKE2b-256 d490a3107d47c60750d3dc1d483da189cf2625f5b21420f05b1cc330a706b6a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de0a68b361cfc7e56b6b71177cb7d26e62a917372d5249dbc9cc9cfe900ab7d0
MD5 fb4d508120ecb041cb32e946d2e4fd0d
BLAKE2b-256 9e0fd61fcebf37d52f57dd7e5ff94d03e2c2fb25d8f04fea9ff28bf3564523e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1f92338579534831de7bd45b7878aa1812b3c3df03d9a80bc0e5d84bb8cfa06
MD5 1cb3a59b648096970b977e3dcdb22f7a
BLAKE2b-256 08cbe10d69244077348d88b08d77ec777f591eb8d4d26cb234777a65da265ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 365b890db8ac6dddcdbe99647c451879f7caacd13fb6ee33862ab5318b47dc4b
MD5 cca9f8a6a228c928c364ce1d285f2c8e
BLAKE2b-256 05ca7948e730e690b8baed466b314f0582d598881da0671bdde0673a10a1591a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa7a30232cb744bfeb23038e7280c4558cb2ec43a1d873f7412aa526e8f5ca43
MD5 7ec0185e44840d12c46bbfe74d81447e
BLAKE2b-256 372bbd8d1b2e32f74ec92e9658b17c31bb95f8cb20ca2d99561f7adf04e92f02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5563008f706e7787bd11f343307ca9aec4903d7b1da354a5858b321b66f4b2d
MD5 63949f00f73f94f1affba39da0cba6f0
BLAKE2b-256 1e55444785313d411e7b81774a4064f5c970cac1bd6b128d00dc364be046f423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 070ee916fc9d083d515063a03f1b5b053c107fa66fecd618bb5340f77939b867
MD5 ae7b6185c4bee231e4aff78957b11c30
BLAKE2b-256 24d5854a292592366e232a8d8d954193f20c8602bde20cef06c83d1d7f967210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6c50742c2e70989309a37009b3d3b466c26e82bf819332dc22a57ec8cd285ee
MD5 2d1e87bf811fff3ac2cc2924c7740c74
BLAKE2b-256 913cec77513c26e1cd909d297b5546008e6aef3b96a3cfd259cf68e46b60a89d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bc72dbd99fda7d839e421576d38e7ccd65081c90e830e25fe6a54e9cedaf400f
MD5 a1a7f775b5c568a5187fdb6299369cb9
BLAKE2b-256 666b40fb95aa0651e513f2be66eabbf451d7933dd7bfc7619eaa2567a2b33d59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72b7c79798cc8a6a4187b99f9738820453ca5d23302ba98caf8bed733169fb38
MD5 668752a48257b894e4fdc1d769fb0671
BLAKE2b-256 f69b456e898f65d9451195a8dc3ed9f8052063c6e1c6896b5d3ab02a85108f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c240b68df3a1b66129c20880aa38456c6a6729e79acb5a46f02f53361deca1a
MD5 f5f5ed102b253747b1f541a66b34caec
BLAKE2b-256 dcd839c48ea504eb0af5c5cc5572e008a44708f94da8b4dff59560abffb97646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc5c8b5ee5486c25d294416a303a2e5589d91191e872ca79b9afacec913e3386
MD5 a4b6814635846706198ce682d4ef4fae
BLAKE2b-256 592e1ad4ce4b6597055d70a9fac14c41cc1d5126868158c16dd74e42f94fe024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5a71f4e4306e7edfe1fdd9b62db350aaa7e2958f9f0fa30db3b22390a3f8dbe
MD5 66a30688f4fd35630146f92b7c5dea4b
BLAKE2b-256 b707eb6b7d061296f44d51f762e31583f77e933712a3ada16ca6ba522abd0fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fc735f2be015061e285e366ed4a554fc4c2af425c18a3e6c222e3a3a2022642
MD5 f8ffeccf17bb88d0aaa0060ee5cf7123
BLAKE2b-256 b819b494ba249706a2c43ccc37f0a0db93447a0ebd9b9deca64177b524cf9bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b10a1b00aaea7f7d7042f5bc18e2e1916cc07f44167c641392359bb66fce8f47
MD5 1c6e13cf83d9a7c694b2e78fe109305e
BLAKE2b-256 9ee16b078a32d5b9c1c83cfb475856488fbf83628ee66095d72cf2435cf2614e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8c3734559d953caea39784604a818dde28cc4ff3c12b0f69ccf7f8abdbee0dac
MD5 a206546961ae0dd09185ff84d56f4f30
BLAKE2b-256 c95b0af2d4cea748770bc7ff23740fd348acb68bb28b90ca029741378bd9acd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 449992760a40eabab808bf4471853162b0acfd3da273755cb76824cb03787772
MD5 e6998f04ed1afed4ce242c984414b81c
BLAKE2b-256 a5d306d7ca333a94ecca9f7483bfb0e31a99117ffc7ec40df352f6b016578614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d91fb7b9246358d358915767f609fe12ff0a56a1b6c8b5fc0666d3f95825b61b
MD5 47d0340c1db5cceefced38ae811ddb23
BLAKE2b-256 232dd846d3c4e9f783f3dbbdde28d15b3fc28a7b9a75576be795ef9ddde8c690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bf3fee97648cec00464b81bf83df1ee1f00ac5d1e83c02424f199b2de28391d
MD5 3732641159a654d01cb86c462d7bbcec
BLAKE2b-256 c75c81e7a9827f9d63b2e8d98078117d46f8e245bb9f112ef2cb913a67d8473b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17368ea4f540582acb0600ac8fe8da77e7d49003acd839b0bbfac4956c738bd8
MD5 f030b8774e17ae2944a800245c1116a1
BLAKE2b-256 489794251112c7447b289ab45806fe626c9afe25ac36ac8b19f61249afdbfef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34a552f4bf5dcdf5bd615fd587d8bd5bb166f62f1708150d2fb07d41f883b0f0
MD5 279303cd423e790301ca61e2546cfda6
BLAKE2b-256 8132113c36d052d692728c8e797033997097d99976e871baed0591f5e7af9256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69b6f0d15dbf23a51b7b4cf2ffafb7e229f48a308dc62ba4696a56ed009d20f5
MD5 9234b50a3a9acaedfb91f4d6143e21f2
BLAKE2b-256 b853e6eefc3a0004ca3c17f1c3538caf7c1b19f395b162fe5debf06d62984a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b2faf2b4a3915e8dd110564d705cd3206f415b9e86ea27e67db330f7e904185
MD5 edc053e299b0a83ca5ca1f1c6177ab5d
BLAKE2b-256 52e57f43ab5d72afa2065534272df04ce9c5c4e9639901adb675fdf6056c188a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 504abda8497777b5620ebdbed2b45d953885bc71904513eac9f5d32b468737d2
MD5 d635b09964a0a515fc30a3dc753c83da
BLAKE2b-256 5d4d89d2c12c00202cceae5410f64d80357dd8d085aea741c079b48bc6512de5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cartoboost-0.3.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 963d1c0b34a5295bdee85f705b48a9e58de89c8d1bbd608ecaa7216c447b6e97
MD5 ea084d4e7b1276389ab72b20959704c4
BLAKE2b-256 41b61ffbf0459c45bee637a74274eb462097bdbfdb6f18f65ddffb0fc7ea51ed

See more details on using hashes here.

Provenance

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

This release

0.3.10 This release

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