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

Uploaded CPython 3.14Windows x86-64

bodo-2026.5-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.5-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.5-cp314-cp314-macosx_12_0_arm64.whl (19.7 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

bodo-2026.5-cp313-cp313-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2026.5-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.5-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.5-cp313-cp313-macosx_12_0_arm64.whl (19.7 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2026.5-cp312-cp312-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2026.5-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.5-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.5-cp312-cp312-macosx_12_0_arm64.whl (19.7 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2026.5-cp311-cp311-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2026.5-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.5-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.5-cp311-cp311-macosx_12_0_arm64.whl (19.7 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2026.5-cp310-cp310-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2026.5-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.5-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.5-cp310-cp310-macosx_12_0_arm64.whl (19.7 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: bodo-2026.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 17.5 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 19db3c1e0c6b3b4bda9eff8574ea5cc8fa6ccca74d082c27fe9d84a5b48e5a8b
MD5 1cd58b6c67ddefffb56f5b05c9715db7
BLAKE2b-256 ab93fa2c769dc7aadeb6a5da90b65f93478b1fdfcb8dd8f26e92448979084a89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58d9cd156aecce1c87398adca0bb0ed78ee6baa57c66158d92aafec8ba26b9d2
MD5 78b7c611dffb3c99ad19d20737d97a2b
BLAKE2b-256 084f23c1a75ac2b9792dc5c367aea9ff1759a398ca3824e69813b2e1f05c3937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 197565ba1edf91f2a67415d0ee3aaca7fd39b26cb31d29397466c5e44bdc8e68
MD5 32f93b856e214e5c6bdaafb8b1674b08
BLAKE2b-256 7cad7ed39f7eaac9fa786a69ca81d85de195ef1b5690fe2672afc0027aa5274d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ba34195b870b942cf83dce59331cf5b713060d1fbb5006d76b42400d198fd5cc
MD5 f3a3b36f05c8034f26191dbfa2a9f319
BLAKE2b-256 291da3355762288fd66c9f16d9f64b188ad6e1bf89770dbedd203c35b6001beb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2026.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bfa7f6490d771940f7cd9d7a63ebad9a6cb1cf8c41144993e3e4a7ade4f34246
MD5 a458db8243a724ccacc5efd9927a4eff
BLAKE2b-256 17e7238c50ed65a7522d735ff0f4d8bf7504648176ced4330e5d9871a2f0c65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cf0a901f33354df802e13e6d0b5400c9096a644663a0d833e49e0099f004ef9
MD5 3a227427ded10d0cee0f728b7d5cf488
BLAKE2b-256 465c9ac6ea1a302406dfc70710727e1a1ad6a4c46a0a569533ed5e7e75382c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b04291b420cbfd0fe506f19891110e549eaa2bf7e044ee4a712b350dd5e3f14a
MD5 50b7b93cf5fa0bcdaa7a10f531ad90bb
BLAKE2b-256 9347addca09e375c39cc930a85f5aa60ecd8ec4860db9d41b681847769dc4826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a14d1340e6dba18a743c0d0084fd0da2724ae6c3e959e501a6bf2d8c10f78fbc
MD5 99a4c983fb1b28b35262cfb234ce60be
BLAKE2b-256 537fc445f38d151968b3e051507fb1a370baa9a3fdd5e879266b28b723a6d045

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2026.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 041d5996741129b419738381c64dcbbf49f7f8a82481f43384552d05450ca65b
MD5 a481d0d63b5348280435dbb8d4cb2e54
BLAKE2b-256 788be7311b6978af4657915a19b3f56b5f6de03bc40a0343212d3d5cb1a50afa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba95745501f7860d1c6694222ff4d4914072e6a004397e2b13220a96af5644cf
MD5 20a5fc3027fb23acf0f60e9543ec5308
BLAKE2b-256 f4cb860c19143398733035b0d89a992741a4acff0c1026108d39ae70eccec802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f32cac630bf2fffdec8fedfbf049d08df08bdbb8e682d9ab706dc3cd602a3d4
MD5 d2ff2b16b69636e671d75681e93585f1
BLAKE2b-256 76662f2cf77e84180a741ef7d21586842e98170fdc3b176a62e7a2715021f300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 cd70688cd48722da3eb337b43d8b1fe8299fed3f6e55514ec946779c8d506721
MD5 ea12f2a36f5550953aefc5c67a78df1b
BLAKE2b-256 9247ae124192ddb6159e8297971fa9bbd3cd1a5fd6f052add4c2cb0534e448d7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2026.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 159f5d39259ac04b80ee96495ff8f28c8a549717069c51bc7da85b0e7481945f
MD5 46f78544b2bc486bdd274f529da92e1e
BLAKE2b-256 0a4ff8388b70b600f205f1c9cd05a163e7f51bfe92fb7e445b5af9ae224eee4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb4395c5558989a1cd070b0fab92a7c6a7262acd6dd4973c7712c97e16dc4d13
MD5 2dbfc20362b2a9072e38089a276dc008
BLAKE2b-256 eeb6255b3fe968e2d71a75a9d233357c3b6dab4c81d7bb24ef6313f8b6c4d0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06bc9d03c4d928513a779fbc8d7d56e162e6cb39b5e82365e3537fd96e5d2aa5
MD5 0ae128f7a318fbb94fcc93908f2a60d3
BLAKE2b-256 c9776197090da2ecc71a59569ef76d65a4ecb3a6dc8cebdaf3e83522c5e5f34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b9618d71adceeed6b9cec03f1100b9c93548396de908f447fb6dcb51eec96ddc
MD5 b0d5036dd0dbcc497db16e882eeeec14
BLAKE2b-256 4edc5ad7a6cd5a278256d42e9cb9e874434a08f0bf4118e16a64063fb72b208c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2026.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2060f5c570a436f5c30fd81b636b9ee0273059f3385c9470d1d82059bb5dce1f
MD5 75321a4a89f1bb20a4a9ceb99c165b41
BLAKE2b-256 72c85e8111f8ad6297818cd64824c2a181a349f09422807986277dabb0a84de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b1889071c86a98231a33c5b0eadb9b56f7f722390bba7d540293d3c5295007d
MD5 e342123e2381085eca7be9b2ff03f3a5
BLAKE2b-256 254dc5e1641c96b5e9f5c56f6beaa8a633f11326f46efde336e8b7c3fd2be45d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb2f328869589e3bc697f63edea09f8c9083e2bc185f5f29d423ee287fd10529
MD5 d4972ed7c220fef7f020601b1ad602ea
BLAKE2b-256 6890138b37d641c8ba74849e71c1ba431b2493364e2ca48b0ce2f2bd97917695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.5-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 590be0d5ab8b39365776b0719c8e4f35b381badcac048da5eba0151f96830a1e
MD5 2dfeaced3c8c9db897ecc607589fba2d
BLAKE2b-256 0b285554512d9a67e660f040c395d3fec7ac6e5f7e46a570ed90521dd64156cb

See more details on using hashes here.

Provenance

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