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: Option<Encoding>,
}

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

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

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

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

    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()

Operations

As you can see above, you can convert an ArrowMessage into an ArrayData. But it's also possible to operate on an ArrayData thanks to the trait ArrayDataFlattening to flatten an entire ArrayData in a single buffer, so it's easy to send the message through a protocol (SharedMemory, TCP etc...).

let arrow = ArrayData::try_from(image)?;
let flat = arrow.flattened()?; // Copy of the data but flattened

let image = Image::try_from(flat)?; // Always possible to convert back to Image

If you need to send the message through a protocol you can get both the Layout and the Buffer associated with the ArrayData:

let arrow = ArrayData::try_from(image)?;
let (layout, values) = arrow.layout_with_values(); // (ArrayDataLayout, Buffer)
let arrow = ArrayData::from_layout_and_values(layout, values)?;

let image = Image::try_from(arrow)?;

Note: ArrayDataLayout implements Serialize and Deserialize so you can send it over the network

In special cases you would like to write directly the values of the ArrayData into a custom buffer:

let arrow = ArrayData::try_from(image)?;

let layout = arrow.layout();

let size = arrow.required_size();
let mut target = vec![0u8; size]; // Allocate a buffer of the required size
arrow.fill(&mut target);

// ...
// Send (layout, target) and reconstruct an ArrayData
// ...

let values = arrow::buffer::Buffer::from_vec(target);
let arrow = ArrayData::from_layout_and_values(layout, values)?;

