Skip to main content

High-Performance Python Compute Engine for Data and AI

Project description

Logo

Docs  ·  Slack  ·  Benchmarks

Bodo DataFrames: Drop-in Pandas Replacement for Acceleration and Scaling of Data and AI

Bodo DataFrames is a high performance DataFrame library for large scale Python data processing, AI/ML use cases. It functions as a drop-in replacement for Pandas while providing additional Pandas-compatible APIs for simplifying and scaling AI workloads, a just-in-time (JIT) compiler for accelerating custom transformations, as well as an integrated SQL engine for extra flexibility.

Under the hood, Bodo DataFrames relies on MPI-based high-performance computing (HPC) technology, often making it orders of magnitude faster than tools like Spark or Dask. Refer to our NYC Taxi benchmark for an example where Bodo is 2-240x faster than other systems:

NYC Taxi Benchmark

Unlike traditional distributed computing frameworks, Bodo DataFrames:

  • Automatically scales and accelerates Pandas workloads with a single line of code change.
  • Eliminates runtime overheads common in driver-executor models by leveraging Message Passing Interface (MPI) technology for true parallel execution.

Goals

Bodo DataFrames makes Python run much (much!) faster than it normally does!

  1. Exceptional Performance: Deliver HPC-grade performance and scalability for Python data workloads as if the code was written in C++/MPI, whether running on a laptop or across large cloud clusters.

  2. Easy to Use: Easily integrate into Python workflows— it's as simple as changing import pandas as pd to import bodo.pandas as pd.

  3. Interoperable: Compatible with regular Python ecosystem, and can selectively speed up only the sections of the workload that are Bodo supported.

  4. Integration with Modern Data Infrastructure: Provide robust support for industry-leading data platforms like Apache Iceberg and Snowflake, enabling smooth interoperability with existing ecosystems.

Key Features

  • Drop-in Pandas replacement, (just change the import!) with a seamless fallback to vanilla Pandas to avoid breaking existing workloads.
  • Intuitive APIs for simplifying and scaling AI workloads.
  • Advanced query optimization, C++ runtime, and parallel execution using MPI to achieve the best possible performance while leveraging all available cores.
  • Streaming execution to process larger-than-memory datasets.
  • Just in time (JIT) compilation with native support for Pandas, Numpy and Scikit-learn for accelerating custom transformations or performance-critical functions.
  • High performance SQL engine that is natively integrated into Python.
  • Advanced scalable I/O support for Iceberg, Snowflake, Parquet, CSV, and JSON with automatic filter pushdown and column pruning for optimized data access.

See Bodo DataFrames documentation to learn more: https://docs.bodo.ai/

Installation

Note: Bodo DataFrames requires Python 3.10+.

Bodo DataFrames can be installed using Pip or Conda:

pip install -U bodo

or

conda create -n Bodo python=3.14 -c conda-forge
conda activate Bodo
conda install bodo -c conda-forge

Bodo DataFrames works with Linux x86, both Mac x86 and Mac ARM, and Windows right now. We will have Linux ARM support (and more) coming soon!

Bodo DataFrames Example

Here is an example Pandas code that reads and processes a sample Parquet dataset. Note that we replaced the typical import:

import pandas as pd

with:

import bodo.pandas as pd

which accelerates the following code segment by about 20-30x on a laptop.

import bodo.pandas as pd
import numpy as np
import time

NUM_GROUPS = 30
NUM_ROWS = 20_000_000

df = pd.DataFrame({
    "A": np.arange(NUM_ROWS) % NUM_GROUPS,
    "B": np.arange(NUM_ROWS)
})
df.to_parquet("my_data.pq")

