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.2.tar.gz (18.4 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (539.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.2-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.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (539.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.2-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.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (540.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (610.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (537.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (608.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (518.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (538.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (609.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.2-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.2-cp313-cp313-manylinux_2_28_i686.whl (373.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (297.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyarrow_message-0.1.2-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.2-cp312-cp312-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (537.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (608.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (297.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyarrow_message-0.1.2-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.2-cp311-cp311-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (513.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (539.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (520.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.2-cp311-cp311-manylinux_2_28_i686.whl (374.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyarrow_message-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (299.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyarrow_message-0.1.2-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.2-cp310-cp310-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyarrow_message-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (539.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.2-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.2-cp310-cp310-manylinux_2_28_i686.whl (374.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyarrow_message-0.1.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (539.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (519.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

pyarrow_message-0.1.2-cp39-cp39-manylinux_2_28_armv7l.whl (286.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (538.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

pyarrow_message-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl (332.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyarrow_message-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8c8a5b2afaaa9a1e88117066ccc70783a5abb75d7428408a696d1acf2eb2bcda
MD5 dfa40feb3a763efdf4114341ca573f38
BLAKE2b-256 c99298b74c733dd1b6a7825f83ee784da385f15f3d6d33ba2cb1a49ad7a350c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b27c80cf10dd40cb71c958da93a2de7c232fc3c1cc17af95c34bb8732d5e6891
MD5 447281ec1899c59526265828c2f97be8
BLAKE2b-256 bf18abf56fde7427d20d1c063fa531bac9d1cd70ce397f19e6d0465b722d02f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46a3ab21fa6922d663c4578e45dc14c5a99e8d411c447d74717e0cb1e01dc436
MD5 ef8af56fe9d41245d36e1f4f0069ae37
BLAKE2b-256 a753550f1f992db75268070432250852a9ee245471402f7bab383b226f8a6b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdafb53898ddbe42bc0c5d2737e72e23a180a51ae4c7797fa3529df71d3cb753
MD5 ce606ecc3ae2918bb6ce4f9ab1157a0a
BLAKE2b-256 ac2b020479a13e3b13ccbb5572a6699fb6c519ce14adc6ed2ad5a972c5551f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad70279ba004fe27fcc88678184600d49537dc71d013c71371ad0e96caa06173
MD5 4c28a96d72262ceedba7cfa998ba429d
BLAKE2b-256 bb1c19566bed55cd7af1d847f4ba795d7fd62ef211f698025b93e9188b1aba2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e6b73f2503eb6ec7aea1f134db2b2a87345fc221b48f4c6679d5e1bb444d1b3c
MD5 09f74e984efd52c65ff9fc574d364dce
BLAKE2b-256 701ffa8c121621ec1c1a60b9872dce6846fb58b96f65d2e3bc4e205c58a82341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fd48b3fd4c2bc35711ae22f0d7311bb59c2b71b235a6bb20b171fc4d15336269
MD5 5796c737555b1edcfb36dbaf5faed54c
BLAKE2b-256 9292849a1f6d9b2da83c2c8ff22926dc90247c11ca721c921393ceb0ef637eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f3da1d30a79f285ed396ff10509d34fdfa92aa2538b75754334ba287087bace
MD5 91d1b7f144fffd67cb51ebbd0cf31a16
BLAKE2b-256 41aae8bf553b3def172ac34fd36a0846260a636b5902bb0b194dd3fa08910153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 910ac78062399c6a72b691c867db8990da9522a225aad2e98fc90468e9473b06
MD5 785f16159559ae64a0e01f63f2affde5
BLAKE2b-256 63cc858083fa2dcf8c623c30e710462f882660964eb0a761522c8aa76b9912e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3786414d957e9347e89b8b62116a6aa148c51f7c0d1dc41e61a29e7152108e3
MD5 b1f4bdfb87c3c1dd0f1eda15cde736f1
BLAKE2b-256 9dba42ade844164685f60bd35b5a3ee65ceadebdcf0f973cf0275529fb158e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b9495d47352801d48e6563fce29e107e145212465b36a799746d57bc62f8eab
MD5 6ff69f2d2d0b9d2afd88614fe7c3cb64
BLAKE2b-256 fbe32bc78d0a8fc5dba8829fa74db7c6055d049b340e27cfae723ffdcb1b8346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfa98952f3e155097247ef21217f15098e7a55d8387b5f405ae58bad9845f862
MD5 bfdefa690432c91bc0b421560608f404
BLAKE2b-256 aafb858284e624a6edc5c441582e6ef028393f7f00f9498bd1406d70a4418d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5aab3425451e66bed4d373995f0a01b08d62f16935739efbb039beeb3f94c171
MD5 d15485647e9061515698cdd703e7c3c1
BLAKE2b-256 aa8dec0596e965f13fc7af7868f66df215410d2d9394ff430fb3551b00234c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 48d1721c95e64c0fa263b5eb420d3c46eaf0818d5646aa58a6ae5748f1c549ec
MD5 addb2611431362d29e6557ebb9754141
BLAKE2b-256 e2730bc6c595bdd6240ce494d09556ef6782bf844b286b6cd293580ab807072c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09f548020e03beafc9523c78f64b85d925743f21df16c22d2dfd863829e92966
MD5 bf35d4609f3c6376aeb65bedcf1d645e
BLAKE2b-256 f6a6e3b6dab93b9542a73bcf329c54e3b1a46321ca40a0e175e80bfe3d1b7f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c4ee297ecf6f0927c5e657ab14c5b5a693ed5f86030b7ad3fb9d4980abee996
MD5 209c9cadc6ebf8366c6bc3255c999b30
BLAKE2b-256 d72164fb6d4da193a9cb1705b4dd09c128341b42b349bb30b0731280dc5216ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dfe9ac48fc05c509e2b46db3898cd1ecc1bf4bd84268430e8372ce438fa4a81
MD5 32f232413608344ab554a041e7d18fae
BLAKE2b-256 859502bee69012225c3a30daa0f89565959572f818f32af2622e4360782f5532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2034e3ee6034ab382cb1c34914bb627ee6b5a3a4c5c0b2651b2bc5692e6a329a
MD5 328d2e77116038b261941fdb063a460e
BLAKE2b-256 e8b5f2746861203ad8d11f9bf89556dbc8c9e50b3fb7746f62c3ea6a295c22ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3765bc7786c5a458cc8dd5dacc5c589583e0bc9375e4957b141d1fad49d000ca
MD5 3bcf1a2d706e78b01b88392a11aaf8e0
BLAKE2b-256 83674fe4541e890f31d90cfa55edf8cccf709213a2696a61c12f323d261eca76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fb8b9509b9006a44e122be84a886d5cbf3b7975010d45907737356f929a82d6d
MD5 870107f47858cba136ab69d8b50e7ead
BLAKE2b-256 e1c2371057841279f781aa1d59aa7575c366dc1a4b4873a3489c6dc448a30c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1665fd8e5fe1988e228545ebf6533fb071471d882f00db7c12789db890827fb8
MD5 a6857514962d530ed383210c33306b0b
BLAKE2b-256 67b83369a50e06988af3fff6b2d08d636a612c16733a383a0a0ae590a4012611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d001f32a15ff42fb765bdcc37dfc5ef286868db556575328de600291de973ef
MD5 09e1a0814a3e80ff5f396d3ba2b30334
BLAKE2b-256 e16293b43a4d8c6f3e4df186eb0402098f60c93b698be57ee5c68be318c40f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a833cde421f65f4022703f66b12b6b35a81af645710cf0d036fa82d05efb9275
MD5 fddd27c1900298443b20dc03b43d8d1f
BLAKE2b-256 aa2518a2dddb836c6437af40ddca7dc6ba886e82dc9e97a23844e30f79ea58da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68a01d30f67eb871b62017e0f85037bdce71692cc99d509429c7885127995260
MD5 7b70dd8f7d5be9318e300efcdb7c4aea
BLAKE2b-256 af240ee8674630da439eedd726aa511c40053642c2ef615e877043fe3e0fbb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33cc8076bfcdeed583f383952a76fcfbd30884548b2c51a38758b32c4b4ea5e2
MD5 4b1cedc4125f4192b9561ee4336d5639
BLAKE2b-256 db021dc41d8906f10deef487831175273aeb9dd93a9d029d1c65c03bcd1628a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d3ec7c2bd2cf9eb7e000f21368dd61cc91e89408f14d4b40d2aadaefdb24ab
MD5 0aca52c4a72c2018f9f80184c39c80f9
BLAKE2b-256 33806de9d5aa78c21420fb9046539aa00723f69d269dbba4dc49a71aa68878e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 aefe5a9a17e5c951f49f06937235ba0c8039744356653ffb059777665a09d995
MD5 4f063aea0c477ab47ee975124ee78c17
BLAKE2b-256 d5eb83ba381dae043820cc436eef84f0eaeadb870ffccf137aa713515ce1ba8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ce3167d867c6ee612b98431f5a9e8ab408e9aad34c2f2c6b57d28a859e6c51d0
MD5 8c9adafddc550faf7c6242413e29f031
BLAKE2b-256 e7915cf5ced5c87b4546149b1c1978ca75996d821cf178137d4032656c93df11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5971804e5feed63d056f276448f9d872f6347f25c07b05a03397eaba9402f4d
MD5 a03b3f02f4d6043a24546cfc1251a254
BLAKE2b-256 c83ff7abf648ad3fefcaa2bd0f7cb4b2fb20aad37f02a3825a320220b42daf59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 70edd79dd04d91d6d0264b4ab47cd52c128b3375dd4b0a00719c3e00f36644ad
MD5 068f9db876971aefd7bd2043c346da6d
BLAKE2b-256 53b4aed9d398cbc5fc2061eaf34f03e26f04bbf798ea7a9ceb3e5785a7d103ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4fa248c281eccb7f5865e87ca32e2329eb862f16a82383c1a1eab4d1935d4686
MD5 1d1b0f8f89979725d8472af75db4b086
BLAKE2b-256 ecb6d1883340f963d92f626485f32d3ebb1c01ea94eba7fa350eb7e622a8ac67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d90ac1a19a8d61254e8b27836a9ecf3f24af52b3f245de31e15e4910502859a
MD5 1155fa9bfa01794b43f3bb78babf44ef
BLAKE2b-256 54268102761159c194a164eee86657f993434d2a9c9660eeb8c365d439395653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 775880b532cff838a26e4239025e8435cb9c227a7c8613ebbd3330acde3107f2
MD5 ffbe92dfb7ab7c3dc3be87c825531950
BLAKE2b-256 71423a8537e367b92f54fdaefc06aa86991713777cd840ec7d78c97559337bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4081d422dccb1d583603cbe2edee084e6f745ce2b3bc5df16229f3eb065a349d
MD5 5c1bb9dc7630a5a2ffd478896f297768
BLAKE2b-256 2d2b3ff30052ca61a7b3d016ecd0df86ae105511d889c6b320c7f46d45ab87ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f0191b874c977f7ef595cbac3d1f353d80568ed71ef116c456670e34da9b074
MD5 714b778678df4ba3311273a39b44d846
BLAKE2b-256 42c432a41e297148ea4663adf0df939b2f01b4fedc713f8c7d54dcdd7bb62499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0a5aff1e16031d5f2b67c64cc096bbb0db7664993fcbf161658e41351727c24
MD5 75df125e75781e792cffbb5ac7a2c86e
BLAKE2b-256 67de319bb6360cec935ae3b88dd6428b9de0e2cf91dacfe5159dca80dba2fa49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 78069911114c90fb3ba7e15d8d24600d0e414fe17dcf68124c0cd0cb1a814485
MD5 c0af2486e629b657722e3bf5d26ef056
BLAKE2b-256 fd4b1ceb778ae18e8eef6d87e88d69c188392f9d821da3d3eeffc129d952e805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b99b7859bac1821c42823ceae87ed962fa81b3c1378574023f80b94917361f84
MD5 cbb2478be8c148dc8a1ac14ddce4cad5
BLAKE2b-256 1fcaaa40916a60cf90904e4bf110bc16fa3e1c2866f6df0103ac56dc1024d120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ba6c00886bf7d56eaaf6e527e02be5fa37c63f7372ef2a8ffbbb4c18b78c163
MD5 d663728ed5e1c31894451c0f52cec807
BLAKE2b-256 72320844839e6513e2e7327f58d7a241c617b1c49b2e3ac9a6287f9479e7d797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a068f9ad325d950507dc46486d9124042050351388ebf0492b63ea153fbbbc98
MD5 b897318743466de6643cf433b05a1105
BLAKE2b-256 973939b02b0c251d7fe4622fa87dd8bee5673087fdfe315a3af4a6e4619ff6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d54b7e7c2dccc61c96a6946a57b1487581639caa2e963c181297c6af8dda2e1e
MD5 24beacdca9d899807e18f521785dbb94
BLAKE2b-256 17c9385645b27a914f90164ce60130081a3df19d86f92d8c025417c27082ec9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c06aa2eb9b1fcad814b9f45235ff96a1991933ab55878abf5a5f317f1ee905ac
MD5 364859480342eb7c8fa4cfd8c41b49ec
BLAKE2b-256 15a784806012057e7884c1a8ae1a3ad39c870657422c028d653bad67cd924e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b53c60391aadb564327cd90dea258c4d4b48a49829e2ab958ea5c047face38e7
MD5 358294bd18edc24421c7d678ca5989e6
BLAKE2b-256 3bf6b737e78cd648a9f6366bf3cc5df615b866838f55f32bda111745effd3c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a84b87274f7fe24995e5ec95710f0e1a7bf293e50bad491e63412311a971b198
MD5 69d2c7ab05da66f4e256dc9adc3d2ebf
BLAKE2b-256 0dcc2b3803d7396f99d5c27b84abd8d9cb06ef04f2afbde06adf9c46d6dc14c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07c1ed07e1746392ac388159ff2ebf1ca0b87a363fced24e2654210f9c982aa2
MD5 5ac68cdcdc269a7646d634060323c5f9
BLAKE2b-256 72b58cab20cf9926ee13d2a199e26f67b8637858778e7183f1976cfec838c3b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51f281734cf349a42fbb37dd384a7151b8a31b53bf61c383685769e7d07befe6
MD5 86912862d4f8927dcf2947010ad3168c
BLAKE2b-256 d3370dd15da0ce536672a0df7605ed99ded5b68c23015efddcf3fe618c10513a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cbc2244e3ab65527bbd83f43c46b6b193b453e504b31e0884a422486a1d5493
MD5 8fd177d59a55a1343e0ef7f6f3863ea5
BLAKE2b-256 a23cb1526ee00e40e3e7675bdf70f0f966fed6fe0e387f444b32563f54e69066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0b8cefbbaf0882d323d435863d0c78a807ad7a25e6774dc9dcd758247da35357
MD5 98d732413cdc1423d4d147bb6d3f2411
BLAKE2b-256 0b42f802550364817473076c1db4177545310f7d8947e630b9bf20e641e99c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 37cf2d9a1926884f67fb5a68d7291df95da6f9404393aeb08d83388d4e6259e4
MD5 a177c5669a2c25ebb4ca1706292a47d7
BLAKE2b-256 dda6f768c796ff70787fcd2020a1d88ef2a1220b44bb40a851fd9005c62ca583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5baa3be564d8611854926e0c8c734cf548bfbbe554ac51c04a2b9865b44160d
MD5 e88113ba3be5c12f742058c97b677e36
BLAKE2b-256 bbcdc89c379545007f7a0ca3803e40f0931579a4a4034ca0b0b4093b931e9f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8d8043f71e7bcca4e1fb7913d5ad238b79a367bdb8f83e9f1a564a91f3005f0
MD5 e6549c2063b40c17b4514034bb7ddd64
BLAKE2b-256 b7df0d822302134a84434603f2396d8fd6d886d516252aebd22186eb36e44707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0776f6aaebd5079e761b81f6b53fca355bbd12678031f9e8a53ca55ea88fdd78
MD5 6d214bbe27a058693a0d06bc3b38c30a
BLAKE2b-256 64cbbc6a535607952fe83a3908cf0bef88c7b1a012238ca4967542a4802ee45e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2d1e86802291f200fe36184e5b66c20a54445effb9bc0c2a9d8d0593ed089e6
MD5 54ad184162ee959a9859b69a930f2c8a
BLAKE2b-256 91c503a222f706a74c10129401b3c9d3a1b118e4b984133482e86f2dc429425e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e7ae056dd61362a42810556d8fd5e882d545a5b07f29bd71d22ce5307c6e3c74
MD5 1baf09c0003f985435a57c5663490c28
BLAKE2b-256 8a26f943d7a239e2d72f64369b7955f7fcb26590be3b2516878ef2eeac9b4ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcf78329f0bb69237b3c5d391387ff13a00bd511a910cb41435abea9d9709613
MD5 d9e8d60007a4b9e7e6b9d3411e1c3ebd
BLAKE2b-256 f03b88712abaf09cd059437a4f9bb88cd152748984d7dee9264f0493b0f54cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b6b6404e772eb0ef8e79f2947fde4edd72795b63a49d192e3da052dfee8349
MD5 53088c071cb1ae87b7e1b7fb812a8c18
BLAKE2b-256 1624cb052a74175532ee572adababf875614e8ecb9a58bd4bc14feb17cd60f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c18df0cc59b177cc36c74762c167122ec960479839b5be857a4795e6da13c3f
MD5 3f1a26bf5f4048265219faa01c62b895
BLAKE2b-256 0f6909b4f54d2e487c008d41ba4beca9b81f31b8b6e08318107bd94bdb84cdc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06c588c5789e7353b5bc960244cc2dce133d58f95c0479803a5c13c2801be2e5
MD5 6a3914465efd46659a52d549269279a5
BLAKE2b-256 08c629d5d87ae0ebafa9a644474325600ffc10756b37e2b6aa248b870deec6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e3e218853327091c611dab131e199b150a1bceeab5e19c43dfe83a500170b104
MD5 1f5a63c5b54954576b05f5487ff0cccc
BLAKE2b-256 9954723675f21d48b4080f728ab995e4d3891a24ae23e9a47e4b6d995d98d72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a2f00a65095ef7e366b4b64107bf277016016e272e883dc64afdeac172de5990
MD5 a987c3f2dd8a29dff8c097d53369388e
BLAKE2b-256 8b08795b6e8caeffe8cf300dff4ded20acd50d8e175948ff5d8379b73576ae0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16638e5cbd7016f32994e38dae2b6b193e246dfdbeda02cca00fdc20af564cb9
MD5 079a6b236bb8424d18a94912bf08e2fe
BLAKE2b-256 5f37b85cca1871a3e2cda3c0b2327bb2d9722a8347ea1924a12e1826f56ef9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a588ae3b0dbcf5fb540c89628c8f60df476dc2814e31fd6caddffeb0bb8e8832
MD5 41b4732f348df17a646fb77be4251c6f
BLAKE2b-256 ea4fa4a160a4cd7b7c1e7b0df6a18cb75db4aabc5fffd42553a22a065178faf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0289ab22bb7b0cc786275f95ce042491836d54bf4065e5476aa47c624a180b06
MD5 b84aac2a8e47d5121f692ea6a35419f9
BLAKE2b-256 7f408f92e098dbde17aac66bb0f8e994d5129d26aa08ef4fe49100f43964d8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e9635ca2fc25fae07acd2c6b8d3f007dcf84caa4d55c38e314c6854929c1e0f0
MD5 41f8a28601c150c6e26c5b3c9fc382e2
BLAKE2b-256 a4e5c1a72d2f124093885f5c4d7850dcd66934797f6b0365bcdd6d63d9a684ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9a6a99cd730150c39710090fb78c416717390032b5b21c5f8691b5d2c1427197
MD5 5c4ad4e9d613f2f85ab8e3a559f3d4c1
BLAKE2b-256 6a182ab58e1863465c01da3aa93bb5466fe232442f6b9f2b0d449e2ef21f7418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b20d3c02b73ed25bd43ccecd7f3f63f5d2346cd93d04a1cac1b9e4f895b02a5d
MD5 e20cababad89713848a0a8a559959d6d
BLAKE2b-256 79b471599283bd600e792a39fc91d1599d0d7e284d43596498d12e8786bbdc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d5667ce2c07cf238800e6adb997e9905f365d645631804e82a51360f2f66c70
MD5 27b2b9a9c91fddb0f08fd4b631c8bf2d
BLAKE2b-256 16ad70b07241b8f61507f8cba22fe10a79954c0e0c2407e8deacfa7983cd4bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f7928cb1c19e5abe2a8ee38ca0f69220b163e92353ef21cc9c12ac6aabaf235
MD5 399ca9f625386a86868128c9c36e3bd5
BLAKE2b-256 413504088d097c90b021b944378116250f51c8638bfc3462968900382f4af05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcf6f68b40d30764b5e0417db66512ee24113f64007edb22308dd4493da3152b
MD5 f587aa5a5dc1dadc62271728d025343e
BLAKE2b-256 45943716b1fd554341dbe0fafa061dc9221282e0e57f010359033f4ff21e47e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cebb73de1a0d4384f04be3538499883c7db4944e6c0e5b878b81511e8fcd8aef
MD5 e4c0c9b3aa6082f695619f69994534d3
BLAKE2b-256 d5297c2d57502865c1f3f5ebe1cfbcb0ef01959de7a8b9da7a20cc7c08498057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1c625eac239979e4161aab2e0c6237bb25a554cc84a779eacdbeb6db586d5126
MD5 763ae8f1e6a054101af0062fbb91307f
BLAKE2b-256 ddf83314386f3a322f75b6a2ade9d5f52f6f82f0b74bc8b33babf3a59bb275cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6f9d329c4d316b029a4368aa45b418ab6f4ea087553cf7711fe684854b9fd65e
MD5 edb4840ec04c135fa83bdcc4b4cc7124
BLAKE2b-256 e5a2073602a86749481def9f3f06507157926323397a65d5d2bc1a6ad142e905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b7ca9e376867ace3504b8fff5922ce9417acaf34720df72ff9f0c8bbcc81452
MD5 04ad8a74e79dc4a37b9c95358bf269a0
BLAKE2b-256 47978824767984d97a771b061b50b4a4f5271fa8b5d27c0a3cdc9ecfc19bb84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 60d9012f2bdd689c8dca22338ea630aa27b0d894ff94a62bc1bfda696a7ace0c
MD5 267cd3ea588849b742d9de7a3a2b0869
BLAKE2b-256 c758fdec2cd2183f20ac425f918d32c22841149ca988281510c97f3901ea22fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5a6b19f5bc2a7400cdd92cfb411f2bef2f7494d0acd37aa42a878b9067aa5805
MD5 e2875c7c4976eef93565ce0cfdcfe63c
BLAKE2b-256 4edf813c00c8b8e3413c0fe34e11b690afc12a881676944023305ea635f5a349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 516ac00e96dc6555ea0368af7630c74d5cd465539886eb50ba46f5b45c9bf783
MD5 d326119c1534326b5bbc957339866480
BLAKE2b-256 bb585a6c5b819c18074896895803210e8b5400a7415d9df41e4ebcf5b071245d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2846c233f2119b5ac2b14481ee758747e4efa0e229dc3985f5fde271740c07dc
MD5 639ed010ed4b37f7e924e3480bf4dda0
BLAKE2b-256 8e28b39a084eb56442b6c5280d6c898f344c47c88932c0eea224bc895424cd82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 638c89412d94657a7fd6a353ad18f1b2ac9c531ef32b053b06d30f4b809436a9
MD5 c451a6e0a82485bf9a32e3375baa3fd9
BLAKE2b-256 514c2e9c16112de8d5e864af9e4a2a7028bf2661dd6fc6f3cec600b672a72573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6563f250a1c9b28ecbaaa7ac89a0c623275a495ec991e0e58d79a52668370ad
MD5 9f3fa5e83ef5d4341afe1565db6f585d
BLAKE2b-256 2015190087fa93864f2411a1b41d2d4be1f1f6e48580c8edb13c65b17c420d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9ed8bd2de49981c9126def5fa693893a34ad71f7efb56ec1ad93a8a811b4733b
MD5 46a2a7eab4e6ea14bafd3e99ea97f14d
BLAKE2b-256 fa6bdaf5be294ffd87cb7a9863099ea02c57419395645284d23cf8a10210e83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 34265f3da9f498ec69b37ecdf52b5cb33d8cf5a793f84551a813a2ed02c32cdc
MD5 ad4e641ac1b62418d71deb9a58ff1584
BLAKE2b-256 c811e5dbc0c3f415ee4a4405281c64f34ee3d066d65059e2c8cef21cf98c1122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d6894d9a6e64cab168fa1ba2a3944d5e3f6c1d2f069f0d542873c52ebe7d2f2
MD5 6cc0df57e96d9cc9de1c873e0f24f26e
BLAKE2b-256 c8e70759f6615b68b00b859cb3a57b82be592b93b8e425e46dca4d1af8dfac6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d8e5a2aeaf71683f85c825d1aadc39d19bcf369524445da378401dd600faf3f
MD5 e000fc94fe2320786e50ab2c425f948a
BLAKE2b-256 78dfd37fe0fe2a9403fb42a7dcfe0d85c337fcd6f25b61135742a20a8ae8092e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 64f6f6fea1bcedc51d23c5071ea41f314da097e6888b3635754de0130cf1819c
MD5 b425738768f32cb4916c8a63ceaad2af
BLAKE2b-256 cb182ab8105cdde5921b82a0740d47353c2c21652fe5b45e051f91dff52c5187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2994605f4a15e05f6b6a5f69d73d068d0a8f2b8cdf1f7991434e6fbc67f252e
MD5 eb7be593339ee96c5cbbbb706328bc1b
BLAKE2b-256 fbfac65aeb55cb49ba65baa8d772a6e06e1f5dc12e3b4c72f401804585b708d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09dd03942a790e4d27c73f37d0256784375cda5a194d091e4c670eead27caa0d
MD5 04593fb82b8e8a3e59ce1758972e6c86
BLAKE2b-256 078fd30bfda2d39df92872771818fcfa462f11dbd66302d8162ae6b454c37a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b46845a924059899bd78488ea12f39c4d90f57a5b3ddae5b15aebf9ec9ace886
MD5 deed7859b694a28c687ed9ac9215e5f7
BLAKE2b-256 af9d5803d392e6b69bee3429694ef55996279e3860ef07f92ddc7531d671b407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17b2f7c16699759f95c073d3fd2a948fc022429a7579a7963ad1afc1d1aefcef
MD5 80b86960603c6c2dde4d5834d657c1e4
BLAKE2b-256 fd9defc3461277ae65bcb26cd5ed6e7d570e4d449e3393fd53aab345dad08725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 42cd2b78ade4e5ba5cff4566f8356fbfcd33a1921a0905bd81e20263805375b4
MD5 45d80597367dd89eeaca39a2b36ad5f5
BLAKE2b-256 8a7c45362c55fd684526dbf1f2175ac5580fb594ea3dd0b784ca0ae1c88ee745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4a501c8b39ba1f7aab2daa32eb830bf74b7875685ca7c846b02b5b97694bf5c3
MD5 ce6a561c7b378708ed424a2c4c2db618
BLAKE2b-256 db1dd5476dd36f07fd8b010cf7b34f4fe26f87552a676670da97520ada4989b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bde94716ab8575ee0d6938d2b85ad4d6441e3e93b161dfbfa5bbbdeff83f26c8
MD5 6361f77705ff9beb1d6cf110fb408451
BLAKE2b-256 20edcaee4ab96933c10354e61bdd326ca475c4a706b6990d7952988dc3fddeea

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