Skip to main content

nanoarrow for Python

The nanoarrow Python package provides bindings to the nanoarrow C library. Like the nanoarrow C library, it provides tools to facilitate the use of the Arrow C Data and Arrow C Stream interfaces.

Installation

The nanoarrow Python bindings are available from PyPI and conda-forge:

pip install nanoarrow
conda install nanoarrow -c conda-forge

Development versions (based on the main branch) are also available:

pip install --extra-index-url https://pypi.fury.io/arrow-nightlies/ \
    --prefer-binary --pre nanoarrow

If you can import the namespace, you're good to go!

import nanoarrow as na

Data types, arrays, and array streams

The Arrow C Data and Arrow C Stream interfaces are comprised of three structures: the ArrowSchema which represents a data type of an array, the ArrowArray which represents the values of an array, and an ArrowArrayStream, which represents zero or more ArrowArrays with a common ArrowSchema. These concepts map to the nanoarrow.Schema, nanoarrow.Array, and nanoarrow.ArrayStream in the Python package.

na.int32()
<Schema> int32
na.Array([1, 2, 3], na.int32())
nanoarrow.Array<int32>[3]
1
2
3

The nanoarrow.Array can accommodate arrays with any number of chunks, reflecting the reality that many array containers (e.g., pyarrow.ChunkedArray, polars.Series) support this.

chunked = na.Array.from_chunks([[1, 2, 3], [4, 5, 6]], na.int32())
chunked
nanoarrow.Array<int32>[6]
1
2
3
4
5
6

Whereas chunks of an Array are always fully materialized when the object is constructed, the chunks of an ArrayStream have not necessarily been resolved yet.

stream = na.ArrayStream(chunked)
stream
nanoarrow.ArrayStream<int32>
with stream:
    for chunk in stream:
        print(chunk)
nanoarrow.Array<int32>[3]
1
2
3
nanoarrow.Array<int32>[3]
4
5
6

The nanoarrow.ArrayStream also provides an interface to nanoarrow's Arrow IPC reader:

url = "https://github.com/apache/arrow-experiments/raw/main/data/arrow-commits/arrow-commits.arrows"
na.ArrayStream.from_url(url)
nanoarrow.ArrayStream<non-nullable struct<commit: string, time: timestamp('us', 'UTC'), files: int3...>

These objects implement the Arrow PyCapsule interface for both producing and consuming and are interchangeable with pyarrow objects in many cases:

import pyarrow as pa

pa.field(na.int32())
pyarrow.Field<: int32>
pa.chunked_array(chunked)
<pyarrow.lib.ChunkedArray object at 0x12a49a250>
[
  [
    1,
    2,
    3
  ],
  [
    4,
    5,
    6
  ]
]
pa.array(chunked.chunk(1))
<pyarrow.lib.Int32Array object at 0x11b552500>
[
  4,
  5,
  6
]
na.Array(pa.array([10, 11, 12]))
nanoarrow.Array<int64>[3]
10
11
12
na.Schema(pa.string())
<Schema> string

Low-level C library bindings

The nanoarrow Python package also provides lower level wrappers around Arrow C interface structures. You can create these using nanoarrow.c_schema(), nanoarrow.c_array(), and nanoarrow.c_array_stream().

Schemas

Use nanoarrow.c_schema() to convert an object to an ArrowSchema and wrap it as a Python object. This works for any object implementing the Arrow PyCapsule Interface (e.g., pyarrow.Schema, pyarrow.DataType, and pyarrow.Field).

na.c_schema(pa.decimal128(10, 3))
<nanoarrow.c_schema.CSchema decimal128(10, 3)>
- format: 'd:10,3'
- name: ''
- flags: 2
- metadata: NULL
- dictionary: NULL
- children[0]:

Using c_schema() is a good fit for testing and for ephemeral schema objects that are being passed from one library to another. To extract the fields of a schema in a more convenient form, use Schema():

schema = na.Schema(pa.decimal128(10, 3))
schema.precision, schema.scale
(10, 3)

The CSchema object cleans up after itself: when the object is deleted, the underlying ArrowSchema is released.

Arrays

