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

cargo run -p arrow-message --example derive
cargo run -p arrow-message --example enum_derive
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()

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 is Vec/List support is possible and if it's 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.1.tar.gz (18.3 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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (539.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (610.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (520.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (363.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyarrow_message-0.1.1-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.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (539.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (610.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (520.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (363.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (514.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (540.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (382.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (537.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (400.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pyarrow_message-0.1.1-cp313-cp313-win32.whl (179.9 kB view details)

Uploaded CPython 3.13Windows x86

pyarrow_message-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (537.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (519.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (362.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (362.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pyarrow_message-0.1.1-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.1-cp311-cp311-win_amd64.whl (189.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (362.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyarrow_message-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (539.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (363.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyarrow_message-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (539.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (363.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyarrow_message-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (519.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyarrow_message-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (362.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pyarrow_message-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b8e20444278cc629a2f620dfc198c875213e17b29a8b412c8d55be205b9b239e
MD5 907dca624ca26d3fcf31c1293e06d0b8
BLAKE2b-256 358b3cf0b5ea226392aab4af083f52a9cb708c69fc0ed44bfb15eca7d7a43a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d3a8b299bda3aaa76827b665c355ba6e3aee931ee9717191214aa011806746f
MD5 d2966a027566a661dbffa79eb94a7370
BLAKE2b-256 3c7459d543f4ef1498611ebdfc7bb0cbd59137a5fe0c8dacea54675119e388f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb426fb7340c0d4b6eb238b5c4e2c6952fa4f6c0c9100a3d91311fd518abeadc
MD5 02a998ea4b2958a931599dd2b460c9cd
BLAKE2b-256 c81a285c04d7c86475655d0da0982bfc8d70054ad3d13d937e89dafcfab40abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d77422d0675900a244265d2144c99ae99b28ced4b953d1cf9050fd6455c1065
MD5 b635c34cb1f2de2513a79372f6972c2f
BLAKE2b-256 ffe4390f22238da04b68c867e3ded69a09b6c849ef7608c0a7b888fbebfe71b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6b6d9d158cef9414fa02878b639171d862caea0dd9ead7338b600c46c7552ac
MD5 3c0f521b356cb7f7b404da6c61eb6f44
BLAKE2b-256 8fa191cfd666a348efe0c11398ada8e93db986615bebf065a85f3847879bfb3a

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c74e4cca635ebd4163bc9010fc71ac8ffe479f0c8d46ac7499e63ce7f10c7f10
MD5 e29b64e7013cf5ec4c5eabb6f97a15f8
BLAKE2b-256 8b71ff4d970f9537e124dd5eebf4bac9c9b011b763f03c72e9560255852a9b78

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 caf82111bbf13b68e1762e476e0aabea41f21bc773e4e51a001b60c4602ed9f0
MD5 31ce32260dc25ea4ad8fe3fa8475717a
BLAKE2b-256 6b05d6d99f4d04a280dc0afcacbd0a3bf0a81d3e7f03a3a909a495e12f4da793

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5ec8dea0c0949695da57bd69fa6f9a77493ce566a98be4c27114f1224202669
MD5 1c938af06946d53524b725c767ab558e
BLAKE2b-256 298121049ff78426204d533d9895b951a31ccbf2b244b449a7c6576fbce2913a

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3cafb8c54347ff9755e43600fa9d1feac99162159e9d8475377338561a799c4
MD5 d2ff74fa2e72e2a24cad37918038450a
BLAKE2b-256 43be10909890c1414b415ea1e6445064b3897f3f7440d1114e1406eeead36a3e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 befd521e466439527e3f0fc63a2f7f0d3f8b3bfeeac236e16c8ef0a9a184354b
MD5 b2836fb3b8745cb1ba634c015d0c224c
BLAKE2b-256 c572dab11e405d3b9743ab60eda775c77266ff00ce8bbd5963449b32de1efbdc

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1875a4bae32e76525bdf72a7b743eff4c2ca945a3f4ba7cdb8d6c2612da5c933
MD5 e6a75ddef1f6dc99f5478e5b00f22583
BLAKE2b-256 b874c1a7b84157c5aeb1113140462f9044e0e490dee6c4df2cb5782365bf84a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768b6dbf3b0f997e2a94ebde302c2d459370b30158b6a6796ac802269d70e912
MD5 dda485b1dad4e467c78518aa72dd4c60
BLAKE2b-256 30fd59bcca07ad49734239a1cd68fb7c1e8e0bbe9768bcf1d90cbeee89c2ada6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c55eec54c7ba4d0524afb2b12d71e22d38465b5b255bd088e89c969fd61518c3
MD5 4ecbb11d2a637f29fb0fb9ace87f4847
BLAKE2b-256 155a1d557fdca23a02189eb48368e7dcaa7dd2d9abd33eb38c9bc96be6ec0d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 824852718b454e4e750fe878f29c0b13345dc533a4cdd5f0bbec7a5db10353dd
MD5 f2135bf6ee45566ac60cc3fa7a9beb07
BLAKE2b-256 713a0e16155396c7c25fcbe7d62890cb83d5834256449c694eea6bd26e15af50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b86288092e5392263c5eebe1bfb609bfe763617e2810afbb46579f82235d9ccb
MD5 13145e088588aa731fc6b4ae20ce290f
BLAKE2b-256 6b71460b270285618e2e4e0fc3b66a6978bf1e648b40d49ae508e06b2393cd9c

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8bb6e54c406ff8b08033000d341798a26d41e7d8f5e54fbdd963991b0b36bd2
MD5 32495c4ed507e1ba515e24539437ec5c
BLAKE2b-256 c674796d880712882fb59a6cfc6f41a7d2e642a032e60fdf513c0c9478dd9ddd

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4fb11fc5c6ed534598eca549d3426fd53c81130e36797c480cc1fc431675242
MD5 41b6665b31ce067aa3601457a06f285c
BLAKE2b-256 311166351fd411b7f66f8636c8be6b2141a2d813c0344a7e1f9d4ec2e6916e13

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d08cc5deae34f722f605f996ecb558ee7d86715eb4634ad2ab3ce9702bf4533a
MD5 c4b06c142a34b3567546914bfafb1e30
BLAKE2b-256 a9bfd35031fea904d6b1161483a37984ad052c768f6f85d1878ce8f2ded46bf3

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d1467f1ba3bcc562388a02cb8dd9300e344b66209ab7269469081225e704a50
MD5 e98b37439c4b36e40c94b380e534f484
BLAKE2b-256 d379591995bc97330ed103c4e085f08f4b2f1d92a9c985088f5aece6a70ade58

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3328629c334140c0baefb4eab9fc3354e9ac50b4da1694d84a7f3a95a01a5dd
MD5 43f2a18a6c79c514293ce47a98676f85
BLAKE2b-256 0327bde912388c3d9d4c4ec2ea500ddda4c9280b403304f83c2a4cc1873afaea

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e970e989284eed03e3b93d155319a1d9b779767921256a0a1f22f2df2bccd6b1
MD5 b395647df1382fbc23ec82cf9e1f571e
BLAKE2b-256 1ea4d37b4c32c5603d36567d3ad7b89747c07267db76db26e7438cd886c14926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05d7d0d866e3584d30569b2ab1e8effe7ae43b5ca81e8fbbd96687dcd5da2c9c
MD5 42b8855cadd55e08ad5b60daeafb436c
BLAKE2b-256 e94aeec780e7a9277498a6734502486dbb133541be7a61a4c4d76df92a24a477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 196fac656fecadb303457c36b3bbf9293072a99a12dc8bd35b3a0df931bcef64
MD5 72e588aefc07f29fb8ccc61db9819b5f
BLAKE2b-256 fca010ebb0dcdf1781ca9b22b303510b68cfa7d83978e0d3d093cd5816a173d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57b71808bf4205168c90f002364ef8873fef8a8c6a6e6ae8ea0de6d05bb03001
MD5 3556f3065dc1663301a6a5198c3cca11
BLAKE2b-256 c8a5a8cd9ff7576491d96585ad6aedb772c8dda7e00e2ffe40480feb22c5249d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dd7de0dd471fee42ff7285af81f20d63118786868092c9ac7d18a583592fa40
MD5 e060839c350d159b19adfdfb6e2aefd2
BLAKE2b-256 a495afc74fb60e3399cf746ddbd4304c0667ec17863c61a72006efc2a59d13f2

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9cb0d3b91a0a55ce290d261acc6528357eb17a65610d53793153fb9706d3e25
MD5 35e76ab3c4f8488acf70d9d8a483d0b6
BLAKE2b-256 27ac3256957b79637a3d647da22dcc515d066ca24dd95c1d1547a6ddb61f6f6f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee169d411e4534af1f303868d6449a868f6c5f869638ef0abee3faa4b553c84f
MD5 16dcf9a5adcb46194ff6e0b7df65fc35
BLAKE2b-256 0decc0573bc6e4b44288eeb925173625aa17d217b07c62f1ccdfe5149354ebcf

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f553303276c81fe97f59eeefc8de4633a2ffba1f13416069b615b2b44ffa240
MD5 740745b6d373e282a600cb9134e1740b
BLAKE2b-256 cdf754ba0d837fe6386bca921fc172c610c4ebd0ede79bfb4969eae01ad140b0

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e793b56d536a9ac12434abf9bdf0358c2db02e72c2c1b881f00c7ea099f37771
MD5 896d9c87f037230fea4298148c84da5e
BLAKE2b-256 5be8d597033866b96210ea8158db24450667dc51e1b13624e15f3a7e78d25fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d896c27c1314c639517d0d1a0bb7972992f2bfef458a68f33445ac22be67d733
MD5 f9a22a17bd0d978f2d373f3ab76d1890
BLAKE2b-256 9c9b4c3827af179d98e78e6df58357acd3a07ef8db0c233a5f9141c0ad5d5b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a9546c79e36e8b41b086b7045f11a3b025b3a220dc0869a716394e967459c8b
MD5 d96db0756459da4b853ad2c4a6b1c1d0
BLAKE2b-256 2e002cdc994ff99e374f76629015ea46aee51b5fe001025675ad950b914282b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f3d11a669f8e6235ce4262a106220337db058ec98c0ce5db2c38f1feccf9b6a
MD5 7447c7525fbd232714e902cc07fbe22f
BLAKE2b-256 814f2331b87d3f6ab8ae4885f9172ec497a73ff1b7a6b015e602156cd603040a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6a387751267fc21edd3207014709dd7fa5f74babd4668a9a709e43e0a56de3e
MD5 78532a8654f2fd0e1fc3efdb75b9429c
BLAKE2b-256 0d3a0add13943b1665921d267ecd2172bf9089e88880d0c9efcbe80a945c450f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b68e308ee5842848820f3a38200abbdd0575bea8ab273666dbcfed11bfa81dcd
MD5 83f1c44a70ec8b71d61fe767e629d6b5
BLAKE2b-256 8bd1c1d61fa91a39fd655bbad70ced12ec29b568002ae5907a68604b1418cd80

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d76f319ff103fcb42474bdd51a98c6e0197d55305317c756c8a4a1b57d348cea
MD5 ab263c4a35657da5f8324cc53034d5ef
BLAKE2b-256 2ccca90055ff90b5956d4ea592e8f47e9294e12ba00508e7d2287af20c4294c8

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a300637893e582cf16c770b485f9f24b71d99f46df9a90360a8187a3698016c
MD5 405703b82ebb7b6edab8c4aa84a4b1ca
BLAKE2b-256 e90fcdbdced6ac5ded960389b2afc9ffc3c90480bf1d41bee577440746f59a9e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9241a5c7c0a8abed9330060a3864ff3ee92fe22f3b6b7fa5b275b2ac97e25d1
MD5 19f5c543d1f2da7a6523e9ccc570c7aa
BLAKE2b-256 a0bc6b5b4ec9c6f05785c7a168710821dda62d4ba9e6bea6262f75ca95cbebda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb96c846e8cb98a6960d37df5b6a5b5a1065ec70db373871e81beef51a0706e8
MD5 f927021c49af199e695191f018a752a9
BLAKE2b-256 341dae4ee9fdef0068246e8f8385427ed3d64536a0af39acab485bd88510af34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 44cc78c47f054edd8a3334a41b0be3993b86b5fd10f862bc31bd045054ecbf87
MD5 4079b19d01ace000e84b1b9fffc57093
BLAKE2b-256 e7c4a0f3fd6f3be29b8a8788550c3919a3d4fd58cd8fbd9418a274bd84988ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bfdfec3e6d2e1953ca437dbab5a416de4ebcf169dc686cd4b7d68038b9fc1c5
MD5 9b67186441315394b6c0b9a0644ef1d4
BLAKE2b-256 991145df3a0942847104d881c7427ec663a82933572b27bac6b17b2bbc5b1038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 290acde511d30af6eb8357bd34979ec119e8b22b1bccb8103c17a249a095947e
MD5 904c39160d06790e16ae1171a93216ed
BLAKE2b-256 bb0f1764dc7a20c344934ff1d9d6ec8f2ebc4567f2e681e75d5458ec2e41cde3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f0d1ea4be25f42fa5315d9ca57b9904757a01e48fb8f73311402a65ceab20fb
MD5 cf4d516b2f0b0738b061719b36b5e4f4
BLAKE2b-256 f16c3d6e2ed2adda508c3262b2b97696a57139d6210582ca6463a281a1b32292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4579eb0fee51f14c401058c3be3a6ba51a5fba2401760c23e904081586fce544
MD5 20b45a62e274e223a20f97d9c6bce87c
BLAKE2b-256 3c78725f5cc0179b27987038df2b4ef6e6b5a5be85aed24d0048d598528b6975

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9447a1b7dd4bb0f18bfe1a9ae71668a31498c071513c609e9510b6c03d2fe5d3
MD5 6834c6fdd8a47f22ecd852c9c4e44e80
BLAKE2b-256 602d7e504720dc91a213f34736361ed3778b600584db8a4a9f9f7e4f9f595b84

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf92e96b00932ae336c12d56f87ab8d0a423bb1e2f83a7ed4ab531939c112675
MD5 7446fa074631cf83361989e3008e3059
BLAKE2b-256 b0ab1fd5a507de235b561e85c9044d394e1b73961fcce0d49d6dfc64d2eaf084

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 258b38ccbf908ea6094db88bb201e02a852a9b0d35a8a61dc66feef704d2523f
MD5 62c839250e0fa3586e184b3d31f1d60a
BLAKE2b-256 db663a7e70c45c6c0b954005c106d5e788f7a940fb3cca3433b3f783ef25d35e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ef2e677a257f9ef407f9349c63e8af73dc28b81ea8730077c18f4582f923341
MD5 9353de79d3a245b93dc7103b01334eda
BLAKE2b-256 2aff74a59e13af39f4d3760d7396bdcff7e051dd6c28d1a8746db6d7bd4f6e9f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ab7aed0c46906e3eb5e854f8b2158783ea06edb072c2da626c87f3e93fbae92
MD5 bcddff14888f57aa1edead5009157ed8
BLAKE2b-256 9d3ca06705f89685e89b8f3ecc1152af22e833d4a57b8a2839bff19f687d3b97

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dadba89251610a9f0bdd802917566b93eef333b18d3804bb3378ba554341b31
MD5 00b2cb1bfdff00ed8ec931d6300b1bbb
BLAKE2b-256 df6832403609f102ca2611c55ca8cc5c79f7c3a63e615d509f65c3a208f79ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25788173fb1a68d25d0a3eaf37ad96ae9d90d6d952443316b512577530c041e0
MD5 a64bb88acf3feebe81da5be350105735
BLAKE2b-256 0358e1f1b29bbda3f338797a8b1be0ef61c2b0c611489417e62bc76c60505c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4eb4b588c262986575c0f24fd98d38523f121ee505c375bcbd62722c703c4005
MD5 6aff406188977db80f7a716d5ffcbedc
BLAKE2b-256 14239a5bd15a3d1a0a55c9df3e99a583b651e6c3da4ac96e8b531741aed53856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3fafc11802bb4873c46414e76c547fd3a81fd8a5b117f88084652c09fe462e0e
MD5 6de083e63f9cc18d3dea3fd8f255c675
BLAKE2b-256 bf9629cb08df5ac31758aaa7ae3a561fbbe57f54100f8dd83fb56bbf4526580f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 68f2f414af9130c41d32d98df107b8a43eaab6a264b7eb34a67506ac161afa9e
MD5 8cba576f0d97a704d709093760cf8219
BLAKE2b-256 1bd23b1f178a27ff0e15252514683d36b2fafb55acdfb8e5348d05fd8ddd59eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06ebc9aed7eff787ca5040cab97b036b826c128be9110a91326b1590a1e00a07
MD5 0227e31d4f489e46eca938d760a6898c
BLAKE2b-256 58c5590c239dae3f47b0e5e9a915f39beba4eca50ec291c0f95ef8b0d6017e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a52fe82ee366b2b33c3883ad778cdb0c22fd8ee1d2111331720d3ddf736e0ce0
MD5 9a5b8fc9655ac6913bbefd56acff7677
BLAKE2b-256 f04b3987e308464f050239ecc65eade93f7523091b96a2c2651b391a69bbf23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0883cc447769b66eede2c2d2ba33e186176560f8b2a27d98c6f62dc0b9ff3d0
MD5 cd6c622a7222a293602830c10a0e324c
BLAKE2b-256 9cced2663f76c5726523dc62996a8fdd08e6c99a1da9bf271fc0975934ce306f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebbfac90e96db086213770ddedaddb827b1f2671e70d4c92a688338af4168ab1
MD5 d45e2375e382b5ae51513a069ccfd467
BLAKE2b-256 a5faf4785d12aebf8e2f301f88ae992de06cf359f6f803f93e47d61f5f3f7bc2

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33c5d222516779d99d45497e27957e8d1ea2c01ec4b49c4907a0bed27d46bd53
MD5 f46a298d1a7f76e138d9db01a69deb88
BLAKE2b-256 fdb323dc9e6386b0005a6d3c1bb91a8e035dfa65abb2a0d5c66698f2181eb414

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcc64fa82f6cb4b1067124763a48d563dd0afbfabf644416510f944cf2f11d82
MD5 ee878c295b511232e0122ded3c3f097c
BLAKE2b-256 f2f8788a6f42b76e7f441b8b8e8467293eaa9b0da402b0fc690b50b1775653b4

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d874c72028f443103eed58e90f6c2639988183a5a60d3ec60dc0a1305491c11
MD5 3860bab1f14b79d4496ab2dface0a0e1
BLAKE2b-256 07db35279fbe404e559d09043f46ba19b95a5da7d6901863bf0c40b7de98eb71

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcd765016b4df6fa74680e2d194d0fc0ea1e217b096d7f0fdf0fab9d07c12745
MD5 88dbc5d144f3b00c4b7f63f590602235
BLAKE2b-256 7d23db64854315859ade5b866de2ff3116e4784e25dd58215bef5e220dcc8835

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66b0f8b52cf4de1b44ae3d2241e1b35d5510864930ddddb5787a102738f6fc76
MD5 b5affe33704a20e4d02f168141bd8dcf
BLAKE2b-256 bcbb0dfab0167470e9ecebcd558fdf803c63ceb71079c02941e6f741f9016c7f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a491a51f4e6377d4b9d432d4e37c4386bb0eb4e46cfd626411420a796c68f844
MD5 f4ebc069ca79f87b463f4359ed2e01a0
BLAKE2b-256 e66ace5db47d7041bfd107358cb3c7a48ae618718ecd9fd83fec5b38e23d723f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aea29bcc719fc501265d8daddd7cb408ad8a2380562fa4340566e582870b25db
MD5 11a6d64c94a2d6ce077abc48ea3adb65
BLAKE2b-256 2cb872ec5686d2fe5c11525ed5e0101bcc5285af262e437052de50f8aa74efd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f29cdbd30add661a59c360a9b6132807f8b4f72fa5669114101887dcceacf155
MD5 047a2565c0d4565f6ad17d6b688c2a68
BLAKE2b-256 c139267c81f3e640ab337ac1cc0483c186e0fe93adbfc9673b254207ace6d096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f9c5c18758f05f0dff233b765d2d15a758fb771ac4776f9367c79af0ff0a826
MD5 2bba7a7306aa8a6cd999222a369fc3ac
BLAKE2b-256 c0d5addf9dcb36f22db8dcbfac46952db10310444874901f0c1df4f3a0d540b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 458da189ef4bf17344b81a618b053366065d97de345a748d6d85045f296d2616
MD5 7cab886ec2ea735aedc76d3659fe2823
BLAKE2b-256 e99d9e2e751ccaf7bcce34a6392a87e5ffa186ff47fc4171ed2602abd2d54576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5b7051ee9a7c9f14041169436196d59126ede5eff36a5ff237a094e62b9cc81
MD5 11995b219c9d0faf6a2b6e4c3c652806
BLAKE2b-256 8519790332a3d914218e522ea174d19853f69530bbd31f50c4dcf77d743183c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8322d73ae7b03af56ab728db2508d883aef55cc411492b3cc58508d1904cc56c
MD5 64b51072213b1d9c1fe5997af879bc6b
BLAKE2b-256 3cffb85c116933fbb641a3cb293e1348e17507328011e56c9ec5e9ab5f50f0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0164ee257c62622c2cf02690f7d78c58622e6622e8cafb22b3cd39081a3b68d6
MD5 3751ad7ed5cd572f98b85f99424cd60d
BLAKE2b-256 50527632b5771698a15532a72ddf48efe46c2b919cfb84cc8c2b361064173b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91d2c8658aab1257e9d6624102a1a3f0d8dc5b3c0ef0d4d01950373e799bc53d
MD5 0c57a53eaa1bb2ea21d585b1582eb5c0
BLAKE2b-256 92bc754d3018d4808b3b1c61ba1616b3654e24b4cb3b4ecb1eba4b21f5d2fed4

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f038a5dc8acb7c6bf44dd3a8df3b51bf9beb2382ee55d9768c39a08c4fcaf752
MD5 2285c688d1ba13424b298ca4c3b99b50
BLAKE2b-256 18894f9e3001a8ce45e35a86478a7968022ce0139b0e930e8cf88b27d8027d2e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f72906c76b3bfb0040720598bf7fd310b08f058c301fd64f9d3a0d87753759f
MD5 28bd704e04b0ba142e9c8466a8245ae2
BLAKE2b-256 a3cf9aa545773ff63c92aac0b40ee628363c039b28b37472ac72948151791156

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a6bbd730fd10a6c1a0cb9b4c11f23639ef2e568cc8e542ea185b4f462c307df
MD5 ab444557a2d6bc346e125a11938ac794
BLAKE2b-256 c33eb04368f231d454fa6ef6700352f821a9d1965ccc1ba04bfcf5702b013d92

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 772d24dcaf85bd6a7d0c002cdf1cb3ed57c9e32dcaca859d5f91ba62c7b620a9
MD5 ea256df0ab958c633e563ca0b9156753
BLAKE2b-256 f65969dbb6487c3f1b611ab37a6f6670f8094874b7a00614386184366211086c

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f29735739849dbe65841fcc5469e854c5de588e252bfae6228fd5101f87121e0
MD5 b4618bb97cac3df72fdb7373db26cd6e
BLAKE2b-256 8c9be23db16e5ec4488e93b2f622100626d3df405f5be7733cc4a41c44289270

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01f7237313fd28d1d567bcdd6cdc8440042247049a2ae7f5fea790452a81b174
MD5 04c7409337c75c3890dbe11e6f04663c
BLAKE2b-256 f42828471befcbec6b8003ddf2d1e7047cd4583970f38f34254df50be2edad84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25bf189292a963afe33940dfe093cc7d4da48c98356c2e0d9375a72c24b70d40
MD5 293820a9d316c56611d38f9fe958b8e8
BLAKE2b-256 a0959ba0aed6bc86e23eaa8997aac5e7d4e1b7437a7a9ca39a3ba93232885a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e4f5a9057a47f1b79206d6defb0721b862186c8c03ab8e6eaf086a5cd629582
MD5 598bb2ef888c3eab346295547dae62a1
BLAKE2b-256 3fc686b50eee1e7542df69b2c6351b38c1940debc4f4ff26bb67560de3c546e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 261a66a5763049f9d5a50edd6676c308911939b4bca7110f9ec1b9633a62a852
MD5 c853e9e2344dfc865e0fdae6dce434f0
BLAKE2b-256 408fec0ccd381fba3f22af6a39c590aeeb0fd4ec90caf452583b0e5e766d53c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 74a7364516a5334f6493833074d726549d0536c64db838df9cb830702684827a
MD5 f7e51fb7c77716deae3396fb080e24bd
BLAKE2b-256 f596699b3dbde65126b9a4c0a81001df759e9cd766ca37eda6f80ae162877e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 978acec648f9ed6bea45d572ce610ffa56ea919cd52103b8596f79c4b1715dd7
MD5 b0ad482a790f31b4ceb630a0a9bf7bd3
BLAKE2b-256 660ecdbff724373f3ad282da27d4a1df5a8585011264acb9d9a5faf58a20f7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 991dfa0827e53078ded15778ed6b18c489847ac3ab4eaee7854daab45edf91d8
MD5 4c166cb837577f785b685b3f130c0dbf
BLAKE2b-256 cfa67276ae9e4c9e572931ffbff89895e5fe1e1103997da4dcf3f218394153ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39c8b5fd138aeeb15772eb4b6d91f829d69f13f157439a118e1ba5eaec10e670
MD5 efeed52a5b314c2066b77831ba4395a2
BLAKE2b-256 70493e539d3a2477859986b93787091e546eca2061f35bf12c558a646ebab5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4921a3846e140530b78aefbeeee10330cc8b0fcd121f0d030467a6c13ac2847f
MD5 122d3a32239bde146ec92dfc3c72f8b8
BLAKE2b-256 3cd04190e23bdec5c3286d97aeded04adc339503a33cdc43823794550b340680

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fcd944a74fe70f05ba7c1f8db68c908cd4d30507ec39035c4bcff67b9cc7f31
MD5 bb24a692e1aebbda8da390652bce2368
BLAKE2b-256 bad4c40f6f5042d89142ee5509bd43b8e91d288c3b00687be443a9cd7089f919

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 379246ae2db7b393e9532b32c939fd2aa66eff0feeb9b92267a7d3e37f6681f5
MD5 54892ca234651b09a28568dcc0422d52
BLAKE2b-256 28665329c21bbbc4986b8afb7cc34d174d1f8ca1e9fba1b0b6c3a62564c76784

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d7a0cb6833608abd860fadcc92542c658c0a5419df6a1476270850186fdf21b
MD5 23b849063261d7e054de61ddb82ea965
BLAKE2b-256 503e365d1468cf1230aaae7cca2086fd805d680ff5d89d3e21d261c9a9c7f6cc

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b97bfef9aa660c8a21782d8caf963572e8c93c69a6b1a30d817468226d83fb1
MD5 430d77a95b33e02ecad429dc73f845e3
BLAKE2b-256 8e7205a28ead2afeed9b4ab61e5f513e0202cb57258a03d4fb334f3fef96cee0

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 640c175d3cd0db8009f67c0f7eebb737f76499063459ca6a11f6c95ad1178585
MD5 17d34be0208f655e2ce4728c936f75ed
BLAKE2b-256 35996b75eb09d8532016cc93d6bcbc451c0b7504d4a3a2bbd993d8d55b3a76bf

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ba262238bd516a34e39e9033c67473d62a56cc3b3b203f10d5e443d061e5385
MD5 84346265e33add477fa92d6bdb08032d
BLAKE2b-256 a9d65a261c9e1037ca08e8031f32344aad855980cbf7997d9c52187539dbc7a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32a971d705e9a9a9dc42fc65092e84abf6043868579a1331349db71710a14293
MD5 de4137e03f063d50e02027e9c40122d0
BLAKE2b-256 fcedebb1499c9dc8722d82878050d26fb493f20186f2347fc396792c5e514717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d11c19cb0845463ca8791bf6ec32f137b59c518303a94205fba3bb5376d848a8
MD5 4b35a749c4a835aa5ac6a23955469d2f
BLAKE2b-256 d87019886476363d9221b56c542279f6d41aaec300b9db0d50bb0ec9549659c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d893a70995c47f674f267ccd5d1933640452c9a18dd410e4fb7a0a76f72f9aa
MD5 fa20dfcd2d520acf61987f9c61999eca
BLAKE2b-256 92a7c55d4b3e6aebab5240915dbcf59397d133de6ddef7ae56deac8f01363956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b82490fa7750f4bdfb9a8dedb8bd35338ff79bab7fcbe093d482f5cd355d8ee6
MD5 f5561adceee2b48e7005a22f8f8eb989
BLAKE2b-256 af36494430b711709662c4cd1712553820fa4cd173c041676dbde092c6e5aaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3d878c52dbc62f7157fd13c30f0ec9db311236a518236b2fdac98a85d00b64b
MD5 1924a86f95ca2086af7d8b6f3729e82b
BLAKE2b-256 414bdcf10319aaa117478bc80be75f82ecf5c01509ceebdd3411f732797542e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b739922e4f67c855a4d270b14506352fdaff5c78f01536f4155ff4b1602cd9e7
MD5 880d17872f262fea85e44e65efb2831d
BLAKE2b-256 30317947bf2994cf23bc96d6d78cb321111d0ee429ce7ff845b606db1a2d82d5

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa742cfa9c65328224cf188fa13aa5c7dcedb2198beb77c735995eb21dfc374
MD5 0e9466fcd4ea147334076eebb2af38a2
BLAKE2b-256 1ebc03fc2b45f79f5160484ccf4ffec63c8e7cd01856414684670b5082df7332

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d48d24aea991ee24d8fc25f74da469b26fe1a48cdc3bd8824033608e3f77ddbe
MD5 aaf4f79c15f0a2ca54a440bdfff9e1c2
BLAKE2b-256 ff515e5e732e52611dce01f76c0e2c4be2a0b2f5dbff1a66903d0aab9e440a77

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d55489aa710917dc2904733e672983dd55f040967b9887f886bcc4602117014a
MD5 4c02ed64d16ea53831b75b3e16b86079
BLAKE2b-256 0771b9e4f304d7a6ef8e23f58e48ee0c5083bd807d1f6ac8fa86478b136eac01

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1aefd919d15cbb4985d7b57835160f5d09f874116f672b1d1eb9ba3ea47ab63
MD5 a175e792d62982a07c32be025c957d22
BLAKE2b-256 9fa1c52eef0b8dc3da538cb3c09770493c949589bfb32bea4c8cbe437c83c2b8

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85181cc63749ef5028d1e052d4be5b7895c301395eeee51a3e7b8a70e7bd3c1e
MD5 0da1595b4aadc02ff41dda2d19260156
BLAKE2b-256 bb33c142eea2321be76f6612999237e3118c152d0109d7f44e1682609566311e

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72d41f2d151604aa19598ba06cebbb5b5dd07a60a8bed71558d5445627268ee4
MD5 64a2dd41bbef12555955df31c6514dd4
BLAKE2b-256 a26f0ea35513bb8208c07a0c43f43f7be82d6aae1c6eb94649ff123b344e85b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c3bb5ea2ea19e7dcb1ccd0fc298f59f7e2a5e492368f603268e5109f0fc8283f
MD5 e15dda3fc29c90876b99709d455cfe99
BLAKE2b-256 4a156fc0a227ac0415016a224710aa4ca7839bda870c6eadc30368b33cc37b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dc19cb4f3b1fc040c513ad92bb9d98577c8556b330ba8e6b41b8d54c991f69a0
MD5 d2ad9144816c7ec24f5e5077d51a5fbb
BLAKE2b-256 fa3df58eb60e919525173d5b912ccdf7a8fff825b73d29ecc789264579759214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04607f0d040c0aa8ab793a9bfd09dbfe93868b21d8b5d01e0f935401d09cf115
MD5 8017a3ad55771862244ce6044e066542
BLAKE2b-256 15193170d763bb8bee6afc36f83214ba08718e1e8e9eaca111fda5312730f9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c246dc2ae7eded6d78aacc1e97a671e04037fe28bada2e11187f3cda851340bb
MD5 bf37d43b37b4724cd53e8b7b36f17713
BLAKE2b-256 7adb2e93874e7bab7cad24f64aa564e231d0722162e8e36c85c73a601af57f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 931cbbd3268f8e13510942478fee2f2712e16f09d258fc2a912d91746f7e9931
MD5 30f7f40470973f7e09bf17543b5fcd67
BLAKE2b-256 7e7729257f078330deadde6c89c7a73f0cb8c2b2063f5b33c40fd2d3493785b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c20fc3b1d9b0dbb675675a9c27864c7f272520f6b22692723a7a687830366d57
MD5 8974449650ed61e3dd10870753fcda34
BLAKE2b-256 676514eba0ea2fa989850160ef2adc1660bacdfcd7bdf0e13bbc6b90e11c504b

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d4900c0ce1ddbb9340d94816c9ec22639ac2651ea4d97408b6431c02357fc08
MD5 3d65c885de9f2e8ea6be9d48a3c9bef8
BLAKE2b-256 0b860c34f8d19ff57b330127d8b8e477ca0e6b74e5a79c9096e02819a16c92cc

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7462f6fd924bc1d9984be174d64c1dfbdc3bb64ceff3d28f28d8927e6be13fae
MD5 509c4f614bf475373ed7a48c039a3f4f
BLAKE2b-256 fd35cd94f9a20c9e82b1d9da5c824ca4e0c755b33793317a99248292e8b92d4b

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a9f06f07c081b0ebf929df7002e01d182a2409377894d2568ad531ba716b2b6
MD5 a3bd699b724ff7f619169f9d3e5106b4
BLAKE2b-256 228ad58864a1f52d8ac06769923c248a8d76d18b9d27b24dc97100b5434b0e6f

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4571f325fa9aa2bb41fd0eda12a14c2f478b3f8043f1da73345fb7875dc3f613
MD5 31e31f4b47c103ef9f179089c9839e1d
BLAKE2b-256 11891ab67e87ccf03dfb2a158eaa53de2885a067771675e0b52dc964ad03f4d9

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b4a577a58b915a14edfe3be7c1f8b33a389b2cdc5f4555424a9282b9c382b4
MD5 6241e78955bff1d33e78539560f6a462
BLAKE2b-256 042dcb33130af38dafe6323e74fd046a14a6cb5013fe8594bae95618dfef8480

See more details on using hashes here.

File details

Details for the file pyarrow_message-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyarrow_message-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f0c57aa2403e1a38fb4c3664fa63dec46f04b608e2e555e111a1bd6e5f6550d
MD5 8567c036cc088dd4a455359567cd05d6
BLAKE2b-256 8d1ba86cbcdc87de43799ae459ec5bb94e069b3d2ebcf29621515753d8720bc0

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