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

Uploaded CPython 3.14Windows x86-64

bodo-2026.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.0 MB view details)

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

bodo-2026.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

bodo-2026.7-cp314-cp314-macosx_12_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

bodo-2026.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.0 MB view details)

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

bodo-2026.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

bodo-2026.7-cp313-cp313-macosx_12_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

bodo-2026.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.0 MB view details)

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

bodo-2026.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

bodo-2026.7-cp312-cp312-macosx_12_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

bodo-2026.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.0 MB view details)

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

bodo-2026.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

bodo-2026.7-cp311-cp311-macosx_12_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

bodo-2026.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (43.0 MB view details)

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

bodo-2026.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

bodo-2026.7-cp310-cp310-macosx_12_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: bodo-2026.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 17.1 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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ca21abd293483eae80dd8fe5a11dfa531d36a2f4d24bd859f3b08ba23d0eaed
MD5 016c1f61ca5658304e7fddd25de75365
BLAKE2b-256 37ee9968d2637ab1f7ed9c38bc269c842ccf8834f16a77ce4a56603b20bc84b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d27125f2a84e43528c6816a8013653ae3317614af75e51999df88df1bc5aadc9
MD5 3d7462fded74448311e151e356768b4c
BLAKE2b-256 49e34b6200a23fdf39b48542e4c355598081cc04539d89306a9ee4da5cdb8d96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02b48015241f9a7b67f7e03cac49ada277a69dd8282687c18cc1d4e98175fdd6
MD5 a8996972954fce1044b8d81e0791eaed
BLAKE2b-256 5b356eb1bda376078f762215e7305e42da481103c10043f4e53d7002b3c2219d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 af6c36f25949b411b3152612cec6a29692b3ff9691167e096344c0f560b6e9d2
MD5 a1b8c1a46d08e6a1730299eac84f81d9
BLAKE2b-256 a2b2b2ba13d1f414dde89b206f2c2fc7ac0163bd968fcc97a677991ced75ebec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.7-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/6.1.0 CPython/3.13.12

File hashes

Hashes for bodo-2026.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e551c2c7010a28e8144a22d03192bc4ac030e0f26b51db8aaf5a2a8908c1b961
MD5 0eb17289222f30d99f7567327dcfc604
BLAKE2b-256 223833155a422209db70e73248f4dd570d46f200fc73d164c4d3e9ba9adeee35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6ff63de6fe1de9bafbd8562554c114f785329ea52437bea85a23365e69a5337
MD5 774e1a7e2d4ddd0a3121e10c4f2281ba
BLAKE2b-256 24683f046f9306937e0818e1baf614ec13ffb1088003df8fb54837df8e0c4939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b4c3fd0ebf34cdc385fb5289598f17017bf3d85543c7c423af78e40eda5652f
MD5 57adb9f4077f443f72e087d7c4439408
BLAKE2b-256 53774639f763977c32c6e55a2f05b54fa2b1050aa3661691305fc61247678b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a98207c994b5cbfb4b6b11080f69d2fe1252dbd8f893c629c6ed4b3d4c0b0a8a
MD5 c3aa0306e933a944790a218dce9b9ec1
BLAKE2b-256 f8387fd30b392f70ae3af44ac328540f3c911cadd3b23604e0a307de9f26e28e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.7-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/6.1.0 CPython/3.13.12

File hashes

Hashes for bodo-2026.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f4e664b011cf6a55fafbf562d72ccde01320b7372552362e55dfd57faa3f15a
MD5 532df05d7238084d58ef30864e53ba4a
BLAKE2b-256 477d164928a891955236c339c2ef26c835cd28b9870205c2394a53760a1db071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00332a8dd090ceb32941dfb09b630c3702e500b27deef3069581a3d77790a6e9
MD5 37c46c72a67343061c800e35616f0e2c
BLAKE2b-256 2d799ceaf787439067032930d2479739f041cc8ddf2283298e561e5e6a669023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f538040e46e6158503b68454d9cccb2c8d239858c3b99d272477500b8f76f0e8
MD5 98602f45feba7f7e046e6b968ce5a7f5
BLAKE2b-256 7ddfb42896fc13ded00224f292a20f207e523e3e3f1f2f14ba0bcf1280024703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 1d9472f8c604b2febdcbb98e723b59618366fd0de0b93ce6d799a1a8a67d14d5
MD5 2130a61d0c427c51a3eb0e3d904fa868
BLAKE2b-256 c0756c88e67d6dee1cbec3f3191dd88c3d39dac7d9b654fddd2855a79d8ec56c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.7-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/6.1.0 CPython/3.13.12

File hashes

Hashes for bodo-2026.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56b1e2e5b6a5fa22006c8faab7ea4826829306ec5d944223e1300f6f09871707
MD5 0812cc182f8b0b3e8b73061d6054fa38
BLAKE2b-256 3843c39b620f5ea4c0aefc89c47b58b65b514daefeb0f73d048658a43003355b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cecfee2d2ca3155a45113d4c0ab8d78d719ea41a287a7fc41192ae7c78342010
MD5 b3d8e9071fdf1b410715fd8bc9139c0a
BLAKE2b-256 c3d92c2ec7d4712d64286565d780fb5e84ea4eb170584cc697ab94332db72986

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09e2c144bd91dd2e1903ff7d35d8ba36c7eaff02c7cddee17019b94a99156995
MD5 66ba2266dbb1125f033d094d5e2263f9
BLAKE2b-256 ffe59643807f14d7ced2094acedc21b46ca581a01bcbc1f58ed113d8561fee7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 6e1e2973e237ac3b59796649305927bd344d88f7ccbd97897f7aff34d53b86b7
MD5 a2cf028ef99a59e809e23de6d4008174
BLAKE2b-256 72d4b17be9b5c0662970dbc64f9e89dea917eaf42b833e72b30ec4ab3ccc39ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.7-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/6.1.0 CPython/3.13.12

File hashes

Hashes for bodo-2026.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a92c93f67c0285dbee877873a79166e1a49ee521da83e370dc084898eb403c19
MD5 bac95414c217e57d399f2e3f983758db
BLAKE2b-256 a7d9af677eff2ffda38a56ab392fbf6fdb9e0823dc220f0dae5d4484368c4e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a2fc2e65a5121048f2b58d463013367983035515e313f2f8c15f451c67703c3
MD5 930d7e577c70464c29be015a25d009de
BLAKE2b-256 685c94e77afe4f0ca25b976a366decd89816c36ed9d03b96243d2a04ebb704a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8529beb69e3a60eec0d7f7d73500b760709aa0f53fe232451ee1aed8ed41239d
MD5 8e4dd765ebb90b3bff5f061e9fe0e453
BLAKE2b-256 e5b7c6a774a1ac8fd2524a49c89fe663de1ebcc7a1a633de87f6b7afe2aec5b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.7-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2895d30fe141c320dbce24ace7a1740e81e8c94c97b3a4f2d692ec5919f5db41
MD5 e677f7379e79731739f0f44a1860a294
BLAKE2b-256 10320b55c1add8844a374d670fd0d81fa26dcf5d5e9bded4639e78efba0cdd3b

See more details on using hashes here.

Provenance

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