You can use nanoarrow.c_array() to convert an array-like object to an ArrowArray, wrap it as a Python object, and attach a schema that can be used to interpret its contents. This works for any object implementing the Arrow PyCapsule Interface (e.g., pyarrow.Array, pyarrow.RecordBatch).

na.c_array(["one", "two", "three", None], na.string())
<nanoarrow.c_array.CArray string>
- length: 4
- offset: 0
- null_count: 1
- buffers: (4754305168, 4754307808, 4754310464)
- dictionary: NULL
- children[0]:

Using c_array() is a good fit for testing and for ephemeral array objects that are being passed from one library to another. For a higher level interface, use Array():

array = na.Array(["one", "two", "three", None], na.string())
array.to_pylist()
['one', 'two', 'three', None]
array.buffers
(nanoarrow.c_lib.CBufferView(bool[1 b] 11100000),
 nanoarrow.c_lib.CBufferView(int32[20 b] 0 3 6 11 11),
 nanoarrow.c_lib.CBufferView(string[11 b] b'onetwothree'))

Advanced users can create arrays directly from buffers using c_array_from_buffers():

na.c_array_from_buffers(
    na.string(),
    2,
    [None, na.c_buffer([0, 3, 6], na.int32()), b"abcdef"]
)
<nanoarrow.c_array.CArray string>
- length: 2
- offset: 0
- null_count: 0
- buffers: (0, 5002908320, 4999694624)
- dictionary: NULL
- children[0]:

Array streams

You can use nanoarrow.c_array_stream() to wrap an object representing a sequence of CArrays with a common CSchema to an ArrowArrayStream and wrap it as a Python object. This works for any object implementing the Arrow PyCapsule Interface (e.g., pyarrow.RecordBatchReader, pyarrow.ChunkedArray).

pa_batch = pa.record_batch({"col1": [1, 2, 3]})
reader = pa.RecordBatchReader.from_batches(pa_batch.schema, [pa_batch])
array_stream = na.c_array_stream(reader)
array_stream
<nanoarrow.c_array_stream.CArrayStream>
- get_schema(): struct<col1: int64>

You can pull the next array from the stream using .get_next() or use it like an iterator. The .get_next() method will raise StopIteration when there are no more arrays in the stream.

for array in array_stream:
    print(array)
<nanoarrow.c_array.CArray struct<col1: int64>>
- length: 3
- offset: 0
- null_count: 0
- buffers: (0,)
- dictionary: NULL
- children[1]:
  'col1': <nanoarrow.c_array.CArray int64>
    - length: 3
    - offset: 0
    - null_count: 0
    - buffers: (0, 2642948588352)
    - dictionary: NULL
    - children[0]:

Use ArrayStream() for a higher level interface:

reader = pa.RecordBatchReader.from_batches(pa_batch.schema, [pa_batch])
na.ArrayStream(reader).read_all()
nanoarrow.Array<non-nullable struct<col1: int64>>[3]
{'col1': 1}
{'col1': 2}
{'col1': 3}

Development

Python bindings for nanoarrow are managed with setuptools. This means you can build the project using:

git clone https://github.com/apache/arrow-nanoarrow.git
cd arrow-nanoarrow/python
# Build dependencies:
# pip install meson meson-python cython
pip install -e . --no-build-isolation

Tests use pytest:

# Install dependencies
pip install -e ".[test]"

# Run tests
pytest -vvx

CMake is currently required to ensure that the vendored copy of nanoarrow in the Python package stays in sync with the nanoarrow sources in the working tree.

Download files

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

Source Distribution

nanoarrow-0.9.0.tar.gz (3.9 MB view details)

Uploaded Source

Built Distributions

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

