Skip to main content

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

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

Uploaded CPython 3.14Windows x86-64

bodo-2026.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.3 MB view details)

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

bodo-2026.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.6 MB view details)

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

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

Uploaded CPython 3.14macOS 12.0+ ARM64

bodo-2026.8-cp313-cp313-win_amd64.whl (16.7 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2026.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.3 MB view details)

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

bodo-2026.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.6 MB view details)

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

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

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2026.8-cp312-cp312-win_amd64.whl (16.7 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2026.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.3 MB view details)

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

bodo-2026.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.6 MB view details)

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

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

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2026.8-cp311-cp311-win_amd64.whl (16.7 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2026.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.3 MB view details)

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

bodo-2026.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.6 MB view details)

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

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

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2026.8-cp310-cp310-win_amd64.whl (16.7 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2026.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.3 MB view details)

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

bodo-2026.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.6 MB view details)

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

bodo-2026.8-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.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bodo-2026.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b891176cf5f14d25aa0dd802d776ecd8e4d5a64414c42c18be58812f9ceb1bcb
MD5 9c6ef688406fbc8f534b716ee67e00ca
BLAKE2b-256 b2a16f71127d4f80da2789816e8c2a6b6e268aadfe09a90fad8ffef8a7afec7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37c6c9dc91adb7fcfa6848726f882be39024d6b762f75baaca5e134397a9f1ce
MD5 8a201c6f63830b1784f61707e0d66170
BLAKE2b-256 c965790bf78aabf327ec8c1717d43cdc972b44daab954138492892b431f720a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51c2c4e28dd1d845c585574c53ee77a043bbe5cc4403feec4860287e92840f1c
MD5 76fe37eea8a9d4903cc93fd7c1eaa67d
BLAKE2b-256 be320d1a1bbb0ffd07d7e7317d30b99c0bc547a6f3a917c4f64b065cf5bbcbc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b34f6cf46088f9a6f85967241597a9d34497ac0959b54d540f6b134483795a28
MD5 e41c955e66dc84ffd3b0887ef413d05e
BLAKE2b-256 0d7e0b2ca46e261762e409d6cc4a7a83d98c5707c74cc62963d751c8a1ae9c59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bodo-2026.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 482eaef16b97b96e4d861d7993a09b51adb4962b8d5529de21f350b17f41cf6a
MD5 553920e0bc74982273f35048a48f27be
BLAKE2b-256 fec568c9bc835344993ca243e271b4151f93cccee633fe1ff7f1f133d3d99a68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b377fcbddffad771b9108f554846913eb74e5acf17156bd49a05dfe11fbcd33
MD5 7f0d8e0fd8f952248f41d4fba5256652
BLAKE2b-256 bffc940a9ee894aa9e4c2f21ae5b7151285622c709756f2ddfa3e1f08e4dfc68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91b77bbc1a87f11f4c03d8df7bf62d84268dc32b54f11119b4b2d0cc5cfe0c18
MD5 3e107760a719d2eb2e3b37bed7220255
BLAKE2b-256 b25bd3d2db5928ab6727a93d29cac3fd9407830e224c2ae36756a655d471bbc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f3e370a71b4f2b09c0e842d9b1a4b3e944f0e80e643bd01eab3f79c739416b30
MD5 dfacca1b6e20dcb960b8ed7d092ca046
BLAKE2b-256 d7eb0418a7cbc6d5060cd04e35867ccb13e041d13de6f24add82b22779ffd3ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bodo-2026.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0dfff8f4e51d553694960b3a91afc9a65dd53fa529284dcd0bde9b3fdffaea95
MD5 139e908e784d0f010ba4d33ce4df22b6
BLAKE2b-256 8e1a1078ff2333d5eeed51568b2f7b981bcbe941ea615b4bd9effb5a565bbb0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6060e687baced5cf59d6172934ed3aa667ecd286c90edde2a56cca5127ea1dc
MD5 98376f2851e7ed0a6c736bea23dd2fad
BLAKE2b-256 1a3ab20c62b93bff8a5a41084a1ea7b791d63c11137ded583ec02aad3fdb7ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da6bd03d0490063280c28fd203f60690975ed2f593a614ed1c71e4b063eb5a86
MD5 b21e29b7574fafe665207afb622d27a9
BLAKE2b-256 043bab58c12e564749af18234c637973a2f03afa49a45ced6a880b23fedc2e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0bb93ebaabc9e3c2a97516a30c9a96766c9192ef218ae3612fd6c142eb599fc7
MD5 64d1b4717947b992f0007020e0bcddf6
BLAKE2b-256 297db55a527d3b0bc1e63e99ed67514d08679ad5a9df60c0d1ee3334b9f36195

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bodo-2026.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61a55fb068da5628a72a4615a3dd24acbea276f6a70f57eddf487bf0caef5cc0
MD5 77845ba604e1ddf098479fe15c8a505c
BLAKE2b-256 e8b4b2f2c524e36d02f88ad03ec6b5217ea4c607f51f528cf8465340a021441f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e02525cbbba56ee86175db2d1c173cd417113d274db440ca4b5f1231e1290954
MD5 84d0848c7f27cc446e3cb6d294f59910
BLAKE2b-256 b7fc20585afb4abd9c9c575b240de9f77cbaba591d3f0995492e350a578b6588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39cf4b30881e3574d4ee8b235da35573a3f242db1150897dcf4d5df01f0c498a
MD5 ec943eac504de10341cc58471629ef79
BLAKE2b-256 6d2565bcd4df72bf1f74f159a2728d76bc3557be14654ae300f922edd43e6ccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 381c30733f2b720329dcd58bb02a358e19584a274a763705f5d824bbbe5a5ee4
MD5 c4d00cd493d6901410cec6f826e2f50f
BLAKE2b-256 3bc000745e4a07b4e9c3b0540713e56c997f4c669c82684159ded5036c2d09a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bodo-2026.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cb0e23b5d9800be0398c3137fd23abad7bd7736aeec8714a2d3f823d1a03eb5
MD5 83a6c9bdcf82ba256961a721b9517332
BLAKE2b-256 7425649c3af0a62503de1cab57f671802871e2271144874ed817c0488fe00acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec6c4b7df645b4c4e5fc105e140e94622b1b20de9e25306544b038148486ec54
MD5 f39824fb4383427b52caf3b99e651946
BLAKE2b-256 85c97518c0bbe7e5cd28eee7ec13b55b987382439c9f25a3c7f8a5d7812a71bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 915da0d364a334110f3c67264a6bb5961cc1af0e963a89bf75c72b416f91aab1
MD5 5b6e312e243b70580abed7900493d8de
BLAKE2b-256 27cc6f7668454033591238383c8fbc17518d865935fdf39da4e68319a227fe7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.8-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9234d1410900366c28a2689f0001495b23e102fe6b005880f4ce6547173e307e
MD5 990569db2721583ea114340ed61f8542
BLAKE2b-256 b890f074bebe8331b6a790327be8502966568119594637e19fe61c5530f97a21

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

2026.8 This release

20 files

2026.7

20 files

2026.6

20 files

2026.5

20 files

2026.4

20 files

2026.2

20 files

2026.1

20 files

2025.12.2

14 files

2025.12.1

12 files

2025.12

16 files

2025.11.2

16 files

2025.11.1

16 files

2025.11.0

16 files

2025.10.2

20 files

2025.10.1

20 files

2025.10

20 files

2025.9

20 files

2025.8.2

20 files

2025.8.1

20 files

2025.7.5

20 files

2025.7.4

20 files

2025.7.3

20 files

2025.7.2

16 files

2025.7.1

16 files

2025.7

16 files

2025.6

12 files

2025.5

12 files

2025.4.2

12 files

2025.4.1

12 files

2025.4

12 files

2025.3.3

12 files

2025.3.2

12 files

2025.3.1

12 files

2025.3

12 files

2025.2.1

9 files

2025.2

9 files

2025.1

9 files

2024.12.3

9 files

2024.12.2

9 files

2024.12.1

9 files

2024.12

9 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