let image = Image::try_from(arrow)?;

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.5.tar.gz (18.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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (514.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (540.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (611.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (521.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl (375.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (287.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (333.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (515.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (540.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (611.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (521.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_i686.whl (375.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl (287.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (333.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (514.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (540.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (611.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (521.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_i686.whl (375.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl (287.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (333.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl (538.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl (608.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl (519.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp313-cp313t-manylinux_2_28_i686.whl (374.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp313-cp313t-manylinux_2_28_armv7l.whl (285.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp313-cp313-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyarrow_message-0.1.5-cp313-cp313-win32.whl (180.5 kB view details)

Uploaded CPython 3.13Windows x86

pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_i686.whl (538.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl (609.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (520.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl (350.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_i686.whl (374.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_armv7l.whl (286.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl (332.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (298.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyarrow_message-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (303.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyarrow_message-0.1.5-cp312-cp312-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyarrow_message-0.1.5-cp312-cp312-win32.whl (180.4 kB view details)

Uploaded CPython 3.12Windows x86

pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (538.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (520.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_i686.whl (374.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_armv7l.whl (286.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl (332.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (297.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyarrow_message-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (303.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyarrow_message-0.1.5-cp311-cp311-win_amd64.whl (189.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pyarrow_message-0.1.5-cp311-cp311-win32.whl (180.6 kB view details)

Uploaded CPython 3.11Windows x86

pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (539.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (609.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (520.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_i686.whl (375.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_armv7l.whl (286.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl (333.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (300.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyarrow_message-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (306.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyarrow_message-0.1.5-cp310-cp310-win_amd64.whl (189.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyarrow_message-0.1.5-cp310-cp310-win32.whl (180.5 kB view details)

Uploaded CPython 3.10Windows x86

pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (514.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_i686.whl (539.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (609.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (520.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl (350.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_i686.whl (374.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_armv7l.whl (286.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl (333.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp39-cp39-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyarrow_message-0.1.5-cp39-cp39-win32.whl (180.8 kB view details)

Uploaded CPython 3.9Windows x86

pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_i686.whl (540.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl (610.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_i686.whl (375.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_armv7l.whl (286.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl (332.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.5-cp38-cp38-win_amd64.whl (189.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pyarrow_message-0.1.5-cp38-cp38-win32.whl (180.6 kB view details)

Uploaded CPython 3.8Windows x86

pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (514.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_i686.whl (539.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl (609.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_i686.whl (374.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_armv7l.whl (286.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_aarch64.whl (332.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyarrow_message-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a441485f69b787611257d9e990ba5a3b75bebdbfad2de6a32d52b5355b5e422c
MD5 23fff33bd5e0fd7400aade6179bc3715
BLAKE2b-256 cbfbd70bb413fe012aad34e2813eb31bfcc5bc9d0d44715bd5ab00991b696187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d84ce66645caf553d03c605dabd3bbfcca0445e7d1a2bc1f7b58504ee28410a0
MD5 e7d91c0b8a9326b838a45ded10ef1def
BLAKE2b-256 2a9972362051a551fad8b80166c252a492d6325a6a54e89cb220fda37a62695d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ade9247fdf870ad4a2923771195fb8edff32ea307fb2aff1ef9360818229609
MD5 4ef36cd6de1a75b328bc8bc53563fb6e
BLAKE2b-256 f3cbf2a4f6df5f3e7932005adb5916512bc5e31d2c95494da4cf75f1908a4f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bbce0099bd2e278e1469525334fec3276aee90afcbd2d6011683f42a530e3d5
MD5 f5603f72db493d030d7cc6b305ceb179
BLAKE2b-256 09bdbdbdb6b2e179b28aaad81060005fb00a6aa24f46ab83f57b96419eff9bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf5b13be7b718154687b92e4bbda4bbd478a5b19853ebae0995427e1692c4841
MD5 dad0521fd48dfdb25249a0bec71dcaa1
BLAKE2b-256 c11c8e3c2ca2b6c6c76bb6a820a8c218f21dd5aa3cfca70f23b6ffaf413aa0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cd3232bd131a84f1d171a595afaf2a06ef592b5ab291996177e62622f9cf1c8b
MD5 7e08d9eac7205c9bce675ee1d80e7259
BLAKE2b-256 9a60e98099b15e40bcb9ba638067b6097fb6a16799f79f77d116f6dc95b7420b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 eace2406980c937ebf8a4173dee00efcfa91e2348ef533bb8b4ddf71882a21c9
MD5 cfcfd1574fbdb94d09879f6b1a52f8af
BLAKE2b-256 e17db7cf0f5662d0ffacf67938d5fe50e56057a715f01986a6a8f6fa09268885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae7ee364d141615a461585f82620ddeb5d73f0ece517a802cfc4d9ace1e122e4
MD5 877b106417c518d0bd3cc4d750329dea
BLAKE2b-256 04ea40555447ccc46778a636f1bb12d4a3964c1590448177880766b61462d3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7bd3aa6e75de5b0a05508982fd0999b8dca44e35ea6861192abf59b9e8f0fa7
MD5 662df19751e37c287c7b74d675481f4f
BLAKE2b-256 045c49ceb638d21bcaf24da7518d8c3f18935db4643795178149f760fec97c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6cc6cec14f4437d0df8a9ccb07135fd8e1850559326ee7741803b69b1bf6a1c6
MD5 7dde96b6de17c3c7e2593ef32de970e3
BLAKE2b-256 5a2419c1dbfcb5618589748421e8db719de0fffdc7ac397c10518f070dcc1e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 228a1ba2f13dfaabc014c3e9ad1ea5be0194bd4248be8e54d07f40988fdb8a9d
MD5 6674efa8aa6d2f398eb9aa2613e0f06a
BLAKE2b-256 5ca4a257ae4a321514f03c907fba749f09f2f1ce3778f9ef4df61768f045896c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab8809015e143e96a24777ab0a9a082ca3ebef268bbbbb42c0d97735773418c9
MD5 69924e18d640aa5957069914748f9598
BLAKE2b-256 96498ce8cc167cb10bae049f3e95b33d1ed038061f008ba91118b11406708e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 70226aff4418805c2a06691058c568fa9fbbf421a46dfac5a9a997e26a24f057
MD5 53e70e081a4c03c7f8471ba473474ef1
BLAKE2b-256 c3e08869db144cb3014d070a70937fb85e3d040c4d955ed503013aebfa339675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cbcfbc24cb20748c1f19ab3ed1ecef88076e750d4c3c29431c56a72d17be4f5b
MD5 73050f6c179e77004787bc01fab3bdf6
BLAKE2b-256 a71d1efd78fadd57aa34ea6fefdc649edd73eba9b2794ac9f8d0c17a1ab47223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e94374d529fca258d8a43bf2ca114a7a706ba67f0326f9fdb383c24ea4f5918
MD5 47e076b242ab045b46d676139937585e
BLAKE2b-256 88bf1d902f5b0f088d5f93c88b08d98173d313d8db8f64c9cced5781ea1d31b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79f3ef4eee4e8bcbfbf149c03dc72d3f6f54c46f3528594c322f63699e5fce84
MD5 af5b373c74abbf11fe14149fecf3a77f
BLAKE2b-256 8065bdf9afce55332cb0ec82bab1a2bd9830ae029c21fd5e8b3f14142c199c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a863a9d413bce7b385fd29c6393405ec8be4f856b63273ad295fb286c874383a
MD5 a5dc089e41bb0571cffd1ea6af366e07
BLAKE2b-256 c881acbb7256951480aba27382f3e7fa3b8a44b0b0c2a8d81389a9ddbca214fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 210568d84900f7a8edf0c300484cf09764e2c50e87a30697bd2a7800deaa7373
MD5 5e611d74f46ca88abe4197e06931ec79
BLAKE2b-256 56a27336ecca9e00b920f91fdb18896d1809b0277f2dd66e4b867eaa1cc08850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66c79a20d36a586f815c4004e0f503c37aad7759496bbb8027753d190db9bee6
MD5 6a4c8138c890e714e7a295e6875ab3b0
BLAKE2b-256 4fb8c1696ce72cc892546e805f83ec705952f7e2a380e8688a67c947406d0d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 463d7bb97e34f57732b6a73e7cc1655a1adee8cb496a5b8a4d6207348dc2a70c
MD5 991299109f447a3b9184a9faa2471fd0
BLAKE2b-256 8c20ee257ab834ca7fb3b8f848e29831a7cdb3153317fb1f7c4169a59d1b5d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ffb9c17997a58bf2cd2849b7c50997b7e7f6a148772fc30f8b35ee150fb847a5
MD5 0e526d6e9f9a675d2673af64b6b85128
BLAKE2b-256 2a8fa613419901e9006ac51a5096d3afedfbd5139bd2f5970c05b1fcb503abfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e12f0d5a6ca84dabc71ef5184a1e9a5bf3559de0435b37bddeaf915efedaa185
MD5 98801c8134a462c8bb331db1ea5cd5cf
BLAKE2b-256 223065660a78d17cdf7ad7ce45e58fefe8d298d2704b85c3e1fee43b9cc13bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4f141711ea3aff8b13c1290e427a33356a87bac27ebcb57a4f4659c2b570f60
MD5 335127d38fae7cd40716572fe0f6d7f8
BLAKE2b-256 7cc2147562d9a42088f21f105c4b9a6c74fd658a203d2b4c7cc40f3002034e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd810df6d33b001421bc357fc24d22b663903162a4b0c543b8a2426b1ff72ced
MD5 a96f6f08b94833efe59406467298447f
BLAKE2b-256 4fa5a3872d932352e9489ad80b2c24d05fcc6388d6cb053a3b32c53484f4858e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45113b1e89c398e7a9c3dc2d2a10a11920d8a274572755aeab4ed4d7a44b325d
MD5 1849dde46625e3534f5cf1b619a3b06e
BLAKE2b-256 c6162431d963ab13908f6f40ab3ccd95d2148df3401d1b0189081435f670ab84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ca6b1d3c63e7a8c330ac52bde4bf3e096612d5a6d2d2e87202266043de2ea63
MD5 fbf5aeb46b71fd744df01c6b738c4282
BLAKE2b-256 df792f88c501df8d85938e900afb046323d10b06f2abc2334739c0b2f9a0a418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c20ffdb671cd03231241c13cd479ba5ef753d9a5f6dc3d56368056e80a3b9aae
MD5 bc8836aaf42c4e9c3f70543a7a96ac72
BLAKE2b-256 d79695d497a26158393b4cb7a2afd0af0bdacda1a0269f815da52408a6be2565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2c8defca233bf0301f53ac78038a0505c976fc1a3ecaac3b246a4e06b9d7c544
MD5 d8cb4203117c6fcc5961fceb1eb17338
BLAKE2b-256 d4ea5daf955bd0bf56ab4d23cc31afe8f5c2f589af1acacded8aaf81a49f5647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 721ee34e4b5c26d70e7c6b6a886b6526b732de6040199f279c02fd9c5db93922
MD5 9f8fbeed744447ad76f1a00d3e2fb80c
BLAKE2b-256 53c6ee374ac0c098277268d2a3d8f87e5f65821a36af75ac8352cad809172892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bde8817807b55cb0383bfd2bcad27aff2b5fbb87d36ba9d8dd4f77ceba037a40
MD5 678dceacbda6951808c6b8ac4109f49d
BLAKE2b-256 89ad009646814b056407332c42fb5469801d796ecb0427aabcaf149963aee12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6ce15968bd03e9ac107a8a02b119faa8991cf8eee79f77755a8a8fab668d903c
MD5 581278caf325a345ae6315a3379641d6
BLAKE2b-256 8ddcd0d3ea7bbeb493739427f0f5d01506607af694813a828c1ba250d09aba3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f48b937bc9afeab1dbb7534cb3c390b4a7ed010ec52e774e174b9d4d0e1c5bb
MD5 b6c5cf35ddd0231764b9113b662580de
BLAKE2b-256 0ad0fb7378478c9e2aef3b89b24f77b2df9a72028f071a7ab2e9e4cccee69000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b941b150e7192431b80e7e785b8d2b5fa2e7def29d041392668d1950cfe97101
MD5 0f475d68ab62ea0901c1f0e4a42d5c6f
BLAKE2b-256 d52f4ccea56172a779aa237ea8de4ad9c54849d8ee8e9707b6e23d7c6af6e983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97f9b247d4f93134a79cd7bb4d1776c88e3c2de4789c93fe8b2e6d44dbfcc339
MD5 a960795833848bdaa7e5716493bf9ab8
BLAKE2b-256 8088705d8e3e40e80cce0e9f52ada98c71a5a2bae5d003a7b94c9369fd6dba70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92a35a10bddf4686fcf7ee3cc7866887ffef992885c60c3e3d7a8ca7bb793831
MD5 e6507e17f8a21bec7996066bb05aad38
BLAKE2b-256 b57832bbfdf5c9dc02d3e5a5b072f80197b2f134c9163c249b27f6e7da8c9492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8338a6d215711a9e31aebf89c958f68b9a37491267b6a3a1c776b2734d3b02d
MD5 f22943ddf41ebad8d51715d177759341
BLAKE2b-256 3adfca77d97ec1c0da158f435f6e3f4a90ec7be7841d797d07f4a8f842166277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0ff4d84a0b426f820daf70a7a32087a84b88467b1f73635ea9c3fb617f9d8651
MD5 b7ee522da7b47af1cfd1130bc49d22fa
BLAKE2b-256 dd95ef449ee076a1477888b997f7a14a67913669ec9b77ba0eea8a5e7f7fcf89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 05464db94d09407dd4a8afb7ec2a5be1c9d823790ffe6769804d6035e0686511
MD5 38b3b4766fe4f16712facb7d90167600
BLAKE2b-256 b3c1957f196f07b556ed5c886f7458eb83e8168158f50e90db7970ce52c6a0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8047f37608b4ae9ec7eb0169034cffe51f8538e1ce9d973d6831c7cf5af4bb79
MD5 8feccbe4c980f596565136c345717978
BLAKE2b-256 584ad210fadf995c29b71831d71cce578f057c6aa6255c88be98e92e6c235f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8356ddd49d06d9c0a76b87d1666c387b0e1c748c8f7229ab73d01202856cbfcb
MD5 4b45e6b43efb1a28c1c0868da790ffbf
BLAKE2b-256 7c71ab4133b2ea5170769a8dfa3b663a3132c315f5bc78a797dcfc80ae016a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 446236a187ff73fb8936552ed3e2af5724993d427517285990dfe65fcd482a51
MD5 bc75d4d798ee675ecaea73ac94939214
BLAKE2b-256 814e94cb5373f8e587bf505df6dfc1f69bff14c2c89970bb616d6bae11b1b1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2fac9b69c6f0b3eee50f4052fe29d3c8454db1cb85f2c07211a949407b87595
MD5 297dc6da8a6b7c7cb93b9774eda1b1fb
BLAKE2b-256 26060860eb2c834e775166910d71a567d4011a09f5d4a2bc03f9a378249bfdc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1759764d35edc3c3f98c2220c6a3f22cdaade0b0fb376c033e15d3dc8c5f4df8
MD5 7dabce96ada9e7bf7479c90c8311243f
BLAKE2b-256 07785cc631d50392c50903efe02a73c45119fc083fb309f6dff5e8611f3145b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0016a703458742af3fb985162fc8ed5975a469b24289596e05badeb765d2ab7b
MD5 f165df8617b7ed7fc0dee191833de616
BLAKE2b-256 22ded63e424e4875a832b853a7f442e82b3f92a547cddf1ffb817c8cff1513d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b85cf9daae65b47fc7e4ca9e7662e8203dfdcc6fe55e9fdeea104259c25449a9
MD5 722f06cacbc02c7fec196e299bd402ca
BLAKE2b-256 02a67f42743fe5ba94516dfb532181217b0e82f8649718d4db0638f52a39399e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d0c2b9c1306c884df4eb45d0870a07e60316ec86fae80e0874e20b2f6239fcf
MD5 f83a9071336bc114ddc2f863b2d4c9bd
BLAKE2b-256 ea227976236bd81d43f1c9a90d35715f7be18ee40e061d0aef5326d8de7ebc6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbadb75597accc95f4293f5f0d983757124b2026e4d05606b8f931f11893efdb
MD5 7e669161843b2cc45a92a233529198b1
BLAKE2b-256 1efbdbd3bd90fd892573933a7cdcd0f58cea9518d32f490bad5a8cc84acb5976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 16eff4938113608415409225c15309cad6c47f979b24b4bf122a63e337991fbd
MD5 3e8cc8aa34f13f4ca8131f2f5d222885
BLAKE2b-256 4875179a839781b0f4fb32da7fd134a122353d65b0c1220a56f9061806c15993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4d24d68a049fde681821f1404b16415eb2482fca2c91d26f44a1f90f0dffc20f
MD5 285850dd42f22c7b312600ce8b287131
BLAKE2b-256 e9436999ea8907c2b9f17c4e0e6ea1faf400ce25f2412c8a138a0e03af8dd145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18b610df5756e1e1e811090cd36a096040e752cda0e72d38932bec4d1daf3b61
MD5 62131affa889c9fdd785494106e48ba1
BLAKE2b-256 08f759d7d2051501ab7f726f2bfe871497e76c6d3e77363f888689964ea5c592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3b69922f262ac68f57053d2c27253334d9fc609649634f27193aaf7ce2b7d94
MD5 86fec0da4a483c4af10f61bedef3a0c6
BLAKE2b-256 4cf178fd0d4509b23cbdebee00a9d9abb10934f67f186972459e316d7ee87124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0744085688cf4c48d3fa696a13a673e69c0ed8fa8656628a25c1f5eb3e4772dd
MD5 65c0e9aef61e463e9ab066eaf348de8a
BLAKE2b-256 aae13434785ed1ed04b49be0c92912d75e4d1ed0f5c21852d4d12ff2d19aeb0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a219d8e2899df4631e0359757363df8e67443071d79114330155e5b2fc15513e
MD5 663f40acd52606b19da4a2cc38979c52
BLAKE2b-256 21f653e0adf05a1fa7d8c96d32cfd8eaaf8e4c2297348c59da730cabc7ac6097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1c712d7900b4237bfaa06a106148d8bdcafa4be7d73f5db1d8a0551d6823b2d0
MD5 e3dfa56e96f33dc99a0def3134da78b5
BLAKE2b-256 07adb84e876898c0d199c18e41197a5ded8fdce62e9017b1e8b5acbfbc00d6f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2069b568ec46915a4370b9d493d8efc4ae4f32d67b97c8432ca54efad018aaec
MD5 4b6e93d1be05082c7b0152880858a602
BLAKE2b-256 c68372906f9e43e857dfc769e5c7c0132440fff4bae9a585505791a040456ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d3c75a8db2a1f19b2580f953944da1beeaa67e4d0c64c20eeb61f146da82d5f
MD5 c9510d07fc166f857f6124139e20be62
BLAKE2b-256 24ec91b5d81ef688d3b3388ca702b82149dff9a61a907888bd8439102f130ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d3e0211af63e29aee066d3bb396b37fa8903726407ca2ba34f0c24fe997e09c
MD5 f1c05d6ca6cd6d4862a257287ab252b4
BLAKE2b-256 9e606f726867e6c60225b93cc81fe54b797373103c62e537440e267b6af058d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d9f95bf6f5f9df2a6bbc8b14f37559ccc85fb22e65e7187418ee373ce1be404
MD5 23100d59471a16ae43c6f556bd8924ef
BLAKE2b-256 ff09bf137de51e444d189f285621cce7bd63175b8767ecc1adce0b882b319d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2bc20083b77fb7ab02957eba2bb386bb0246385071737b9ea84be7295205f84a
MD5 5c46309ef728bcc8a071022c7bac8b29
BLAKE2b-256 705ee273a832a426a66680e5f0d7fb232c1eb3ce979b003deda5a16600325c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 126955660f5cd0f224698672aeb52df5240a4b088d6a8eeaf54fdf51619d4a8a
MD5 b48c7c5204dd88b2c4da48f682146ba7
BLAKE2b-256 54b5bddc31639e19b703105c5504674f5f527ecec432c7a551c83481170eba9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c407a6db66682d36fff7de1c8f4f9f3860f360e52414d1e9fd71ffc27373c70f
MD5 b03a03092a16c38f94a669c1ea595bc5
BLAKE2b-256 789b6f9c2f369056c10781ddbe4ad9f3030202cfb5a477c84ad37e9a1dff3bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fde479bc7e884a22d5fd16f532756f5e3449b6e03ed4a524c9dc9af8411efe1b
MD5 62f571fd814d9160137076c728eebb5e
BLAKE2b-256 56cf891b550eaa50bdc58de35a1158cef0ca63989c448a97a7c96755c1b6e4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce172784b5371c77d1c870198f299f87ab50becea164c0161b200dd538e6f93d
MD5 36ef036afcbf1ccc8af4800fa721c7d4
BLAKE2b-256 1621f96c66c580295c74d5ec60556102abe8ca146b20bf130b6c11fd2717509e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b333afb87f5971d7a18693a5e03804c3edbc98789888437f82b4685f13fc4eb4
MD5 46837e7923a35ad46fc5396dc05bf67b
BLAKE2b-256 82e8dee3bf10bd152245ff2e0c828b05b5995a6a85cea6f1be8381499c3335aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f3906729ff1e19795c3dce06b89b29aacfc9ff0c2640b9c9140d35c11fb97ce2
MD5 45242b3a059933ecf451e724fb0cfa95
BLAKE2b-256 57e5b31da62ef520e708b1c60c1cdd34d8ff60f6d02208fdd645b5113b454294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17c515a212067d2c9f2337bccf673e055ea365ccfea8de76a02d98ce98ea3372
MD5 67a9605e79db3f376c14250fa325437d
BLAKE2b-256 d25a207768a8dd0bbebb08b3ab26cac080165131eacf927ba0f47a2847c26389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d840d598bdb8a4106e265569f655a27d97714f6f95594a162f74d634c22fe9b1
MD5 1cddd4b25dd288c04e7d8dd911065fde
BLAKE2b-256 5815bacd90fdb1d84199dfa10818a2915dc727a71578048e302c11d188f08369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9f9d9fb41d804d5b8cbe8cb73362d7fed627b798111d936e65892f6ff7c5d54
MD5 903fb0200553967ebb18e658a730e023
BLAKE2b-256 167b6b6cc317672e572da18ae10dafb731a9636ec6f86d6d13da5bcdfc66dea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c9622a7b2377ec8e61117a3f7bbdb03ae9e05c089f307397267e1e1728ab062
MD5 85f44c8a603263f8448c3bf956eff10e
BLAKE2b-256 fbe8a90152f7621b2981f29dab19f08184ae4d3296be150f8dd4bf97698e1c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8eca3c8d7f75d48e0a055ada60e9b0cd689bcff40e22cf2118774d7447af868
MD5 276d73af760c6f7165f0d158f42d3c55
BLAKE2b-256 5ac276b0c24ba34d694cd343cc52824df87c6c583703ea94653058927e30fc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6756795785f0d2e400b3fef7a7a0600751badf9bab6e3f2fd44446382f8bae17
MD5 28c83c6cb275bbbd5dccfa71ef0625a5
BLAKE2b-256 30d1e856eec4758879b6b0dc5c4e8347c1a2491e4e0633992d52f07bb7254aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 81d3ca4c786b5fd2a8b1be3487a93c1afebb3b85b265bff14f67de2297e1a042
MD5 205683b7f391739f602ed5893af15aa6
BLAKE2b-256 22232e4aa5a32bd3a2338686c0c069ae2e9d07e616d877a12fb92b0910b0cb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1487c2b4e896b924a10b7f7ced9a9e07f4137ea9ab366a681665b391634e95fd
MD5 f1bd895d491fc6a4353eadd1e7959e49
BLAKE2b-256 d7eec1cdc89684b92a557e65327023f61466665b1803139ba7b1cd7aa570155e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 855d60e5f4b5844d3ce8dbedf52389f7fdb838e05d31cf2c21fbdb1960455c0d
MD5 2a24fa4597a2ab7c3a2cc39bc75a120f
BLAKE2b-256 626922725119b76cfb19170d7d73fa503dc3c13cf00e2b7029409617aa9aa6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4ea613b194c51ca719d01b95f8acb73ad7cc51697fdfe947ff1b92842bad981
MD5 61647e4141ab09514a61eece3856e990
BLAKE2b-256 1c8873a52c4f5373b9ae1c774096216c4cffd328c3e2ba6242859040b1d4e029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2d87766dfae8681f61791bc53fc79775152dc829420418a1409fb1738e9ad59
MD5 afc1a3e934f92113f1096c0f85292454
BLAKE2b-256 4c5a1178e6189ccf4e13cc85caa8c5211b7a9474cf6ce94fbe64e7aaf67b9c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e6e12d3a2adebc8a400cb80c90c7fca3bd07f9bf50eddcb181379edfd57edcb
MD5 45ba58d55ff075818214e0e524233021
BLAKE2b-256 4a66af2a9cda6ddf5696833972363e091edce8b95226c378ac3c83fe7c74a931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72a6bdd6b0f5a7bf878ccc52e41086eb7d5eec8e7326b07d7a09bade21e4e693
MD5 70137b65b0202ecbdc7ca157484ed4a3
BLAKE2b-256 2a7f9cf49824038d73590e99adb4d001059ea826a4aa51652882b58c0ca6ec62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddca6e5e21ea192cfd250bed6e09f57be225724f3fa0c4a33e9759aee72f6f99
MD5 de6b1867f129ffe7a0dbff528916aae3
BLAKE2b-256 0a172c5373e0f8c41c494486d5e1666eaebb135d2beb2f5be34414c6f69438ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0818b59d6d520f4cee4b831152b7dd155fc3d4661447519a67de5c9ec8efe987
MD5 a4dee3eda336d5ada18ca27fa496c753
BLAKE2b-256 9ee51ccede929bd0c96b76a449cdd9def8be4c0ae364e77b4238f482d556b167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6c5d6c531909cb84e3acb580387acd78493772f5680eec69d0215c973d58d2ef
MD5 836977817b5fbe3c52c52a65ae88898f
BLAKE2b-256 78af850e504c52a9372050bc7fc01551df397684b2cbe9e9dc87a7a977677509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31abf5197479d25605d957a68be9216ffb8502f03f279165f26c8b888f526976
MD5 e08b990975e5a5b236a78e55d7d6515c
BLAKE2b-256 4e08396427fb5a248eff554e53e0a5d4e5d6e1d1a26f9b96b8b2a6c55d97c782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad33f21f7b65b79cb844e0dcbf3ba733c635fd0660fde156d7e69e766b58d128
MD5 9c9bfdcb4408c3d6e360927b3335cd01
BLAKE2b-256 0fb73f1a81c1ff6967bc4c692650aa1229f6ca87c7887bf7e9192bf4c003d1c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 00413f012c0ffc8eed2855c90a9eeac228d8e853de6345293a0d64ccd76af73e
MD5 b026e384f49a5c469f6e536881d73519
BLAKE2b-256 efe74fc0d5b1be26984116a040e23919d03c0fd9538ee434b1bab0ef384d918d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f7cce7d83d690d9e13b53b7b83b315fdc5bae6ca195e037ab093f91580dc409
MD5 565b547bd90d90bb46ee66902fc4a823
BLAKE2b-256 ae80cfd185d48fb6cf46e3440670be4cdb3d7d4ca375fd214680d7b372fc1a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb9d856a813238e8492b34ee2a98595b590ad5c4092e8a16e875fe2fcc5871e3
MD5 dc4b6d30083f8aca9532189340c8b10f
BLAKE2b-256 c15344cf0787461e8afdf8862834516b02f3a92423e73815fb6723059c5155ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71e276f7cbeb21503c8709dbbe7c501fa713b4c28f8904d658283c8d0af5dd62
MD5 8bb5c0b1cd5218386285a7ff3421c2a0
BLAKE2b-256 2d709bb5aadb6437a1542a3685fb736e6f7b73b947eaefa83055adcad3c788b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5577f8a5a0cbbf3122ec46b641b9154eb6c22b1352d3106ed757860a0e57de0
MD5 047c539061600539f64a87283fcd98fe
BLAKE2b-256 936a4bad7c8d23cbb387ed99f20d919f1562649d695550d7eab5e80255466dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4ae2400d0708bfb53b6cc75e2159a51fa31155a460afb0f62b4e52c01a2fd235
MD5 aa01a0cfaf32ea5cfad0cb15da3da15e
BLAKE2b-256 34fc0bb05722c2caa2d5d5f440c272adbac25d0f58627ee9dd59ae5b06037b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 18a745f4c396d4a3e260b1636bc55652e656a23b08af854c1c8019abc657bb83
MD5 fd58c04c9e2905c78fe0856872a3e89d
BLAKE2b-256 e4698ef7d3278d2371f7909a40e8203ade961d71c2fddbaf85b0a3843b3bf0ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.5-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df50b4229ac7468d00c591d334495fe87181140b699009afd74ac6aec324f6f2
MD5 0abac2f76607d42654dd456b91936832
BLAKE2b-256 f6c2e96d397d576db166c8859fd078f1e3f234fa715a3ef189e472916d63b230

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