nanoarrow-0.9.0-cp314-cp314t-win_amd64.whl (716.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

nanoarrow-0.9.0-cp314-cp314t-win32.whl (630.6 kB view details)

Uploaded CPython 3.14tWindows x86

nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nanoarrow-0.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl (908.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nanoarrow-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

nanoarrow-0.9.0-cp314-cp314-win_amd64.whl (675.7 kB view details)

Uploaded CPython 3.14Windows x86-64

nanoarrow-0.9.0-cp314-cp314-win32.whl (596.3 kB view details)

Uploaded CPython 3.14Windows x86

nanoarrow-0.9.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (626.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nanoarrow-0.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (859.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nanoarrow-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl (980.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

nanoarrow-0.9.0-cp313-cp313-win_amd64.whl (657.4 kB view details)

Uploaded CPython 3.13Windows x86-64

nanoarrow-0.9.0-cp313-cp313-win32.whl (580.1 kB view details)

Uploaded CPython 3.13Windows x86

nanoarrow-0.9.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (625.3 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

nanoarrow-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (856.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nanoarrow-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl (977.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

nanoarrow-0.9.0-cp312-cp312-win_amd64.whl (659.5 kB view details)

Uploaded CPython 3.12Windows x86-64

nanoarrow-0.9.0-cp312-cp312-win32.whl (581.7 kB view details)

Uploaded CPython 3.12Windows x86

nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

nanoarrow-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (859.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nanoarrow-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl (979.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

nanoarrow-0.9.0-cp311-cp311-win_amd64.whl (657.4 kB view details)

Uploaded CPython 3.11Windows x86-64

nanoarrow-0.9.0-cp311-cp311-win32.whl (577.8 kB view details)

Uploaded CPython 3.11Windows x86

nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

nanoarrow-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (866.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nanoarrow-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl (971.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

nanoarrow-0.9.0-cp310-cp310-win_amd64.whl (656.6 kB view details)

Uploaded CPython 3.10Windows x86-64

nanoarrow-0.9.0-cp310-cp310-win32.whl (579.3 kB view details)

Uploaded CPython 3.10Windows x86

nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

nanoarrow-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (867.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nanoarrow-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl (973.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

nanoarrow-0.9.0-cp39-cp39-win_amd64.whl (659.0 kB view details)

Uploaded CPython 3.9Windows x86-64

nanoarrow-0.9.0-cp39-cp39-win32.whl (581.4 kB view details)

Uploaded CPython 3.9Windows x86

nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

nanoarrow-0.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

nanoarrow-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

nanoarrow-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (871.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nanoarrow-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl (976.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file nanoarrow-0.9.0.tar.gz.

File metadata

  • Download URL: nanoarrow-0.9.0.tar.gz
  • Upload date:
  • Size: 3.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0.tar.gz
Algorithm Hash digest
SHA256 1ce15bbed8532839347faa78824c5dbd3769bff60661003e34c6fba5dd881bd3
MD5 017d3c5220d2958f7fb8b95cd550a8d1
BLAKE2b-256 bcb28fedfa966cc25126e1c9090e6d9fed75dab4e1d2716e3ca2d18ea2d6f438

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 716.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5bc2e10653b7c91e2f970b46761105f6510db37f1bc71e3ee81c09d518e89b86
MD5 a2b45dc4acfe958c7937d2da2e52bcf9
BLAKE2b-256 ee5af08e0f130074b7e3985d2bc2394b3aa0d6322bd2dd9376051f3c6ac4b0d8

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 630.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0cb4966eb64bcce19fef0c8fcfa044eba762b0cf3d004ab1b2b8438b3f21697e
MD5 ba3c43a18c046f4ae721fec1ee7c2b94
BLAKE2b-256 f56963467cd5fe5e8a0cd76651a0341fa60a849aa2f304b675ef2a45c10f215c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11d046f68b2e1583e5bf9effe9cbb8a2c917bed3a1c52ced956145fe935f47d7
MD5 1fb9c38ac6afb89aa72ffce568d88812
BLAKE2b-256 cb23a7265405de8dd5e877bb639f2810ffe9c7c4d00597f1aa16424149d729f8

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 642a0c7ddb4344b1faf845205a30886004042f5dd741e12e3d45acecccc1bf1b
MD5 634808144c0c3b55ccac93385c599ab6
BLAKE2b-256 e858c9dbbe81cd584f0d138ae21bb591d96f56e640a7b86f9fb966b4f01768a9

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 058c472db35a46ed4fbe44cb761553028fc14ff68a8c46fa4632398c37208803
MD5 8405a8f33a0ca513e1f33c35b2040816
BLAKE2b-256 a13bebf8fd738bd335d1098dc09ed43f0837849466bbf908b47f0ff2d428df3c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d836769c0c09c9f30d4df70e866e9b11defa38ef5a863a88f35146ecb8a7d0d
MD5 8fe16363ef04dc90c0b39ab176c89912
BLAKE2b-256 db9cd37ecc4c60def9a7905fd804b894f4b8ffda0ec19f3f3febaa8a4b64f800

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8935cae61953bf1a86ca623ad15bcf4b9d3233b451e64c044df0bf81a469a591
MD5 92beba718306ecdfb98a7ab58ae296e2
BLAKE2b-256 ed67d64be170e2c73121e5afb22d1def77d408f7b730bd597a4fb78e94132b4b

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d58196c193e244064b8411ebb0c8ff653805d537d4ca5392b57e3a70af37439
MD5 5e78a9f1e6482034dfe3c3b428fc2363
BLAKE2b-256 fcc472c6cdd78183ccfe6c0f3a5786832d66a0d0cf5f8d1e7bf526be22eca961

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 675.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 917cb0f692c6efefee50932da3e781f6da90cf9d398d2659cf6244190566c0b6
MD5 1018a738620a0c1046f7a8f5bcdf69f2
BLAKE2b-256 8f42e2c719c83e6933d09f5207bbd40261a88cfd28f3595c7b6656eb4f1285d7

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 596.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5f466ff39d74a5e9f08bc8f8cac252f3a2380b9c10b71e092a365af6e758a89a
MD5 f098caf074daee04ebd0b0d166b5015d
BLAKE2b-256 f952bdb18fa566d0084e41ac3c6e9a56e17ba68feeb9554b2d7595a54d9813b1

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 56078876f9ec3594c95d9f75f07ef025fe84a63331fcd1f5f8b36b8a1ce3a210
MD5 51769a3b63577381a9a7d574aa6aa02b
BLAKE2b-256 5680ac94fe89949487ec18b86b17713b4c915a9fd7c8a4c68453d1b022e51804

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6c3949a9ee7b5e995ea52feb526d84a395b9dfa8eb611fd18d479ec687d6693
MD5 1acd2a4001e77f68c829c38ffaa4f4a8
BLAKE2b-256 cb02367fe9d35c512d2cdf72ff4473f6aa310dc8a2b5eb0ccd7edccbceb6e461

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eff07a0be9572a29f5ca624b51759dac2399f819f440fac94c7557eac07d18c
MD5 797aa9ed84a09bce9e3203ec7b62e712
BLAKE2b-256 95f84aacb1ad0a9b61c1fc134e2e53a69f878270ad55080302cbd0015cd55a1c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6337ab980800f06abe8356f1d774458046d654cf646019618388160de84e234
MD5 7cba960bb180ab324617742747d602c9
BLAKE2b-256 26f50ae8362c503a257393a30760e7ea17dcc3a5625859716d329f852f45c52b

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d661becacd37a1745e97596fe59a7723a9e330383fd80180f9f7fce31ba609c6
MD5 7b83cb79d41fcbd4c8185ff06419756d
BLAKE2b-256 63a08aae6d5dd6291b7d93962c44d85d56294209152a6de3bf69ac43785d605e

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03af782b942883b64205ea0ce61a74559dfe4980c24df7c9dfdcef8234550a74
MD5 a672a86ddc57dead69db1df9f480c87b
BLAKE2b-256 f8d4d95f6f3d8a7cffe6c4505adec89b41a3ff0ebb3b8cd9182c25677872de87

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe171ae767a21043972670439f1dadc82cc1d8a7294e0692446421751626fcc8
MD5 6256920979ba5b9a4f850e0f51cc4689
BLAKE2b-256 bb9a5b0ef86b7874e6395bf34a878b42d3c8085ce6b9b224f6e5c42bba10eb0c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 657.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f1d484cdd88cfe908cb00c1d8b61420d1188a65a07c0272eba9bd7451a9fd1b
MD5 6e123ea769aba104b99200c42816c675
BLAKE2b-256 840e36128553bda9120457ac35182bc2cf692e3fe0de0c13d17d63333835be33

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 580.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 94af9f150fbb4f657b35d8333bc68bcc7127b3f26cd4195d2ffbea92ecef83f0
MD5 fff4e0c4ec680440f7739c36b0d4b4fe
BLAKE2b-256 9a30ee0355979c07b60457dba2ee0883c5d0b96f1db83a22b6c0e9d563a7fbd2

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 deaf08f372f145282e432639cb0507f05ce67bc56cb7208211ff1a2502432249
MD5 6f7b3362245b915cd25aaf941f900a83
BLAKE2b-256 ef489cc42d75b96a127f8bdf9710f1445bf593d889ec33f44fd09e3edc1bebe8

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 450d22d9c6f909627c0b2bcc6a50bc8aeddda2eb0e780427185cfdd8b6c887d8
MD5 9db08110258eda2b899acbacc4a25b91
BLAKE2b-256 4b11f54b96774c852e2ea0584b5db8d7562af9ecf1c35f50f7eb0bf7cbc98d74

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 374eb1e3c600252049c5294c82530b237bbb9c6e28e67e5bfa213d03595e152c
MD5 95d7e8760a30a85296779a69897d429f
BLAKE2b-256 76d16dd67a5589dda71e673b0ad4afb2133fed23e204c88359ce0231a604c678

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81f3e7d11d3da2b3ee18ba095d85af4b5d5db8984474ef78b6989f8bc192e036
MD5 1a1eb05b9f2240617572ebb210104385
BLAKE2b-256 f755e7ac81be0aad41f643a1b59f6a1224b014269281caa468e73d8ed65d346f

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eac37cb506193e728b93f6563e344213e840ff388b29384b8ba46eb30ab7f9d3
MD5 d311816e3457f254b24a7358fbf8ccfa
BLAKE2b-256 d3fe832e16bafc29d357e4235cc6308d9864d37424c3c7675ac13214e0ef738b

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc0a4b6e1138d7ab83b08ec7b238f54e5a900649ef8e880dd9530dc7435777ba
MD5 5dd3ce92b70acba15649d4a12c4a2a81
BLAKE2b-256 fe49219c37e918d46e0ef011365d290499f6acecd56102b503ff2bc7714d0c3b

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68dbc4e6352b2da9db161292121b7622285d0fe07ec5d7b69eb09ad2dc0b04ab
MD5 332139be82fc457a55e94882ec02f222
BLAKE2b-256 ace48a4db49b233bcc7c150d003d6a5541e8d6c6f2c54102f8392b10304d388c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 659.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f8a6e4b45b7453c1729816d75df02188f88dff9f0957ea6ed771affa35c0349d
MD5 4a1ad18b845d44bcd5fd71dd21d43396
BLAKE2b-256 4526a9fda752056ec5b96753a56cd13c45e5cb438e78740bf5a69661e9548530

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 581.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 926ff5bd72cc8c3b478e462c2fdd7b9797f2067be25c9fd5cf655ed152a06409
MD5 fc44d06ae0e4a4767e769ed15b936d8d
BLAKE2b-256 974154ce0bf22bea0b6e24b8bb36b426475e45ca18f6e2dd57b56ae738f01936

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9968abd0e68fc12381abbd01d9181562e0acc22bc231401ed9b85498cb34caf9
MD5 d248cce5639f3b9b8ddd3a63e1a2e0ed
BLAKE2b-256 9380b63b2482d1410ce2ac75b4dff4a661c80aa969a19163482c8c773bf37d4a

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc55d746719380048cfc56740e69d7442cfba83a0b46bebf4218e896ebb97d0e
MD5 2913137ef79bdd178211b28adf057ea4
BLAKE2b-256 8e74d392aba2402e72549e7439e7ee9fbccd65c17b67b479a21ef3aca7dd87ea

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ead66ba6db6def8bb9802aeb4599692cd668c809fc181d1438ea3af1c398960e
MD5 a0356ea377dda5239a1cd62aa6b48cda
BLAKE2b-256 55f86a4d3e5cf0654f2d7bdb0545f0420fed1d2a85f1d542bc7939ad092815c3

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1b3401f95756970548ce95a7c52ca8fd76c1aabd73252a34ce0a148ff63442c
MD5 2f0ed55504c1392855aa73d63617a4d4
BLAKE2b-256 8baaa0755331964003ed052e3013d5f7f4597b3c7b6596984d300f70f40b0dd1

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ee03c1ea32282e5a2f29fce40ea88348e29fb1243f6b84841d3ed0a9d2ba9d6
MD5 9193c162478039f358c70c9ad6d59b3c
BLAKE2b-256 d6dc508bee93f09b79cb91b541a09e927a786383d7c01982cdda91d8767cdb98

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b2efdc2307bee36783290af327a53a5130ea134a90cd7deab9caa010b3ffefc
MD5 d56718b012c0b1792886108290f14b80
BLAKE2b-256 affd4b61669667aeac7e4551250ae83976a0764fdfa850ded7aa3da32f765c7c

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 657.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ccbe5b384a78463d9650ee0d6569c8a053d068dd1d628e27f99ad7d532829ab
MD5 60815c7c80cc8848e2e89da89a9a0efb
BLAKE2b-256 ade4d341323ac0272e0cca3da3fffe77b945ad17ea9253be99fa54fdb19959bd

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 577.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf372726cf73ab9dab907148397a0bbf74f8ca4b275f7ff4d4a29d8fdd66e4a9
MD5 5b329b063115e5334c3dc9d75dac549f
BLAKE2b-256 50faaf8ddbc4b0e1c544a2e445206403033a74fd112d9df010a683a3dc341d4b

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 920e0e1000155b1d9dc2adf6923a59b4ea26040306e169ad1ebc491028c44c46
MD5 f3ac0c42f7f2216baa1f6330abaac1c4
BLAKE2b-256 60cc504c54e57e351177cc5e018e75eaacdadb5ae3b7063d69687095963a0d9d

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a084c69183d297fd047f295c5943454df02d422c80aec429545c62a7e6abd18d
MD5 9266ce1e8fc8b24dd37fd94c6ed7a127
BLAKE2b-256 0fce2088c41623732e0f9f9ffe96d4c70bdf644b80390bd01b90c4d5b05bb5a8

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30adff8adb9649e609c51280c342f5785d35ff137070900d5a5ead19e5011956
MD5 f21b5a8898ad10e920c82dbff770f6d5
BLAKE2b-256 ac96d4aeecb176b3a68cfd30aa13340678a4b91eaea4cc536f5a5eb964ae689a

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b24445926060278b586f52cfd39d5ed9f5c4bb5d0a7ae8bbc356837d5a9963cc
MD5 0026077f9769eb27a043a7a332aa958d
BLAKE2b-256 de308c284ebebe6fb5ae3eabe0643d75046a1bd0b3d8bfdb41d1735982a4c332

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b3a0cbaa440b30a4f7e6000af5ac4031140fbd8164377486f53b569041e4e79
MD5 5638ebcc14a810096edf6fb4f08b6178
BLAKE2b-256 b0966be473f71e67bb5d9574937b664a52d6fde3bd579fed1b92181feac5bbc7

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a504caf61a71c4d34c18fe4a8e9d89f0c23b0b63932b4e813bc454dcfb9f9442
MD5 4bcd7543d12ef6340fac64cfb785e605
BLAKE2b-256 4447e53b04536ab1d3927d351ee8e5263bcde5ac193026c78a8a9ad5227416b2

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 656.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92b90ceee501079b6a2baeb49eaddd5056308ac819caa57b0b2a2bbf1d177967
MD5 b951a86adb8e91815e5e91e7118036a0
BLAKE2b-256 7fdec766ea130e437553d6166d691aebd8145d13107544291d21cedb6fbb50be

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 579.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af09c9f3a0ea36348617b4f5c37173898788fc3fc94c1633c5b38e0c62df19e2
MD5 7ca8818967079adbb0af008f606f14f0
BLAKE2b-256 95d73ce440be8608eb340aa91cc710e518818df39cd6de0f0dfab98b13b991d8

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ffe5ba9100ae420d01c14030e3cfc4aca0c7b18818cb6471d13b0d564bf609f
MD5 896c44fdf56298d9c6095855e8b0153c
BLAKE2b-256 3c1cc0f944be39b1df667c37fed95d9fd609b840d6177d3c552089fe3ba6271d

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bad6d8bceb46f4e668735bc0e5ce74bb3f30bec627b35a528c1b5ea0bd30bee9
MD5 a9e6ff8612d0fd0d346e09bb7f0602d3
BLAKE2b-256 58cc01e0584299eace041683bcc9c9bfaf8a654bc5f31a033ca397e7d9871a98

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcb1ebfbfa7100c0378a86c034ebf942517449fda65e370edb18e780063323f4
MD5 5eefa0af80ea61a64cb3f35f364a10c3
BLAKE2b-256 3a799819967510544b0c966cc3d6764e1d854a73dec1df26d77616e7c2fe66d2

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ae573653fff14f17d8e294d86c3edc78da7d8a66e68f41d8ba7c49702fea4e2
MD5 0c053948947e5619f460c5fd7acd8f5d
BLAKE2b-256 7b167b9c29b58b5947c3c7de2af0670864152008e1c5cf82c8e0d5881741b6d2

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d6fbe6d42f160383c83cbeb68986514d6f2af275f174e1d52eb8bd54e805da
MD5 28b73225a7eef5cadae8b024dc99881c
BLAKE2b-256 c6785a7b9f252c0604f617dc1bc357492aef1f96fbc991978036d88962819eb5

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4f2fbcb1754ffd64db6c664ccf24a7b3bc22ecb3cad928dc79feb9915fb06d3
MD5 642559b3b2c99ea43621fa691c20edaa
BLAKE2b-256 3a7ef8b09d7191957df44b49f1286ef6c4a411d53df2a686f21e0993de823dd6

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 659.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b646e3dcae261b2a88b8fef30fe462bb00c35ce1ba071da361a04ac80176d92
MD5 66d142449303fe98c94f2f8ecfbc2ccd
BLAKE2b-256 39cec63f92dfe12f5faa827c6a85ed2375c6ef0d10e2916402b23260bef945f1

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: nanoarrow-0.9.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 581.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de7630b2f502d70d6e3a57d9f6736d6d0af05632dd8332151489ba7ae35eaa4a
MD5 35ed9c159aeb6c1c1046d058fa4fe55d
BLAKE2b-256 40430410db2e8c81ffbd83eb27befd8e9bbd28390f3379f3629928af7fe3396d

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96f64241d1af4748edc9b001d7b35f607d9efc0b29dee235e089a3e2757b2143
MD5 a5d6bd21f5c88420a819e6fea0556e0c
BLAKE2b-256 09375e73bbd6da54bdca767ba5610c58c2bb67bb78e4275f5c2672560ea7f0fc

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51ab7ce6d4b164de3766a0eeb326df632ab408c4c36ee2fefca65e18a7b311cf
MD5 114d8004230b56c44d2a3a68afa90f50
BLAKE2b-256 6de13d620b48bb9cbba11ed8bb36808501fbcf77444b5e11b359922c5baf7bc0

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adf10267ad8089da9d87475f2ecb240276fe454252fb339373e817119b1a892f
MD5 c5c3e0c61886c2fed5d3d2d05ff10c49
BLAKE2b-256 60885cca40767e9f38e3f92f711ce1e6f71062a495619f9d570168a086b14643

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9649ec1c073cada97ce1d37de5c28fe7006917399ebb234ed4729fa3f5e28ff
MD5 a7032179ecc3889c6e04ca5071963c5b
BLAKE2b-256 9a9bd1696ff2854fbf204d4ffcddf1a7181fdaa46572e3f0207a26c33f70e3b7

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cd86af779664ab293a57b88ce1437bf8bc0f0da031fb44559aa3068b3ed54c9
MD5 ee80930b3c2514a9043fb40b948f0455
BLAKE2b-256 cac1208756d16affed493eeca76f40af8acc45f458e966474d84c00e8402dae3

See more details on using hashes here.

File details

Details for the file nanoarrow-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nanoarrow-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e17386ba5056873168405eb8a4f05c25f0db889b1ac2d15fb9ba249e55feb0a9
MD5 9d60fbd15bfa57bc0a658ed48b4e61a9
BLAKE2b-256 9e65dbc7bd8ca5d7357cbf9079127238ab0ca8bb96523ab9522685570bd2f0c6

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.9.0 This release

59 files

0.8.0

79 files

0.7.0

79 files

0.6.0

79 files

0.5.0

66 files

0.4.0

66 files

Supported by

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