def computation():
    t1 = time.time()
    df = pd.read_parquet("my_data.pq")
    df["C"] = df.apply(lambda r: 0 if r.A == 0 else (r.B // r.A), axis=1)
    df.to_parquet("out.pq")
    print("Execution time:", time.time() - t1)

computation()

How to Contribute

Please read our latest project contribution guide.

Getting involved

You can join our community and collaborate with other contributors by joining our Slack channel – we’re excited to hear your ideas and help you get started!

codecov

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

bodo-2026.2-cp314-cp314-win_amd64.whl (16.7 MB view details)

Uploaded CPython 3.14Windows x86-64

bodo-2026.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

bodo-2026.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (36.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

bodo-2026.2-cp314-cp314-macosx_12_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

bodo-2026.2-cp313-cp313-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2026.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

bodo-2026.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (36.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

bodo-2026.2-cp313-cp313-macosx_12_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2026.2-cp312-cp312-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2026.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

bodo-2026.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (36.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

bodo-2026.2-cp312-cp312-macosx_12_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2026.2-cp311-cp311-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2026.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

bodo-2026.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (36.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

bodo-2026.2-cp311-cp311-macosx_12_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2026.2-cp310-cp310-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2026.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

bodo-2026.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (36.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

bodo-2026.2-cp310-cp310-macosx_12_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

Details for the file bodo-2026.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bodo-2026.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b5e37f411d68a576aefe5377b8febdd3781c4ffbbf6acc516a7fcee9b40e1b07
MD5 0298f37b529f1824498ed0d72b1ad1b9
BLAKE2b-256 b7f291ae4ef38ce0a43c1a5b5de9af759a7588ae30958fbc51b5849551209019

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5f2a2e981f67f13c1f7585701cd7230bd09b01f0ac6acb8698a1409adbbadec
MD5 d97bc8736b97a0c3e41c483f45e05560
BLAKE2b-256 a42881db6b092def25de9b2a46e7acbce9585bd2093a329cd81ada32cb810385

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa2e23b830fdd4ec26e990396b2f3afe123268fe395c9549dcce8d514d6682ab
MD5 f54c85db6e48045cb0cef954930c3a41
BLAKE2b-256 3114fbd55a5df84d43e5c91b3b0036f4ba557d9184f474d86f012bd4c5fcb079

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5aa9c549ed74d71eb24fba4c377a5be146c7e192b9cd8c2d90ae39a71fdfa0f7
MD5 04f1f0369ad8ffd2df2cf48c56ac1c74
BLAKE2b-256 d9d2858e4970aa31493088835cf22cc47d1bf473822290b1838426e97120b6d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp314-cp314-macosx_12_0_arm64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bodo-2026.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 498297655fc8055100de6b0cd91367bd474fd679cdb381e75a140a80b59a2ad5
MD5 eae7e150fa70097f41c8d2d0d4e90c9f
BLAKE2b-256 fdfb85c7f63dfb9b0ae5c53279ca0dae54f476cf9a1799e942552257cb2284f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c7cce565c21b812d33a1251ad4bf1a3847fd2465bdabdfc141323040ff8634e
MD5 52e1b3a26f264346f4dace2409117768
BLAKE2b-256 c4554e62037e8f4dad3dcd315fd35524d8c495860757fcf3ae796ef144ae0336

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e26343ff69c49c44dc06fbf25a388478a34123f1af0dfdf9e74c26ba06ecee3b
MD5 29c954361fbeb6405db806324fb4523f
BLAKE2b-256 436ff976d3fa8f17c6c79bd10ac01a722993d78d377b735870f1c72f8aa961f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 576bdd5278af8823b810190e5ec9313dbb14850463fb1fbb35208d1036cf2e97
MD5 32a3b88b64a5adb4316266b857a2a4b2
BLAKE2b-256 3d2cdcc0bb547c84b7848f5c539bff9ffd3d8ca4c42faec9600d62692fbf7cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp313-cp313-macosx_12_0_arm64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bodo-2026.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2fafb02c77cb7fb32cfac73dca661f98268b852117f3bac53200fcbef1ea3957
MD5 b4e7f645aaf88dec948a6daff5cc4800
BLAKE2b-256 f0f93abe0edbc8fd8f0a72106949ea3dacca09caa56df4fdfff64a2d32d5ccac

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 192c9ddba22b35df7daa38b53b3ab48d8e8540116c75adc7bda2936194fd130e
MD5 0d248c525b9b87ee44585473f1e7024c
BLAKE2b-256 347f2d2379f5e436385a206e76cb3e7fc0285503c95b41f9b741ea1e2a390145

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ade86ad58a5650be18aef6d5863e170c150640a0f0647371675a0d062589e04
MD5 888680d8cf69515e7b3b43378eb4c126
BLAKE2b-256 83601db2f0c1dc93fe6d07c8de4964dd0a0b40732693a34717bc7d802e466543

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f05021545a21c4b3230fb6f9e8351bb4969fcffea78a8ac5e5d40fb76abcb80e
MD5 373c141f5454d35b5dff3674603ce767
BLAKE2b-256 7e71616881bd60033ff5d5082c33bd530a918eea93421d8bd74261be7b3c8983

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp312-cp312-macosx_12_0_arm64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bodo-2026.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 748e70f6f81df8011424c6f1cc6ee9efe3dd8354075fccc296b77beaba5dba67
MD5 ab6cde84c0d87e57fa30309776e46b7c
BLAKE2b-256 8559ba4d4644f9e3fe1483c055ca1b57a1cf18f3693c8fc689621fd17b0311a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adda7d8255676757bb9ddf77616dd53b8c9aac42b412ffd097cade2001304193
MD5 109b09aae6e44442471c511ae5378788
BLAKE2b-256 f2fd82dac08b950f2a5884b359ab3b64083373fb245589d9be17230b1f7eaeb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5acfb50cdcd2136d738c5996eaebcdf375e60732675e52e67d37c9c43df03e91
MD5 0e5aef6f523d012fe4542ca0eb9fcfe2
BLAKE2b-256 c7605c7e88289246fdb483452835ed4d5b94bb15d31d84da8415421eff0ccd0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 1ac5df3d1cfe6caee8e41f4a6911e715beee5bfbafd426ec7676c694d01b96d1
MD5 dd6dca475502c80bafeb775435fc796a
BLAKE2b-256 e769023e9da831d1cb1a415a8d8d052701d33c8ce688883d9925c92d9b083c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp311-cp311-macosx_12_0_arm64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bodo-2026.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04fa878624cacc8b8571d3701315e149725bdfe50f2aac9452339ecbcb5a4deb
MD5 a09e6e511d6a20b6f8796c12d9fc2b33
BLAKE2b-256 9604eccce83a24b99988707159fbabc78140195fb54e6b2629f6246e0c544ede

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32ebd70d94668b0808926f2268c7c44dd75673a67164b686e168b0bca72b1216
MD5 96b3b7b3878d67f6d8a2f0684798536b
BLAKE2b-256 462654478520bf5125ab5bf8b5cfcb618de6a5d22ca8283fbddbdf1bcca2236f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3494633be40cd602cbb29cee844754593899176e36b173b921b6aed6adbdfaa2
MD5 08475e60675f8d35ad78ddc5fc435373
BLAKE2b-256 73f3ae2884b7cd95a9c35adc4d5afe1bda46fd15570f23d9d0fe861189316d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

File details

Details for the file bodo-2026.2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 831f8b0225f2cc6ad47927821c96c2bc1a950ba10f180ce7e1ce1d3441e69a7b
MD5 8f2390ff5636782a2522fff176e9255d
BLAKE2b-256 877a1016afb895402f9006186082c44bf910d0088abf4d477176ce114216926c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.2-cp310-cp310-macosx_12_0_arm64.whl:

Publisher: build_wheels.yml on bodo-ai/Bodo

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page