Skip to main content

arrow-message implements a way to define messages according to the Arrow format in both Rust and Python

Project description

arrow-message

arrow-message makes it possible to create a Message struct in Rust or Python and convert it into a single arrow::array::ArrayData without any copy. It's also possible to get back to the initial struct without any copy as well.

The resulting arrow::array::ArrayData can then be sent safely over the network, a mpsc channel or to a Python script thanks to the pyo3 crate and the pyarrow feature.

The project aims to be used in context where we want to send a single payload containing multiple large fields. Like a struct representing an image or a video frame. This is ideal for Robotics and AI applications.

Example

use arrow::array::*;
use arrow_message::prelude::*;

#[derive(Debug, ArrowMessage)]
enum Encoding {
    RGB8,
    RGBA8,
    BGR8,
    BGRA8,
}

#[derive(Debug, ArrowMessage)]
struct Metadata {
    name: Option<String>,
    width: u32,
    height: u32,
    encoding: Encoding,
}

#[derive(Debug, ArrowMessage)]
struct Image {
    data: UInt8Array,
    metadata: Option<Metadata>,
}

fn main() -> Result<()> {
    use miette::IntoDiagnostic;

    let image = Image {
        data: UInt8Array::from(vec![1, 2, 3]),
        metadata: Some(Metadata {
            name: Some("example".to_string()),
            width: 12,
            height: 12,
            encoding: Encoding::RGB8,
        }),
    };

    println!("{:?}", image);

    let arrow = ArrayData::try_from(image).into_diagnostic()?;
    let image = Image::try_from(arrow).into_diagnostic()?;

    println!("{:?}", image);

    Ok(())
}

You can see an expanded version without the Derive macro here, and a more complex example here.

A python version here

from pyarrow_message import ArrowMessage
from dataclasses import dataclass
from typing import Optional
from enum import Enum

import numpy as np


class Encoding(ArrowMessage, Enum):
    RGB8 = "RGB8"
    RGBA8 = "RGBA8"
    BGR8 = "BGR8"
    BGRA8 = "BGRA8"


@dataclass
class Metadata(ArrowMessage):
    name: Optional[str]
    width: np.uint32
    height: np.uint32
    encoding: Optional[Encoding]


@dataclass
class Image(ArrowMessage):
    data: np.ndarray
    metadata: Optional[Metadata]


def main():
    image = Image(
        data=np.array([1, 2, 3], dtype=np.uint8),
        metadata=Metadata(
            width=np.uint32(12),
            height=np.uint32(12),
            name="example",
            encoding=Encoding.RGB8,
        ),
    )

    print(image)
    arrow = image.to_arrow()
    image2 = Image.from_arrow(arrow)

    print(image2)


if __name__ == "__main__":
    main()

Just run examples

We use a justfile to run examples:

just example-derive-enum # rust enum_derive.rs example
just example-derive-inherit # python enum_inherit.py example

Features

  • Fields supported

    • Primitive types
    • Optional Primitive Rust types
    • Arrow Arrays for Rust, Numpy Arrays for Python
    • Optional Arrow Arrays for Rust, Numpy Arrays for Python
    • Rust structs that implement ArrowMessage, Python dataclasses that inherit from ArrowMessage for Python
    • Rust simple enums that implement ArrowMessage for Rust, Python simple enums that inherit from ArrowMessage for Python
    • Optional structs/classes that implement/inherit ArrowMessage
    • Optional enums that implement/inherit ArrowMessage
    • [?] Enums with variant that implements/inherit ArrowMessage? I don't think it's possible, as an ArrowMessage should know it's exact datatype layout at compile time (only Option that are represented as NullArray when on runtime the value is None)
  • Operations supported

    • Into/From ArrayData
    • ArrayData Flattening

