Skip to main content

High-Performance Python Compute Engine for Data and AI

Project description

Logo

Docs  ·  Slack  ·  Benchmarks

Bodo: High-Performance Python Compute Engine for Data and AI

Bodo is a cutting edge compute engine for large scale Python data processing. Powered by an innovative auto-parallelizing just-in-time compiler, Bodo transforms Python programs into highly optimized, parallel binaries without requiring code rewrites, which makes Bodo 20x to 240x faster compared to alternatives!

NYC Taxi Benchmark

Unlike traditional distributed computing frameworks, Bodo:

  • Seamlessly supports native Python APIs like Pandas and NumPy.
  • Eliminates runtime overheads common in driver-executor models by leveraging Message Passing Interface (MPI) tech for true distributed execution.

Goals

Bodo 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 with a simple decorator, and support native Pandas and NumPy APIs.

  3. Interoperable: Compatible with regular Python ecosystem, and can selectively speed up only the functions 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.

Non-goals

  1. Full Python Language Support: We are currently focused on a targeted subset of Python used for data-intensive and computationally heavy workloads, rather than supporting the entire Python syntax and all library APIs.

  2. Non-Data Workloads: Prioritize applications in data engineering, data science, and AI/ML. Bodo is not designed for general-purpose use cases that are non-data-centric.

  3. Real-time Compilation: While compilation time is improving, Bodo is not yet optimized for scenarios requiring very short compilation times (e.g., workloads with execution times of only a few seconds).

Key Features

  • Automatic optimization & parallelization of Python programs using Pandas and NumPy.
  • Linear scalability from laptops to large-scale clusters and supercomputers.
  • Advanced scalable I/O support for Iceberg, Snowflake, Parquet, CSV, and JSON with automatic filter pushdown and column pruning for optimized data access.
  • High performance SQL Engine that is natively integrated into Python.

See Bodo documentation to learn more: https://docs.bodo.ai/

Installation

Note: Bodo requires Python 3.9+.

Bodo can be installed using Pip or Conda:

pip install -U bodo

or

conda create -n Bodo python=3.13 -c conda-forge
conda activate Bodo
conda install bodo -c conda-forge

Bodo works with Linux x86, both Mac x86 and Mac ARM, and Windows right now. We will have Linux ARM support (and more) coming soon!

Example Code

Here is an example Pandas code that reads and processes a sample Parquet dataset with Bodo.

import pandas as pd
import numpy as np
import bodo
import time

# Generate sample data
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")

