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

Uploaded CPython 3.14Windows x86-64

bodo-2026.6-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.6-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.6-cp314-cp314-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

bodo-2026.6-cp313-cp313-win_amd64.whl (16.6 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2026.6-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.6-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.6-cp313-cp313-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2026.6-cp312-cp312-win_amd64.whl (16.6 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2026.6-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.6-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.6-cp312-cp312-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2026.6-cp311-cp311-win_amd64.whl (16.6 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2026.6-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.6-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.6-cp311-cp311-macosx_12_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2026.6-cp310-cp310-win_amd64.whl (16.6 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2026.6-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.6-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.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bodo-2026.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5cb6ca2544a00d076e11a91f39744ec2f4727ccf8068bb0d6b444b579cb3421c
MD5 62625f729ad3482e2c5c6170caf6cd05
BLAKE2b-256 19eb10753895c71b6e16a3596d1f5351ca56337391893bd8c649ce22d47ffe27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 616cb1b1a26be3257b669ba29908ec71bb0dcc1fc5f3db41966726efe1d8ee6e
MD5 6e281f6344685f64b871ea2ad238d126
BLAKE2b-256 2ce81a00c0dbbe0daee457ab690ac464a70f4fa024a8347b1a90f24cc7b24cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edf163377fde820b31f203273ac21cb47d47becf3a9dd50d0c2d5e3c09dfbcf4
MD5 1fa24ad309e779043277655687964af1
BLAKE2b-256 c5d99bb2abcb6e1b1c11de1d891f65c875fa8954de18db4852054e469875785d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 69d00af7ed011f402600dba00e8c05dad47e15375fe7cd0a80e2a5cb53a926fc
MD5 6b0d0c87549a460ffb3ea0551c280fb7
BLAKE2b-256 7a3ef19f838f6af156dc1323bc2cb0c79d01fa2acc132d76eead879c961ae142

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.6 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4630bb75dc9cdcf893dc8ac8bae9f8a305bfc5fcbd158f11a605167236127038
MD5 a703e2331a48b3917483196be7b07e8c
BLAKE2b-256 ef3178ad84ef410d42d9e14d4f03c499be85b5c67f25e9c293fc0c19e049b80b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc449e448951973d4d954cc6cb8e6c442c717c032470f0f141aa5e95bddcef55
MD5 1561af36f475b8b4e6ceb9ace1de8686
BLAKE2b-256 c6c42c7aa24cfa2330b712ff0318f9b5d0912fc447c69f7c14db7c3595816835

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 719f6301800af071e666e1b62a62a0393694a7dcaf401430215f352e0400aa18
MD5 f13de405ec0c77aabd4a2332091b644f
BLAKE2b-256 f6d938fb2814aaf1c2464414778e5eb62bd96638bb6c940f9c6cdabea7bf615d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ac59d98d84dba2aef0394cb82ee014f31d7813d5cb93fb2ce850017b0dcb9627
MD5 74d0c2f48245b6c862409d4b44742801
BLAKE2b-256 eee75884191d15d58762f1442ecaaf454b0cc253c249e2e1a5a69005a705fd52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.6 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef733bbb71ea0b0eaef852c1b9972d1f5504d275213f30ef79bf66073ec8a6ef
MD5 3ee764d189b76007062d884e6dacf8f2
BLAKE2b-256 e61ee6ff5cd339f3591db0ca7e67e07248fee9446022f7d9bf3b92500e3825e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f8c1fc9a6791d9acc361947cf40a4f26e564dd94499666ba61794bf3b1c2ad9
MD5 3d3c29cf5512bf2e3c9735d4e9257e32
BLAKE2b-256 d245320e727ce68a15fb43b68c1a66ca8b02e9d23fd9cf85fe3c6da8541d79a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa8fa42d62e3eee39370da29dab6210456efb9e5da9d7ed78767e1cad6c5580f
MD5 2e6b61ad1860ee5356914846567c9899
BLAKE2b-256 578f794f9a1de8362e0e59430f9623d64a3a4e2e50c28caf61490c9b369b2327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d7c840b78314dfe04430d24524f5f25c1dadbf848a56e78aee017b9d9eae5e58
MD5 6cd953cf4d26ab505037020beeb35353
BLAKE2b-256 3d7262e3a60f6d6be3e81293c94de231df9ccec14c11ddefd64f17f688aa28d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.6 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6240d8e86f748eab11ea209d4c3ca516bf8ba5bfb032ba8bdefebee3ed313345
MD5 538cf44fd9b69e230a5c45a91b042c0b
BLAKE2b-256 4d997f9d556eb87b22a2db77ff989e74684f420e8fa58c802def5340694fe9b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4ceff0ba3236fd1a9dd7ba37c1fe83eeed1b0ea7209e0fd9ca8b09a85c34aa5
MD5 b521c80becaf3c65f4091d1a339ed8c9
BLAKE2b-256 62df4054a3d2daca60d56d5c4a28f70e7784988e86c90e3d927ef8133a4151d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 528b67a21406fc08fbe786e8675b2f7f4be7f75d154e818cec785f3485ded37c
MD5 c4bc3d8e0c883a9ff07ed6743d0f7ae1
BLAKE2b-256 7fee3cb90bcf6e13bf53bc10d4094fd51dd0ba2cc94a351b7e5d7e3fc2eeaa6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 cd4659c99156fd958d1e731f142b8369068c13636b5262c944e7ea6946b1c4f7
MD5 f0fadba95677eff45c259a491bf832aa
BLAKE2b-256 e1b5de3b026bf3fc9eec8f15d968df46c81a9a0983c3145aedb047ec9e42880a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2026.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.6 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6cb86d122b9e063a5a77bdca6d8ccac1e4a92dad26bab3fd16afa5db24740a4b
MD5 2f56791bd351c6520e582e176a9126dd
BLAKE2b-256 b7f6036d4a01c77aef7e76d45c4e5daaa4decbd645a0c73f32ea436d7adeb089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ea1814e7086b13625a361317fe209155e2e8136d42a0e0242ad9ef6c1723fc6
MD5 5157b0f67657c5e616dcac6cef40e269
BLAKE2b-256 0fa19e58f83a5c942bd58d672cee5cd6d46a833a3331e937df20b9773ce6b6ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b52a1fda3c2257467158fdc6d792e51410c4258f8c5e0ae3ac561b3b1716eb6
MD5 345d5077baa329b24fb5fb7b54aeffe9
BLAKE2b-256 6aa2d6ea8e82d485c28d11619179f5da94ff75b10e71b327d38e63b6155c86cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2026.6-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e9ec5e10f946f737c38d15fb92d6c9d541ece9b1eedb3ddc051f7e41e6aae431
MD5 b84519405030d8f7956b6de0d19f4bed
BLAKE2b-256 12be1eccb3650cca4d26a28781485373ab9382d8b20b336c09a5014dc05c388d

See more details on using hashes here.

Provenance

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