What's Next?

  • Think about Vec/List support. is it possible and is it relevant?.
  • Improved error handling and validation: too much panic! in arrow that we must catch.
  • Make to python API fully Rust with PyO3 (may be hard because we use a lot of python runtime tricks)
  • Enhanced documentation and examples
  • Integration with other libraries and frameworks

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyarrow_message-0.1.4.tar.gz (17.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (514.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (539.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (610.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (520.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl (374.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (286.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (333.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (514.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (539.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (610.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (520.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_i686.whl (374.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl (286.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (332.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (514.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (540.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (610.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (520.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_i686.whl (375.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl (287.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (332.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl (512.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl (537.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl (608.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl (518.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_i686.whl (373.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_armv7l.whl (285.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_aarch64.whl (331.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp313-cp313-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyarrow_message-0.1.4-cp313-cp313-win32.whl (180.0 kB view details)

Uploaded CPython 3.13Windows x86

pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_i686.whl (537.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl (609.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (519.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_i686.whl (373.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl (285.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl (331.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (297.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyarrow_message-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyarrow_message-0.1.4-cp312-cp312-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyarrow_message-0.1.4-cp312-cp312-win32.whl (179.9 kB view details)

Uploaded CPython 3.12Windows x86

pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (537.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (608.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (519.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_i686.whl (373.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl (285.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl (332.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (297.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyarrow_message-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (303.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyarrow_message-0.1.4-cp311-cp311-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyarrow_message-0.1.4-cp311-cp311-win32.whl (180.1 kB view details)

Uploaded CPython 3.11Windows x86

pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (539.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl (609.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (520.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_i686.whl (374.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl (286.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl (332.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (300.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyarrow_message-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (306.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyarrow_message-0.1.4-cp310-cp310-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyarrow_message-0.1.4-cp310-cp310-win32.whl (180.0 kB view details)

Uploaded CPython 3.10Windows x86

pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (513.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (539.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (609.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (520.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_i686.whl (374.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl (286.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl (332.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp39-cp39-win_amd64.whl (189.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyarrow_message-0.1.4-cp39-cp39-win32.whl (180.3 kB view details)

Uploaded CPython 3.9Windows x86

pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_i686.whl (539.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl (610.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_i686.whl (374.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl (286.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl (332.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.4-cp38-cp38-win_amd64.whl (188.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pyarrow_message-0.1.4-cp38-cp38-win32.whl (180.1 kB view details)

Uploaded CPython 3.8Windows x86

pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_i686.whl (538.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl (609.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_i686.whl (374.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl (285.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl (332.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

Details for the file pyarrow_message-0.1.4.tar.gz.

File metadata

  • Download URL: pyarrow_message-0.1.4.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pyarrow_message-0.1.4.tar.gz
Algorithm Hash digest
SHA256 16ff4613e54af45f00a65c08f97b7ca88b7459632cf0b686ff0034b30098ed06
MD5 d795d2f18b79e76db04e6065c0533191
BLAKE2b-256 bf1b88d33c585a3ab9b6dc1798172058a439057ed5781bc47ba93ffe1909b5e6

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65126ea2f4c0aabe7ab2f55f9e131f2446ddac5000f8a5e77a7ca3e1a3869963
MD5 597ca309aba5ebbb8589e2ee4e9d2f7f
BLAKE2b-256 548cbd7a7d782fc6564206e87a6c328d6c41b5b56d8f7f6d89f65d3d19029bc8

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1a5230a117c35a5874a43c198e660e89324a978c56993fe592ac4fa6aa8a5dc
MD5 93d0559f9c028561f6fb85b2696627f7
BLAKE2b-256 ec9f1c39f03e3ddc1bc4e3011322f9802e14212073366439fb3a48675ed61553

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9233ec3e684f4300ad090a3ab14bc2107de5099f28f44e4fa91b4f81752aefb9
MD5 f380ea42d515b7167e770a61cb1b0fcd
BLAKE2b-256 5391c3d49c47795f88372bac397a0831e30b1601ec5157bbdc155a96da6b5e86

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9da499b838ea77667c9a2cbbcaeeccba7c0abf505f1765b5c4edcda2445fb50f
MD5 82659427e55032616f90665913b90eea
BLAKE2b-256 a88b15f623d8de7e414ecd0814a34d8ffe9a10ef6a629fbea7b969bc74cb087a

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b9a37ab46f6f0ba522728cd40b842a1f140cce05a90d4e023a7a4b0722433b2d
MD5 bae5782dd946bfbc667300c971d4ee22
BLAKE2b-256 460381c6dbeeb6cb86d7da4f2a121e6792f217b90765f5693bff5c45643751e9

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3b789067d9ecaa5b1c362f6b9b0eb784fa127ff872ae78d25ba32d0006cdd93f
MD5 ed9c46415af1df0ef2673c9fd4b4d079
BLAKE2b-256 0ad4c2935f7597d2d5aa18b5c8d2ee15a67151670e3de00fd0c9f5c450dae514

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8bd7756f59e8b4afee8ed6cef4c1b2aa79b3b93eff2228ad68459e8d8e5313b
MD5 bf5b63a06f55535b401aac2b6335f888
BLAKE2b-256 f11aefbeb0acebda3c94e933b41d18b068fee4ce3523b9d92b45624e67f8f9df

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 327a83fbed3ae13fbed4fdb0e1d09e06de4f7e55074987ab1ac573c884f247bd
MD5 a5c148f444bee0370ee585f89f3bacd7
BLAKE2b-256 fdb86dcba08438354fffa0a5b2fe35a909daf87c3297b656a2fb9e2f926bbf5d

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 055fbc5e57b99fa5629dbc590aa08a2e06324fd7e3c368c56fde249a9e3d30f3
MD5 0fc604e420b5f1f60d0a69a0e3e06471
BLAKE2b-256 8d8e17fc711f982765cc376b36e23848dd5b20230c97f1770e36c5c246539a0d

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53bfb978a7def0d456aaba8a5470f27acf3dcdf28de58415a9635cba8d20a142
MD5 2b4707e11ffa9ae1b1ca6f8720ecb285
BLAKE2b-256 190eabc557a6260e7bb7c820c3e6f5702cc2d21f45c99eb76db632e011117c86

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69683379e15513ee103698b1bf3a4ce65d94438d29a1c8c1f093c24cde4e09ae
MD5 0c260244dd9046320d831b8896b33c36
BLAKE2b-256 ba131922c8407058098828cea84ccb6e67de9e02ce505d2684877b420db7c74e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1da12ab0b50122f8f078ef8ba3596b21939b0135f0302626939c9cb11ab3559d
MD5 30881307c6a7f4448e98bd1b998ec2ff
BLAKE2b-256 8a8fd700154a9df7ab9fe775d1a230a87b91f4b98130588b82704c3b83d1493f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 640b3ebc5245cc1c34e0be278f59761619e46564d4a201a15e41c3eddd03df5d
MD5 b15587e2555c42a81f49ff1e013938d2
BLAKE2b-256 3be096998a1ec16bc9b2c4b175e6007c6c354e7c1deaa53d9bac2a4aa7f744ba

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 864db8498470f03aba315d844694400b27054b5ebcb00819bfa99ea17c5173f8
MD5 e1abd49a8d4de4bd6565d81d67ab6991
BLAKE2b-256 97b207e8638d51e068c822482dda6a10345ae18eb5782403829e4d0f4f0641a7

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a20718ef02c80b06de68f13e7edac74df94dfdc5f5555d8ba7f22048b823bf78
MD5 c41b08b52e3b4253197a2649a7b0f412
BLAKE2b-256 340d1b2f97938a8bb4ed01f44880d867fbb1443fbffa4cb63e624c31edbb7c80

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a7a8503d3e29983968e5df8d44d0c60a0a00e091fab3aeec9771f5712268e4c
MD5 d5704210bc68451f1562c889e85f7d3e
BLAKE2b-256 5f6ed4021b9b06a90c27154a6c32bddb5bb8e8f613dc772ed15aeb7c641c5484

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed212c71634e859728ccb46fa9c375af221c0ce3407725afab790e803b259055
MD5 e49ae78b6c14060ac99bf431d470780e
BLAKE2b-256 37c17f6c6cc019b15a53c2a456df5f6527b31ab92919d31833694948e6fb9480

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4b68e6215fee6af643763b41f76f97fe07193b3777a8bea66aad5f389442689
MD5 0efddc27706c565a5ec5cc5031517675
BLAKE2b-256 c918341d05a46736d6b53eb1dc3d6673c61c150f05b16c4a69186be09c71debc

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3f7689954647e793e412dfb28add695029ff35cbc14dec62e5c1ac01b1071a27
MD5 22502277fa0054ec9f28aed8d39c4ac0
BLAKE2b-256 1ee64ae708e3f4492f11353d3fdbfb605073c9d92969453cb2d4ed1c9632cfb6

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8c8a3b2ea3f7d5260cdad352bb5c178056efa72f3cab0a024537bfe4f7ff8bc2
MD5 56068fecf1c01e67aa2ce265dd935beb
BLAKE2b-256 0e124a3a6a63ad727b95ec07ca30c7ec9ebf1edc1bc85691db6d6b94b08e5971

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c1a4aed56b015a21154b1eb64f67ce0ace6e29f4ae04da10ddcacc352e8fcd1
MD5 2f91507ef04f73b152d1dc287a7802e6
BLAKE2b-256 f9856efe6ae2305396df03b4da0b5ed6489ea149b2f830e98419157337381157

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5e87e4695f7e6d5851949d48762c0f3906791eb261a8a312131f862e732fb31
MD5 64ea776f386ae73cd755bcf02f77f747
BLAKE2b-256 8fc038f7520f10e52a2a1fbf38381bd3a0a66c5a2c37dc35e36bd0b52662e3d8

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 779ec11517376d21457c943b1522b5429ecd5b69550e9ae99ddd51c140e24ff9
MD5 1a1973ea510b2a0773b1c98e623b0ef8
BLAKE2b-256 4c26f8fa034dfe6a7839916419d5ef03b3312229eee9cb6d81485926bd6dc187

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c38827228314ee3479283e3569425501bc0c949b7215d26c86f283de220d2717
MD5 6680920fd532bd85a9b0cc4d6bca81d9
BLAKE2b-256 9da3af9e25772675234c0647095621112c6421bffe5b30dbb4495a29d6264764

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323a787bd5746eb71caf5ffd2b809c737449e5fe5f80774b8715153d87676c3a
MD5 1a8a51592e36c3c2d55d60e758fe194a
BLAKE2b-256 4debd14443e9dae5e7330a8b2ea3591670487dd65484d27699ca322a58e48f97

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 05e84e0f803c58a02674dcc6e85074abe8d2b46a11caae3056cfca05175642bf
MD5 f6e419b1e9767140edeb808c94d694d3
BLAKE2b-256 ae67f2a262a2a4e66b949bad355f560e479063b10815bc5597d8e87ff67ccb87

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 15700c127e9bb543399bf372b51d279a52da7b77b24bca1c4e4518e276bd3409
MD5 3151d96be4a76b75c861079b432734d0
BLAKE2b-256 803c4e5e3cc4e70d3a9b91eb293919824ef9230fb5a448e80e0144dd01912743

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d5f84c57bcde653fdbb9c8c5d20968aa7262099131bc9d7f0ae50794fa132d1
MD5 54e7347bc69fb65f059e4d2b8cd59e3c
BLAKE2b-256 5700c2b06fcb98ed9c4d2b4461702b4d94faefc8eee7815c83dcaa3b955f9e06

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a0027e4cafbaea7dfa39dcd94c1e003ec995b8fa1f75588a3fb7f64f03a140f
MD5 8f2cd6c22690fbf7560a2cf30f62561f
BLAKE2b-256 ef9062eed275cebc49c5bf17440a6b52d0753b45aca15cdc8f7a48f44c0e46ea

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87b0fc47f9e64ae82a7f1cf5b189f390554fe6f08bc1389a9811a3de7d4e8a78
MD5 fd76aa2fe1531ce4411ba26a305208df
BLAKE2b-256 527bbc40207d2135d36cd701748589e16f1bb2398c5cd1192f234e7d073700d5

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f22a4f42a101e12187f24659dec8d40e6e24bb86a5ace26848685bfb047d85f
MD5 7d1365333dca6f078187ad264b6cf45e
BLAKE2b-256 74599e12a89706945cb04e68ef61b789afe6ae5c1fdad72c3756ac7c8937bf60

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3a6f8765e3e8774df9393d249ece05b99952f50061711df57ce6e25cacc4cdb
MD5 d3f9925550e30196d4ab675578f758b7
BLAKE2b-256 bd977f68377ef7e0b22b41c467d76ffbed60cd6f02ffc863a6fa90666ce6fc3c

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 989025d773d853fb5ee649aa4156b4da5ea07284543c03e5e034a2601d6e3e2c
MD5 a3d6b694d73a2523604449db82899cfd
BLAKE2b-256 2121595f71cd6611227daf84c42c7fd4fc64533cb36b7a6bf128062dff8b7a74

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48f2f66b87e7f57aa29a54341e69ca3507de7838d92c56eca89dc7121fa340d8
MD5 4454c316535352814163eefddf183d21
BLAKE2b-256 e1976305784ddca367b41307b1c4c504e5ac4886ade773cf8b6a4523b3746363

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a34fb59d20e9f35d651d8339fc9491b2619dfb141f96b4fe826ddeef579218a
MD5 20c01674b189189ef1f6aab881042865
BLAKE2b-256 d808161d6b2bc36fb14720f18808a7ebc765c98acc179b3ad0d020542aba8c26

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 89d1f9335f06fb4b44029ff9f2c46f22f7e0af40e88731e400615e762b783d4c
MD5 315c10c0f4a1125981a815665fe79b36
BLAKE2b-256 9a003e128be7856906b7aab6c0003146526a70220c84bc35fe964ee4e816bed4

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f4270b42995b40ed7d5cdcf0348a7948625b48bd6e0ec3815d6819be1c617af7
MD5 a5b4d0c7f2c14c1e3d190d6bad8ae49e
BLAKE2b-256 97c97ab9af46f2d993537f2b616b6d282a3239cb6fde90bb5e2477ff50e28855

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caaa3a71e58e6a81c5ed1b318d37886e27a9ad3d90548e48e4519eb2d1e17d3d
MD5 2c7e005a24d36c46bb5e3a85d20e3d77
BLAKE2b-256 f02c5a7ae54bc74e3a96b5286bb41b5969ee3c5e58427d2179240d037ae11e45

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53a8d5c17c1d37a2088259f21548df8d4962317797e9b81f71b00dd6981ca273
MD5 e9079b15321dcc3512a5e033f4650a39
BLAKE2b-256 0489b8cdfdc5a86b1d3986e087dbe288c5b37ec9302368fb757f07309feb027e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a26f2ee450fed33b48ff68ab7084d151288206a147011aad546d447718f9af58
MD5 a4db1de5f80c4363ec75dc1855e90e1b
BLAKE2b-256 bc662239ca9081ebfb9ef25cf280aecb8ea61f94d811c494caa71a7511b61947

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9bd736ff5bf101ed6c18dded03546c4f0166d5036d44820ef7561a47c3fdd8cc
MD5 656cabca069c176719b01c103de82999
BLAKE2b-256 c18da35f85d7ca59be9fd50ad151428cfc3c9b836dfd925f1667495fcf40e569

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 67ecb2b950615d4cb3522f1d1238c5d726b5c102c57e480c8488c44bda7311ec
MD5 70ac1bc9a84e55f077e4480088775a4e
BLAKE2b-256 e262c93868ed66997aaf2a8397969ffd3a174c750bd1e9a9d03efa89b3add06b

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3de54ea0e41719623140fd2221612e13a197b8ef3acdf6bf00da65784ab78ccd
MD5 9fd69164d5fc27e2a1dff004e3b6cfd7
BLAKE2b-256 1d424707451ec3ab1d3cd48f8003f264eeb16789c935baf8f0c1c795353d5011

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62253208d1ad0b340839520f3cd501cbbb3609bf9b2672aea37baef8d7643361
MD5 8d6b53c952612611f268b27d4f6db1e2
BLAKE2b-256 556acbaf5cb8c990481993dc6fb36ffbe1e4eca32cde985a43aa4c8a7267bef2

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b65577caa22d591a5ad76ca48b6c091bc345a2bf789f7ee01e73fef9327a70c
MD5 bb08f169a349852b27f853cd2c8255d4
BLAKE2b-256 3ef34fc41f2779e96e2e45d9c6946510368e102f6d496cfaec66a07eacbec2d1

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c36e935e31626d600d8f1bbefb0c4c094dcd42667c10e37f6ae91f0915308d6a
MD5 d60140949b59ab358e481eb659ffb473
BLAKE2b-256 16d80a62a990b67f9e1e69b9e7ca87291df418fbb980780179f2dc7c7d2ce157

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a63b25179894351399a22ff29e57a635bfbc407d2d23d8ccb75db8a466a1db66
MD5 76d40ae8920816657241d236eb6c8d46
BLAKE2b-256 5a5fa559a5a449fb834ea6468fb9ebe998c3091d8cede8ac8e5ad784a0bc4388

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c09a0f109427a0ef85c2e14ecad8f0fe19f7a941563d15c67322835450fd0d32
MD5 eebdf8c8cd5065b204a3ccac9c2479ff
BLAKE2b-256 deda9a754b2a6ae26d7817dde253932ff96efff206c41137bbca7c23e2e840bb

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7ef8a5a2e6f9d027a1a571abb97e1875a3deb3f5252a1663e5917509dbaa99a
MD5 094ee66dac365bc81abd00ccdf55da76
BLAKE2b-256 4aab0fa5348b0f44c728542e37d13a5f8958ea16e08d1778479f20e16ce63017

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cf0d1eb7e6b713f482af95bf61c048e9fd2a995754a15d26053811262d2e74a
MD5 515e0bf19a202ed4989587fcd3eee0c8
BLAKE2b-256 11629152a22e82847931f1712839e66c0da479fdad4cbaaafbc11b2df36aecef

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58abd74d9f99a1bde12c7d1d45b1dfbac2099ac7aac5250c1726241aa18d3509
MD5 bfe3c802ba314565d8c59168db7aeaa9
BLAKE2b-256 dedaf11141e8dde6d1de2ae3d22012670c20578b2d24ef0049d1656ce64aa812

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c713feaf70ad26dd03ff707343f7ff85b6b4088c45ce9ddab4eea2b20d4f411
MD5 419636078641d50ecc1838f72ae35e71
BLAKE2b-256 50f4c99e67b69b61528bdfd500af14288a9f0fab70f16e862787229aac1fe6b8

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6f34d7e4b472bde488278abfd9fd770f6d2a1f52ddacdb4bd09482c268fe9213
MD5 19cf3b65d1768a6ac663d5a8820e24c9
BLAKE2b-256 a71dfd93495d2df0d35f5678d0f224e9249a9699e69e00c2687233593c2d56e2

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5478c924efa9f4f4c90e14d4ebed3e97ebfa0057a818caa2fc47727c6a204808
MD5 0df4a7f841030d1364b844385b03b9d6
BLAKE2b-256 70ca4457db8ffcea2d71135370da5af84875bc440a2b6953877422da8dbb10ce

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cb03d6c03361093e056b6c46a2b5f6497f0e166363c604e0b522a764eb0edee
MD5 740cad7ca4ad90cfcf2961ad3a3caee1
BLAKE2b-256 4c7af814aeea72440916f942cb9dc193ed809f0e12e1495a977cf7dee5cc5954

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab23ee5e49ed2167b335485fac0af55ee6b7b0bd1d802ab5315737e76bb13a64
MD5 66ca807a99de7e882eb5ff1f96f7bd8c
BLAKE2b-256 f4eebdf73d81c409c756d518fd738b27fcb7072b8e422b530c5b7b0ad5e9c551

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a4d649c6f91864da455f3d53401014a96a3ebed324ca65ef88137447d1af1bb
MD5 b90a986de41fddd105b2b852873b5f76
BLAKE2b-256 c110ae37f453dc4b85dcb0d6fae0ce54f95b1bde45897cacc3c48ca8e2052b34

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b5a37ad02ab682537a6ab1f7c1b37f31c5c209065d24277d26590e9e5320cdbd
MD5 fc33c36f54010e09e0398bd000a152e7
BLAKE2b-256 0d21aec04b119421a5da991842061f3ec2ba853a63a5acb52f4e20aa13be3aec

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e773b3c25d057bb13cf8d8dcf6d4eb71040174abffb7c8d1b74592611f4e8bfc
MD5 6d0db597b3e6c3a86b50755f378b10db
BLAKE2b-256 80f85bbdae540d26abba6708c510ebfd310d0a6177c57c5cb780442d4f018487

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89873e31c2b580d2adf6403c352971f9fb05ae9f5e596a04eef244456c17ba53
MD5 8e52e7a7aad9fa30c304512ea3d2797a
BLAKE2b-256 1359ee192fb29302fa5ec62f04c1ae5d5faf8dfde0a49567e52ecfa402d3fc34

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e612bee2b06bbcb611ec4d6cb70a30859c2c985635f1c79a44aaf5428ceb19
MD5 49b4c2c8a679002fca33014d4ff9045e
BLAKE2b-256 00bc7b6ca1a93d79076c41d8fa9c797d5bb8b37dec915d783066c8c11788e14f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8ae50baa2544b7170112ca36d02e905463c96a99c99f2eabd63730609502b56
MD5 37ae73463908217d51021627997c9b8b
BLAKE2b-256 4d6f4db4886be1721c64189b65c6f10864f7902c9da3b1600708e92db421b514

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa695d4aec66a44ca452b83566f9b33ecc2c05cef57019a4fc7e5a2575e54b1c
MD5 e3f003979743d5e742334a1ff8746d55
BLAKE2b-256 8cc13fe695713a1ce0b429c72e141ab2f0320625007c6d2a89372c21c431d935

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1be00b00a034d98f62f4e51d1f8b161a8616536d428bd28707008a311206223c
MD5 c4cdd65a8e5449199c453a49135b745d
BLAKE2b-256 67c7dc064dcd4ba0e65449e1afbde3ced742ad045668fec982463ab73f8135ba

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc8486c78fd47a6f500843dae43fae98003753c1083490b45fb896d767b56aef
MD5 2aea55310581adb84e0f76167ac054f0
BLAKE2b-256 2897de3729d6c03fb6c04bb8ce2bac18952ec4a5c5fbc8b783dcc3277785115b

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6927c6b788344a2769a672980bf6fd562f5b87a16a530fe756eee484ab85f227
MD5 2c924c62905642cfd32e410bad1ab565
BLAKE2b-256 7f9958930b50a4acb3e86308af3d9a119c810dd25e26e2d971b620fbca9b6a4d

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0478e437859aa8c8335efcaad8a0069b301ef7afe63b715acb70d48e157b7a1
MD5 e852e7ce632685633f42fe21ab45d401
BLAKE2b-256 cb2037f3a178ef6775eb39eaea9e48d3c1e84a3c67415c243deec58032b30293

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f028e21575492a4f971921292d766912e5c3f3e60fcdeb4f1c6ea9bd45344734
MD5 c80ffc4858901c6dbd838f5766b25b1e
BLAKE2b-256 e6c53be4651243babec3afae53233c5f5ff5797bb5e7ffe2f36a1ed8b1265d46

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e3ceb0e9709ee2eeafba489154203d47c7a60eb7b9957ff0042708337f47559
MD5 c837d2cf861e3ca9317407a919a99167
BLAKE2b-256 b1c294fb6f5ac35835634e356d7239e1bd2b118070750cb33f41386c1eb202ae

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9992de690cc303dd22305eaf5822e81db7ab2a65aa620c01820de1388ee650eb
MD5 2a70e997c8d8d55c4550e1b6007297de
BLAKE2b-256 9d34ef705c1d10b2432a549390019d43c822b553229eb92cdfd0e8106aff67ee

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 05f66ac7f7d40bb6a2e2b3c8e46b5521e702fdbead0c54e8c999a89fb252a33a
MD5 a49b6256e13cbe6b9d4890b392be93e7
BLAKE2b-256 cda3deac5e418a57e40902a37aa8a70949467b3af9f44aa9c39fa08c85a248a1

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f760cc4ef3fd6aa2154c8d25283e2febaf95fda2fa4be335602bd0472e26057e
MD5 2da78b8db2fdf5d33967f27b867b63ca
BLAKE2b-256 f98aab748bed262568a9af7dadce8a11f8db72142aa99bb36d034b2d1be3af7d

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c941aeab8630f869a1b556c182c72d0ae96b601282ebebebd90b65ccfcad439
MD5 af9f4f0a2272503963b024d55316f9c8
BLAKE2b-256 80a4043cec69791ab68870cb5f4e3310c67489156ce65c1c75041e9d20b3490d

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eebcc7c79a403c68b8415c788ab41a81d52f35c0fbd7667f318b54d257d8a427
MD5 337ad7f7bbdb265da8449e869a3a38b6
BLAKE2b-256 0730a2e9d8b192fc7d29176ddbc11a376171b1813efa3f61277153d639286097

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2b8b8c50d3b390d2e1beb8104de8e1fdeda6b56bccef26e84143f553834ae47
MD5 755e9266539b2d8c30e4f2b2bac6f650
BLAKE2b-256 e3a8f81cb1b5e58a7a50c480d13bdff9e417ca1e499179de7997976cf2cb727c

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b322023c535480f4e76874587d247c9bd632950530652efae8e4c2933a510e6
MD5 3a43ecccec740cac5ce93deb06ed6348
BLAKE2b-256 7287f81497f2fc97083741c63ceb8dc5d690ab167224fddac1667c2315c12c67

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b17187ffbf538bcabb303696951be8069bde14fc28c56d4da3ee0b1773584590
MD5 8c2818eeb41301cad0ae6b35ee74d7bb
BLAKE2b-256 dc3f0e323009a7df74eef2d1406cd3a6d25761c8d58c9af169aa957078120271

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4b44c32d15a065298d940301d35329cff3a883a812c6b2a10ca76806d1adedd
MD5 eff44ddf73b7c6d8da2c1775008d7322
BLAKE2b-256 d79500d28e4fdc6a3a37ea8e815dad80c38c24d086a9fae0d86d312f51eb8a17

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 77be10d8504d031e9d936bfea8c0bbeb55f9601ac4d4bfba6e586ab6c77c5458
MD5 d2e2d8f46d71b10fc46690f177dca819
BLAKE2b-256 f5d717f4ee5262ade0ee529fc0d3110f4d214326ee2c9897e41ad530b9a0f433

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 885569add3f1594bfe982a0b2c9097244626b9e757ee2cd315591f15b6091113
MD5 c2e0c718182909d74761684e6c048412
BLAKE2b-256 1d9dabffed0af8975536a6cc849595b9e5f1b6c3cf7299a7547bcad16652991f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf1afad065f53bff8471b801c0d93c465015f19fe3d633d2c4ae9d227efea187
MD5 ba6d910a8f2aa4ebe8d9d419373adfd9
BLAKE2b-256 f164da81c3abe95a508145b068d8462c7592f4acce16bff0287650238d1e0da0

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 69a0d9883b8fed513ad92394e0f6df1296d5f7fc8eda4714fbc3b6fe2356ff61
MD5 8f8baec233a47b33753df4abd16b058b
BLAKE2b-256 cf804e135d2fb03ae30248ad1e83b657a18813caa7871f424d84ce704e3df83e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5e756cda21bb9fe15bd339bd3b4c1b1fa73cc84afb1c5124e8bf7e18d7e026fa
MD5 de63d445056d3d784542d3d703679cbd
BLAKE2b-256 5095f66ec32bc089931d627ec5fa33621eb85e7030c84dfe6b311661690e6099

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a57e61ad42e130a516942199f34c356f6623c1d3e1bb4d64cb6806f95f1645ae
MD5 d521143af64946780769f19c78420ef0
BLAKE2b-256 26a8f3c1e8a785f4cd60040a4904e401a46ca1bccaed3891be55b96ec652af34

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e29f6e399907d2ef73573c31225723347ac41db401ff6e0f6a10345ae26bdd9
MD5 cb22ed4110469bc36b3d8e2a6fbdd585
BLAKE2b-256 f8a215f320c9058783a94b0c3a564f5e838fd8195b930a0570bf1bfdee0af8d3

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e65e3144c46a1d6455be84f682aa77c462957d9ac750886c8a5fae4bf86ba53d
MD5 7bc4962a31c8b1e5c8b4c033215b5e51
BLAKE2b-256 67240a5a836040d552b49b539a16dc373730b386558ea1cf9943be043c60f814

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46f47da02d537e6eef55d5066037acbd0f08a6c8be7dc24a272e5ab4bf173093
MD5 b82262ef3d4a71a691bc0fc574cfd5f7
BLAKE2b-256 0860ecc50245104576306c126aafe1951fc1083068b39250352d95afd624f907

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6e54a0acaa2a87e17b73ff6e8248a5dcc6f479bfbc8d1c3433de9e7c09648118
MD5 e5eca731ad3f27ada691168c5b42691b
BLAKE2b-256 e188ecbbf44036bc3c363ccb6598bb7ecf11165d4ab387bb8824e42da3526ac5

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f499510f171f2f29923a99f4c8b726a7fbde31282a6f0cf1c9d0047092dbc879
MD5 d34fc16bbfcf012eaada3c464e631573
BLAKE2b-256 2b44acbd513388df1c2099a1e18ea8f5fa0c85a00f9c0557d5f4682dd0d5755c

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d95a2955b6c078f448d43a031f6e0a63d6c53181537cc50e2288b4b0ac34ad3
MD5 d2ea03ac851c7bf8c665e0e03164046e
BLAKE2b-256 2af4148c33efa7ffed5da921cadcc7ea6140539fa817732d6c2f0ebc549317bf

See more details on using hashes here.

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