@bodo.jit(cache=True)
def computation():
    t1 = time.time()
    df = pd.read_parquet("my_data.pq")
    df2 = pd.DataFrame({"A": df.apply(lambda r: 0 if r.A == 0 else (r.B // r.A), axis=1)})
    df2.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

bodo-2025.7.5-cp313-cp313-win_amd64.whl (17.9 MB view details)

Uploaded CPython 3.13Windows x86-64

bodo-2025.7.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (37.7 MB view details)

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

bodo-2025.7.5-cp313-cp313-macosx_12_0_arm64.whl (24.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

bodo-2025.7.5-cp313-cp313-macosx_11_0_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

bodo-2025.7.5-cp312-cp312-win_amd64.whl (17.9 MB view details)

Uploaded CPython 3.12Windows x86-64

bodo-2025.7.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (37.8 MB view details)

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

bodo-2025.7.5-cp312-cp312-macosx_12_0_arm64.whl (24.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

bodo-2025.7.5-cp312-cp312-macosx_11_0_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

bodo-2025.7.5-cp311-cp311-win_amd64.whl (17.8 MB view details)

Uploaded CPython 3.11Windows x86-64

bodo-2025.7.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (37.9 MB view details)

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

bodo-2025.7.5-cp311-cp311-macosx_12_0_arm64.whl (24.4 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

bodo-2025.7.5-cp311-cp311-macosx_11_0_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

bodo-2025.7.5-cp310-cp310-win_amd64.whl (17.8 MB view details)

Uploaded CPython 3.10Windows x86-64

bodo-2025.7.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (37.6 MB view details)

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

bodo-2025.7.5-cp310-cp310-macosx_12_0_arm64.whl (24.4 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

bodo-2025.7.5-cp310-cp310-macosx_11_0_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

bodo-2025.7.5-cp39-cp39-win_amd64.whl (17.8 MB view details)

Uploaded CPython 3.9Windows x86-64

bodo-2025.7.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (37.6 MB view details)

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

bodo-2025.7.5-cp39-cp39-macosx_12_0_arm64.whl (24.4 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

bodo-2025.7.5-cp39-cp39-macosx_11_0_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

File details

Details for the file bodo-2025.7.5-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for bodo-2025.7.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 26bb51eeac527f7b25800ed84315155ea696a22aa5a5d0309653924be3bc6620
MD5 beb05d3c9d7c6675218caf42022617b6
BLAKE2b-256 39ed30c4a6f9a5b453dd23c19df8b218a8565c2861b1a3d5c2db1e099a9fa6cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8cbef1214e720776e4267bd2d82260a8f6ba19ae7d52a38946f852456a118e9
MD5 dd6710867e42c5f9f338d65bcae529d3
BLAKE2b-256 625147599c00da9e2eb2c13e4a98c303f0cbd9498bd2543dbaacaf12496c238c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 674c7da529e48bf86575407ba8e80b45ebf8bafba4bbf64ee005d27d18391842
MD5 c7906863d40a71d4ef7d03e9cd6ef313
BLAKE2b-256 3085260e8fe6a2124e77a9c4400be22de9053c02fcc87f69e7458f19c65673a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2025.7.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-2025.7.5-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2025.7.5-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 94f2ab0aa40167414a76b46e04f8e6c07a003b67dca39bb2778c680d57bf0d25
MD5 a570ef603c8d67291f12a4a8c65d3973
BLAKE2b-256 4a09d82a7476b4d5799762f45c3ab4c1483f101acb8b3027a7e9f4881a3b4845

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2025.7.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a89ce258329e0093444983e3a956a4d39e2aeb4de8d85e1039cc5300f023a448
MD5 c3e9c60abf4876231cb02b5fbd0dbb38
BLAKE2b-256 5b3c2ead8b817d5b7d478c355e4ecb3cfc048a1fb5f91e70097de3b1512f89af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d959e4a862c5f243b868384bd38832053b2f155832f0129acec9570c9c68b13b
MD5 b0405b2cfecda926563871f230d471ba
BLAKE2b-256 aca233260764cca36914d125c0f0b660883b4b6eb497f1c6e0781134b3d5f702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 1966cad69bc74d7d28cb8843f00d1214e1e8b7caa99ed19ece7666e50525c0ea
MD5 035a4f205736950a3e94377341556d53
BLAKE2b-256 fdd9565a41182ce90e598c76388df1b140c76d3c963b43fb049bda1c8dde9223

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2025.7.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-2025.7.5-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2025.7.5-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0b5151d2a72d4a85ed6629ac8703a11b0f7faa4a303f59aaeee208900b31a1a4
MD5 603e26f4c4f2f11415f722cea3368888
BLAKE2b-256 ed96ae3bc078ef98b3ffa079c64275b819deb74a476313b5ce75aed2807d7ec1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2025.7.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a60eb4e6f072094b1e373eb3f9f19344e845a2f740ca1e06da867c04f5d88fb
MD5 1fed44a49495962fab5353f78ccda8b5
BLAKE2b-256 7474904776c9006d59069ea38c6147459c75c2d2b87a8e83182eeb332b67e634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 705c2d9b07cbfad6c1c782a7336e3188bf9c73234d78a7fc86edcbfacd79fcba
MD5 4011c005dc63cbec6ee6952ff20660fc
BLAKE2b-256 f18b3dcbe81f7a6409679021ff2300ca16e254eacf82e652837e474dda5330c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4742e7cbc6ebdbf53a4a797269dab7e902e7d79842a2472f64598217c130d620
MD5 df7c911307ab5bd7414204ecc6776d0d
BLAKE2b-256 a4e521b3103503fb194412e629a4e66acb37f248cd961f6e9f638c59a0219bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2025.7.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-2025.7.5-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2025.7.5-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 95e219a8b26ac4a070461442aacd46ecfde2877a1cb76b4077e4007c0a27acd3
MD5 765bac87f934f1944b5b3926a7e8d8ca
BLAKE2b-256 9466d0b437b0528f2151c7d3c172ea6368cbfa4146e27a7eeb5abf43a99a2286

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bodo-2025.7.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 816565bed635b83fac8312146f43ebdffd46f3a5a227283eb27969554fe85426
MD5 532c6ab15e4ee775fe62a7b4bc3f3dcd
BLAKE2b-256 1eaab363bd56d1692dca4cb068a2122bcbffff41202956f8133279fe6f7d9fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc7c42ca15208fd03d14e6997a0d5501154f49d500ce47e0e0fb8caaf4e876e5
MD5 fcfb3093d7724390c5fa17a7d372dcbb
BLAKE2b-256 66a47e5be5698dfaa6bf94e91a2cd05c201f23fa22401e3588a4697bc0a6ec7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a61a64719dd0cb3efc921ecaa82e067016efbde47d653584b1df8f44d58a471e
MD5 e839a07b50e4b0f8de22bbc7a35ed0d7
BLAKE2b-256 5378aefe4ee246feadf4f4e689a692ea139295910c1049356bfca6aa9c251cd8

See more details on using hashes here.

Provenance

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

File details

Details for the file bodo-2025.7.5-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2025.7.5-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 63ff0918ec16e45fdabbd565468d3abfe448b89b8b42062fcf07ac1ad27d04c9
MD5 968b778234069156d380d30414bec266
BLAKE2b-256 5c6315571952e921f8d9517803ea4ac06374f9a8c01f4a63ac0ae52787763cc0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bodo-2025.7.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bodo-2025.7.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49db466143b936fdbb2a0ba5cf68ad049118513449da6480468ebc6a54866232
MD5 0798fc013648671a27dd466968bc3e7f
BLAKE2b-256 cbc1a3f3b1c3d313a753510451a06203822d0dcb1d3dd2c8e0203f289ce48256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b98ccc6037f978811761017ec4d8370ef590bf5c2f2bed73e29ce5cbd3fa34ba
MD5 031a76bdebf1e83d7fb12dfbcc985329
BLAKE2b-256 8d5ff9623004dbf45d1d4d0460073e341bb31face54ad4204e033a7847f7f4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bodo-2025.7.5-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9c704205ad73b4358c409811c56c22bd816bddbcef43e14ae6452cbaca36220c
MD5 475e3b3a34479d6aca603388a2287d8a
BLAKE2b-256 9ffe0a286fa27843de1d86a9e7f5b84013f08b86bf5e658b2ab8af5c4486b299

See more details on using hashes here.

Provenance

The following attestation bundles were made for bodo-2025.7.5-cp39-cp39-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-2025.7.5-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for bodo-2025.7.5-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 19fe336baf70d9ac4fc66021047004268cd24efaf9486e4ae51a84c5b6437651
MD5 b2dd6c80b45e9a23adb82adb31c57bcc
BLAKE2b-256 702cb54acd08e720b1a155367d177fa0b6955bfc1e443e527983318ed6111b11

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page