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.4-cp314-cp314-win_amd64.whl (17.0 MB view details)

Uploaded CPython 3.14Windows x86-64

bodo-2026.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.9 MB view details)

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

bodo-2026.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

bodo-2026.4-cp314-cp314-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

bodo-2026.4-cp313-cp313-win_amd64.whl (16.5 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2026.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.9 MB view details)

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

bodo-2026.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

bodo-2026.4-cp313-cp313-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2026.4-cp312-cp312-win_amd64.whl (16.5 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2026.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.9 MB view details)

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

bodo-2026.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

bodo-2026.4-cp312-cp312-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2026.4-cp311-cp311-win_amd64.whl (16.5 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2026.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.9 MB view details)

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

bodo-2026.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

bodo-2026.4-cp311-cp311-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2026.4-cp310-cp310-win_amd64.whl (16.5 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2026.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (42.9 MB view details)

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

bodo-2026.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

bodo-2026.4-cp310-cp310-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for bodo-2026.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd97f07f622897dbb399b4022442509e1b12c7adea16413fcc79448dfde05887
MD5 43b4f4a340494379b34d44f36b3d620b
BLAKE2b-256 17519b6ff1acec9f636940ded8355dcc1fc800fc96128dd5ffcce63982ba6c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 435224214c06ab4e6cbfac87bfcc5c31cde1961fb2af13affe465fbae8d03408
MD5 6c020c995463ae3f5c8b4683471a7ed7
BLAKE2b-256 a68895a8cf412ebcae70d1e667704249384ef083e8bb62157a4c622474ba438d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c61f3898a046f771de4ef336e8e01747fec2172a2a650797942f0cf7155fe37
MD5 8596eb43eb4246f3cc0d0dfd7bfc0133
BLAKE2b-256 d4ded670fabbd6e8fb9fc54479e5113acf47e35bb976baeacc555bf9d388c80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4c8bf2731c4eff4944bda8d0cbf837cd3a300fa2a783f3392f0261def3b98da2
MD5 33b65a71c2407da46ae873d3a8636cf4
BLAKE2b-256 a31e97ed237c05b587a9e0d8d1ee52416a01811eae07e2c184be4bf4e52a4f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for bodo-2026.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 40b7af7f62db1ae9457b969de181953c83a4f00f86c4c63861992107448c5eb0
MD5 137a740707d3b9c9f4203a8599e10f85
BLAKE2b-256 dca284d8f8ee86a42fe199f8b5a154a100ff1ef79513d4cb678bf983ead35af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 541e875c710786cbee90caeaa5c3b52aff24e0031b97ba8e00f77bc57fb2d591
MD5 2c98581897ea3168e4bc38ed7062761e
BLAKE2b-256 2480331e2bbca09bebc7497b71d574acd68e93302b693984239d8ad1905a03e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a30ba3cb475d36c3e78a9d635880aec5ce3a4f9a3d275986fab623edb849d64e
MD5 2c10dd94984a04fe20c0d85e16709a2e
BLAKE2b-256 595e2ed6e16c00db025bffe1a603055cfcdbb72333fbc66021236560b1acb8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 fcb7768ba713bc3a0f30bc72cd3a871e405e8b9801f9cf621fe2e61c073a2405
MD5 704d2c0bea99f0c95422256e5a6409ce
BLAKE2b-256 709efbb2534e041abc52bfdbf6374e97029b1360d30a595ffc0c1e1caaf51931

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for bodo-2026.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 993fd2ab586ea43464c11960b2f5a8e0a893543be9aaf12ce968e83b64a5c4b7
MD5 22487cd75f8cca228e07e2bfd4df650b
BLAKE2b-256 4ad12be64c81051ba55fe580b76a77c3b084ee7719e13f73dc866b37e1c1d978

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63ea98d928403ce2cbc0689e166ca316e4bb88ed21fe95d9cb3b98d4c6da604f
MD5 18bddf2cb742ae2e96e327474186959e
BLAKE2b-256 e73f92d7e19f8c7c9f7a5c28b38caafe1713e94bc3452f8802c753ac08663bb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b75dbe7dd12e6b2fc615496938d837f5fe5144c6ad9e1f43def90d167a5adae9
MD5 328fb407817482e57929d57923378885
BLAKE2b-256 429756d7a6afeaad643450105c6d9a946762df90e29dd593f9836dc64892e028

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2fe0cfa987a73b687d3047dd20074b66c289a8173a1d43cd0cbcb3aa1034955b
MD5 19ed830eb67f720c3e69be403b731ea4
BLAKE2b-256 438ef3992b24f4ff14cca1f5f3071705555bd8a3f747e0a278bf89d15cc5f191

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for bodo-2026.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39acbc6c3aea8eca7f61d7e9ccc0e93f0adbb5b547bb8ae028d8ef5f1a1ee02c
MD5 2adb6a87e7fb4b8edeeef4830ec830e5
BLAKE2b-256 033379b8f885549abb493e20a512870495bfb957be74b7baebf5a3b2356a0023

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50b2541feb3785899ec687382bf7d919ba91dc7e927fdf78974f2cbf4dbd9fb9
MD5 2356939841f5a4fb37680fdabeea43cb
BLAKE2b-256 9e6c959c88eb009827491f0a4b33b064fcfa8fa92bf46ad68cecc84f18e519a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aded7f1a5c062b67bea2e3e0ade1882512ca2a427599a537b4a235c17da5d041
MD5 570f6ab2dfc5cdbd595f14133a5d7f7a
BLAKE2b-256 e0248e385487cb708238f1cb216514f13bf61a8b5c1ab7320332148dab21de59

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 08037234a0a8cc32222af93bcc7920728d465947f6f370339ea30cd455f35bc4
MD5 8880a2f0c64db6101bceee363d78c6d9
BLAKE2b-256 ddbb88568d6736023160bd611ab4e0303ecaadce35d5345f93ebf31c73f1cb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for bodo-2026.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c1618dd0dd45146a19814757edf40a1e24698a76cec464891664d0169faab46
MD5 147dffc7335b40e66c1dd1af379b0657
BLAKE2b-256 f49eb3bd9e5ef28be913aff9a3270ada3c379eb155783249187c247136038e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc87194041814e7f56542a1c00624909338c1da284b6f4203bb983d8f87ac743
MD5 6582366038a6ed9955491f7f2b7afa65
BLAKE2b-256 0c7207e9267d6078bb67f1a08b0c8b984bdba5a763b63f53ffa0239dc7e37ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9f34769250d495e40663066d6a7673db055ed8773a924efd7bd7198857a0c4a
MD5 78ce76724116fb0481af41bc13c2fe21
BLAKE2b-256 49f5a9b306429afca87c6cc9c2851cb166d5628cc5e6e03c0a44cda058a96883

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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.4-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for bodo-2026.4-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f56f71e3811d0e9750dfd70f12e68bdd909f88c0d65478461ec726ac5d1140e9
MD5 78d713c61b08e3e8bf2fe47ac207dfb5
BLAKE2b-256 fd2a8c661b2151ac285417d283473e800a2dbd9aed5a87952e6eab82b13eebc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2026.4-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