Python bindings to the nanoarrow C library
Project description
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.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nanoarrow-0.8.0.tar.gz.
File metadata
- Download URL: nanoarrow-0.8.0.tar.gz
- Upload date:
- Size: 3.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa63e01e799380ec4f8adab88f4faac8d27bfb725fe1009fe73d7ce4efd9f7f6
|
|
| MD5 |
ddba48299d4882c6aab6a2c7dbb036c4
|
|
| BLAKE2b-256 |
70297b1ab53ed83fb70c80571a2487070113881b54067bda72cd87affc360ccc
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 591.9 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c5529abc4e75b7764ffc6d2fbabd0c676f75ca2ece71a8671c4724207cfb697
|
|
| MD5 |
2dbe2e7c38aed8d1129f74892f560391
|
|
| BLAKE2b-256 |
b9e5c740ea047b5ada76175327360d0406ae283159cb1745cbcb51443d90d53b
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 949.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c22b03d1ceca21aace2c8053ed43cac5566e69dd1660708783fe0e84dd35693e
|
|
| MD5 |
da4ae17dd8037dd67c84ed822d49dfaf
|
|
| BLAKE2b-256 |
d53f002a228af17ecba07ca9ff47628e97c73e336a72fd18ad5d78534a6497d8
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 904.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96c7d723b5615e2e9c5f7ba7b5af8d80ba90ecf9871ba005941ac80355ef556a
|
|
| MD5 |
9fa2f0ca7e25f3dd3b3d81d2f4ca94e7
|
|
| BLAKE2b-256 |
5553c058976db13e18106737a1fddf192e45022375628a38c2caaa51a9934ada
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
999f906c297203b5430dc4e79e662301f5ab02a793b6fc67973ee3c0518fb936
|
|
| MD5 |
a2ab3d188be84b482ed4a66f7bc0ef55
|
|
| BLAKE2b-256 |
285e3bad2cfeb03d0682b93f13640ede98eb59cf15b4d868d5c9745118f59eb2
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 692.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2023fa0d5d6992fd8a5a04452c559817c9805aea7391fa46291aaf381a6aa19
|
|
| MD5 |
75dd0f601f88b41d6478cc69437e25a1
|
|
| BLAKE2b-256 |
cdf2daaf03224b88cb66b1a6a19da371386f875e95208a42c73b109f1d273166
|
File details
Details for the file nanoarrow-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 775.3 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a765f955a6bfb989af1d37fa3d0c4f89c242fe12088b5e787748f995a5fa13fc
|
|
| MD5 |
a91d14770192ba993a8e0cc12a467398
|
|
| BLAKE2b-256 |
96976265c84c3c865d2fc1fd56954c60a9386e03ab9c9db11c5f2d57fafa1077
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 591.5 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
827b3e3f8ba81c3b2a9de72dd6cddd74afc7e4cf03aacb0b7f6f2ac06747ae88
|
|
| MD5 |
f5087b1ca4ea95167a0af46c719ff1a7
|
|
| BLAKE2b-256 |
9b13623183d5df76a4e3835af9e42a6d63dcc46d3d3e22d846d48b4458cf5cfb
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 948.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c2b31fdab6b5fb3d3c10f7597e16698c9d3db1bac4c645341e6e36320b78642
|
|
| MD5 |
90972419a4461659a57be612cf2a001a
|
|
| BLAKE2b-256 |
70ce26d6673123afe22ad04b68ca90f800133f75c55792355959037e81ddc8a2
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 903.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c11edd20949a874afb0e50f08402ea3f5c5206d70ec7ed2c27d8064a36222038
|
|
| MD5 |
63d99dbddcf900a11ab3c6e8a137a851
|
|
| BLAKE2b-256 |
27c375ac260a7e5cd00b72c35248897bc6f899d4e65457141160978ce6258601
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df0f118c7ba1036adf032d909674cb925a37ceeed83756c43d27ff9ad225b9e1
|
|
| MD5 |
5c82ec098dc4156456f1ebb1df9ea34e
|
|
| BLAKE2b-256 |
9aadf3b7b205ff1a2e755dcc90e7df4ede0f2a7eb6d217f2ab626ef2b00ee0e3
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 692.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
185726c467211592ba47933949cb62bc6e1797eefdd760a145b241c44377fba9
|
|
| MD5 |
fab3e37b98c4b34e86a9e47695bb9d09
|
|
| BLAKE2b-256 |
3294762f77b6b0fa7a6787316af297a239b59b1f36e37122b0770ff3cfe61e3d
|
File details
Details for the file nanoarrow-0.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 775.4 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51e9609efad27191e6506b9c224c90ae49a0c72f641c8094f168d4694b45a3ff
|
|
| MD5 |
7e76f21ca05361f6896046a5cd15dbd9
|
|
| BLAKE2b-256 |
a46f167cbe632266e8e84d8965262a5e3121e073f593140701bc9be06062f8da
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 591.2 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d1ea6c929141be250df762bdaf7ce96cdd265252d0a5b8cc66069773be62fba
|
|
| MD5 |
ae6b8cb5c5626a744de2cf417d27fed2
|
|
| BLAKE2b-256 |
2312ce2702f7e42b70c56322eaf6fd58a580066529ae751fbf2e98685aa7ccde
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 948.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccc167f74eb15473b0ec73411128fa1bef1ddbb74741721787d7716cc6f1870f
|
|
| MD5 |
48dd5144beee419ec2aaef005e585cb7
|
|
| BLAKE2b-256 |
1fec93dbbb136085f344e510884b4b0bca02587485b4807eb8bf27eec635502f
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 903.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1cce5b6a3fd3179de2f94dcfb9868f1d744ee3299579074551c26708d3ac77f
|
|
| MD5 |
f8c8582a22ebf729d4abe94ea1fc756e
|
|
| BLAKE2b-256 |
7d2bce95ba08ca6f1a9b6d91245d3b96ce99ae93ef8398123d6553a1c0b96211
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfe2a9bb2998c88b23b3778cfd16f9de312fbdfbdc1f2a4939eb5c376cb827c3
|
|
| MD5 |
b134fbf0848418274794985e77fa3e7e
|
|
| BLAKE2b-256 |
bdabcb3ad9efa74738adffc8fc224a06d188711d9f98957134d6bdb63c79caf5
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 691.8 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5359ecd4eb0d3c1ffdac34036859b53acb9ac5915bb50e798411ee9afc81a564
|
|
| MD5 |
f77a5977371712f50f5235a418cc5dc8
|
|
| BLAKE2b-256 |
ea32fe54e2aaeefe75eb3e99072a09390e22f7847b16000278beaad695ab321b
|
File details
Details for the file nanoarrow-0.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 774.1 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7255192cad0e29cca7344318b0dfa46fb2498c09f8ca59874659912f43917a9
|
|
| MD5 |
4264218e320b23ed944e33c5babed23b
|
|
| BLAKE2b-256 |
cdcf58aad1120178ac86192ac1db75412d53e42e24c81bf8a1d738570bdf4e4f
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 712.1 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b73748e0f39cd8dc1ce33eaad3215f2aff6aebb03e659c26d2a8df9277e7e509
|
|
| MD5 |
a2a2c3becb9cda85370e02bc9b5b9e05
|
|
| BLAKE2b-256 |
2ca880c9ed4718e253e7f19320fcd69ca8c7c9ed87d32848d3da97afee3d8b6b
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-win32.whl
- Upload date:
- Size: 624.2 kB
- Tags: CPython 3.13t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fdc0c2508b53a83c9814fdcd2d4bac6d98ea989fb363e0d88d329a8cddd7d50
|
|
| MD5 |
5a4a002b7fb251eeb854c39e930824f6
|
|
| BLAKE2b-256 |
89123a3337b17de7c3c3ff1bfc09a01c75d8f463e40e6850c8f5e42d4240c9a7
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4204e2b5f9cf895bcecfe432b03c346ec2bdadfda0174c8ab195acc6b4794986
|
|
| MD5 |
2cde4773b8e8cec6df664b27d4100765
|
|
| BLAKE2b-256 |
16b375b71c46a3950b06ae3f63cb426ba92a9ebfe2aaa216845c8a4cc56b1bb7
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91466de52617b25dff7349dbf18cc612ce5ec35d09f025b37ea60be819808be8
|
|
| MD5 |
6974d02984aacf7348c9138d150fbe00
|
|
| BLAKE2b-256 |
1862ca4977054d7267ce3756409425b82fe1ea916871555f2512872ec8f7e0d4
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 984.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ee1a27a7210c8eba6ac6e8ab70b598da238348b125b53b16d9e1ae0313addc
|
|
| MD5 |
ddcef8e1fb606b2857c4f99b9aae56d5
|
|
| BLAKE2b-256 |
8e58abd834fc30abcb053642e5935911be9a442c6c5d48c7c6f855c8de2f329d
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e31ee3e3b1e94eccc4cc034f02956ecd15b4ae33ae8a1f999704871ea3b6dec
|
|
| MD5 |
8f0c2d9caf1d3b9896a3a9e3ad7c76d6
|
|
| BLAKE2b-256 |
f7cf4c885fb3a605a17607cfd8cc9f7b23aba19f9826c3bfe4dcf300b0a8e48c
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 967.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3777298c348b268b3490504d9ba099dc6eede702bb9f337360dec6412944a187
|
|
| MD5 |
65e18d704bbdef712739f4958e8a35cd
|
|
| BLAKE2b-256 |
3ea0f8173511a74b48d2c3b88f7a337faaca8c01b3255a53b065db171e63fa85
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bda72e24dd8e2abb3f445f129a422809d788db9cfbbfd247c32f5620e03128c
|
|
| MD5 |
7e20690926c4cb9381fed9e83005eabe
|
|
| BLAKE2b-256 |
4307190f7b4746b0d691dbea0f4c36c34012d916d3579af7ae83254a1d9f6f26
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 779.2 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
714b21daefe495d7cdd6dad34d3409ae42a77f4ef6bf648f4688d0abef8924c1
|
|
| MD5 |
573a4baf795b0c24fdaa9bfada3eedee
|
|
| BLAKE2b-256 |
5e63e45fd81a0a35bc782161801e2bec03794184504eedc7760fa79b33e333ca
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 863.4 kB
- Tags: CPython 3.13t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfa96964d2ccd762a5cb8e28eb0439b6c05b4f5090c4ca2d0207c32d8093cda5
|
|
| MD5 |
bde922ccfb70fe53d141531a8f21ba00
|
|
| BLAKE2b-256 |
877a5e2d1005f98cca18ebb289cffbb55fe0895465349affbe4cfb1321de9ad0
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 644.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1730cb374739459a925c590c32e07e213c9c6ddd2e12f44547e2bd70d29a7a9b
|
|
| MD5 |
eb07c645f7f6f028f1902a53aa4275f0
|
|
| BLAKE2b-256 |
d241b2ad2b541b94422e4091a96192deb5c98d5a6b4c44ade37f5bd6d3efd83f
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-win32.whl
- Upload date:
- Size: 568.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c227e1e68926b0ccde7336211dd7a11f8983098b3698ee548756bdb778b016d
|
|
| MD5 |
063e20719f18f0e3deaa08f535dee63a
|
|
| BLAKE2b-256 |
8e455209dad8a3e4f460ca7d7d314ff34ef6426ced873655df1a469b0f91e01d
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be0899058f66d3b7e4e4b7cfe125e95625e109b4513a81fd9bc098abef55a381
|
|
| MD5 |
e527f1337ffd76109ee77e39cc49e726
|
|
| BLAKE2b-256 |
5aa02792c5e160d56b5abe782228a963ae3d7477727bf950f6b990ebcfed8f49
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4539c5767723cf0c0a21b401acc7d706ca7fd84302b6be514eeb5b8ee230903
|
|
| MD5 |
131385f40bb69f068eca66a609e51d54
|
|
| BLAKE2b-256 |
9fcbbb57665133351b042b4c25d549b21fc9bb9f56a3c5f4e5d561c41f5d705c
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 977.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbca73fcb5c2c753ddac3695774e47cbed3b3bc64dba34866f3056e33a2a0ac2
|
|
| MD5 |
76f08fc8a6f0c082a34bde1636025c00
|
|
| BLAKE2b-256 |
4a79bc49e7518ba9e5b377ca3670ceba5949cb3e20363ba7f091df62d84c4edd
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b4a363e697b3e852fd1f374840df22aaac0323fb8d0ab24a50c3ea1090b4594
|
|
| MD5 |
bf8f9a88174575e6464b9f4235a3f6d5
|
|
| BLAKE2b-256 |
533d1850ef02a632fa5d65319c1155c326982896828ffbfd88c8fc44ee1a23aa
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 951.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1b64aa3739efbe85e775ba5733e37713521386d3014c866f9065815b7387114
|
|
| MD5 |
5bcbb46107be07a8a7bc6929f099ddd5
|
|
| BLAKE2b-256 |
d20464beb88b036a9d20d0f8be0846d9db7912c3332f3969ecd66144a4fd2021
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
381a2a65b0bcfe36b267d506072a3a5c83b8326dfbb50dff2d7f55ac25159f69
|
|
| MD5 |
d43ce0404469f53e0bd80288c7d7d49b
|
|
| BLAKE2b-256 |
944b3c671773e6dcce1784b4e42d0e5f5942fee49f6ddf7ae2567d36b3b4248e
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 730.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64d49118b5477bef8af5fba0b66ad032e1f9861f70d210c262b5393e5b62f47d
|
|
| MD5 |
6093724f64e03d1fcc14cca58f08f473
|
|
| BLAKE2b-256 |
07ec02fd6979c35e347e6d5cf57757616a6d599d4ac6808bf0a37ca334639d07
|
File details
Details for the file nanoarrow-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 838.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
605c7af9130599c40264d14c295dcc2a779402183c13f4189e7475b9dc52613a
|
|
| MD5 |
d1f0ea46118baf9445019a4a95c07fb9
|
|
| BLAKE2b-256 |
8eafb7df299b87348d396d049ef9fab6bef76d29c63288e5b54f752b97f7b3df
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 645.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22c3443ebc0b988dff06cb88d03cf9accbf85fdde905fb7d76b6e001561855a8
|
|
| MD5 |
c3b01d751a5dc3d15757f91c7eb62bed
|
|
| BLAKE2b-256 |
c538589e3c41490a742c639221eea655cf5d0a5972242efab8040a0c904a7dba
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-win32.whl
- Upload date:
- Size: 569.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab8bd2db59388c6bd131c4d9e2649a6626ffe7434084cee6c22fdfbedfeda1b
|
|
| MD5 |
ca1b3d08009730522650c537c62ea90b
|
|
| BLAKE2b-256 |
d7f6fe382bf2770a7e522f132e5310350fb0aecc3023f876d02265a7f40c7c79
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3706258dc89231ef27dee50a26d53ec96dba85dbafa8d6637276bd212be4bc1b
|
|
| MD5 |
9a0d336d5e9b585d79e92ba73777c8a3
|
|
| BLAKE2b-256 |
76453b56702078b7515ff9b74b215ea983358df11140a6c3b7056f55551828da
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20d07a0ac666e9563e132a2097de5e9fa26b4781c0f8edfbdce0da866c22faba
|
|
| MD5 |
57beab8dd4fddf6c11f12b528fa21f88
|
|
| BLAKE2b-256 |
7e34f52319f9304659a5ed5db125b635316ce6d042767cde257fcf9c6a7f80e1
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 979.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29e0783f9ff2b802cd883a41f5cc009f70efea519efcc710db7d143819d1d315
|
|
| MD5 |
31012a45630467ac95628cf37f4e3c1e
|
|
| BLAKE2b-256 |
9fc4d2178bccb12aaeef5843c90e671faf1a6247bdb8b4d64454fc471e97eb71
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ae9d43a358cd6f13e9569c010de36e7e3e98b7da059bdf83438d5e7ce2f77f4
|
|
| MD5 |
60b5c6db4e558c69e82005f5f17eff3f
|
|
| BLAKE2b-256 |
c8129fed89e0d76ad8c376fe74d12b7e1a7cbcb75ff8ebb242264a1d980f5529
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 955.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0548987b4d32536768e092478e3fe8968f35f9624354e30efa622e32c5d87944
|
|
| MD5 |
6ea2fe77bd654ebf35a29f44e9934c04
|
|
| BLAKE2b-256 |
bc9e51a6b437cf173728e03e16e32aee865b36f2043478f4e2688ea2187f63ad
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc83b0b5636a3e558588c0eb6e3c32e295d0296909a08f3b4af17c81a2db8bf6
|
|
| MD5 |
f6a4cdff3f5b89b3ca5139b1b368e241
|
|
| BLAKE2b-256 |
9f1aeb1a7036f2dbb30748eda66d479319cfe165eea6e6748c94488c484be7f4
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 732.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c84efa8efba413a1cecee7d10d9e5dfbf7651026538449c5d554c1af19932791
|
|
| MD5 |
84b4f761d84c5ae4b9693fbf29a5e7f5
|
|
| BLAKE2b-256 |
9484b1b5d807483f882b7309799d96ec122daaa69890d80c2994f476d4e07c51
|
File details
Details for the file nanoarrow-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 840.2 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5f27749e2b5218e69b484e01f4c08007386e1333fbb110f400354bde0612799
|
|
| MD5 |
50bfcf8a3e7b57baef9408d80433894b
|
|
| BLAKE2b-256 |
9d2002ef20b340c7f765192309b87685e56c88cda203a4effac04b5d9347626a
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 658.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cc015aa3905c3f0b798570975297730d1428a23768805a23202bc48d0eaabcd
|
|
| MD5 |
cf38efd5e895b167481ca0556a5e0632
|
|
| BLAKE2b-256 |
17b854001df497f4fdbf7121db2d61090bf9986298a9eba4ed2cbfc9aad414f0
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-win32.whl
- Upload date:
- Size: 563.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
196b561557a26295862b181f204790c9fd308bdc78df30247b0e4c0b775b4a48
|
|
| MD5 |
c4e4e502c9acc8bc2972d5d423b3ed00
|
|
| BLAKE2b-256 |
2429df629c41d2246fb7d0ad5f191296e5957389774a83f8097357e3073cc0cf
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebe2b9a7a25b3cc0f86f215e12f67bdfe8925a112ceda86c82d7633fc14fc52d
|
|
| MD5 |
6473d5d4c75b3075eaacb8264c8e59d0
|
|
| BLAKE2b-256 |
c674a3573db8c4b1de39b2ccca439479e408d0b40fd411c501299c3836f43c95
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6adfdc1129d3351e6a64e09749c2460270a49eea46a9badff16a15f31104e59
|
|
| MD5 |
528e7eef125ab8a514c91c0e655328bc
|
|
| BLAKE2b-256 |
4cebec98442b8b03ce2e9c3150b6ead5c2475253c462ab2b54808be52f6596bd
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 991.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8412b5594cef5e86f35a4a3eb05c25842c38f357926d13610b54dc1d99ffa2df
|
|
| MD5 |
c46bea5f3d392b07409e46b2a7eaf462
|
|
| BLAKE2b-256 |
6e1068374d91b1a55f38e4f96ef0f32ed6fd72826aeae6e3c7de45b635937244
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8520fe9ab310d855376e4faed742f683390bbab7b5dd230da398cb79f3deb29
|
|
| MD5 |
347fa083b277286187dc2d1c1b733a86
|
|
| BLAKE2b-256 |
a0aae5655fd8d8a6defb0bed22e2de695f974a759798f10775de19f5a924156a
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 969.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1a910eaae1c60838ea9d11d247aba88cb17c02b67430ec88569a1ae68a7bb25
|
|
| MD5 |
ea6d725612351d039122516ea24bdf2a
|
|
| BLAKE2b-256 |
e7063d88f0fb29b7343426b035f21d90d61c872b83243895e9548d880e08f60a
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78a5cbd6f3664e552280688dcae765424587d7392577774f7cd7191f654e71ab
|
|
| MD5 |
e6639c73b61241423afcbae803546b43
|
|
| BLAKE2b-256 |
9416db9fedc1d916ba6f66537a992144fb08ddc2495dd5b61a4a2710e5518ec4
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 739.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a579bd43011d2f5cb5a9ba3a7352bd4e3783f3adedb59b93540af71949433cf
|
|
| MD5 |
c5511b391f6e6315d564b597bc617669
|
|
| BLAKE2b-256 |
911e70ff64e9ecbf2744aa7527f721bed8f5e549dabbe1c02ceb6afafa651ba5
|
File details
Details for the file nanoarrow-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 832.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31445b4cb891f77cb0261a0790222c9584c122f6d851e5818bc50a2678ae7bc4
|
|
| MD5 |
09c2c54f7229174a64ffa749f65dd23d
|
|
| BLAKE2b-256 |
22893ba932b982d26c7f38c1c54cf97dde05ad141045c106b6f1664151c22387
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 658.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c3b2c6ff46c9cd37350b9855829c0eed1256311e4fea0fcbc8aa9c2080b80ca
|
|
| MD5 |
f2b7ad79310bca6bb15214bf38927f91
|
|
| BLAKE2b-256 |
b3f1602c7be675383f725382f4eed0019ba840a8354d2eb732e56e336245182f
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-win32.whl
- Upload date:
- Size: 566.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
491a8aedbbbe4dd06660d641762ad9cb9743c39b96259f7795a4ac22cc046f18
|
|
| MD5 |
a58774c9e5eee691d5606dde01ede4b2
|
|
| BLAKE2b-256 |
b3983314109e7064f84e25cfc6b7d460177d92dab7eabd149a5b78c1463ad797
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feae14c938fe2192f1bea1d0f8e87be9446703d2997bbd555c949df36eed6d32
|
|
| MD5 |
83a65ea2712cb401c9d71769a874a756
|
|
| BLAKE2b-256 |
22288c314b5f0bb5c27d1c6164fd8f90d52f02e08defc2d8880466610ecfefdc
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc1a1fe64c6b1177314eb4c36d9037268257d6699b052f9462a99e056703f4cb
|
|
| MD5 |
599b4fa41f378a50d922cf5c875fe181
|
|
| BLAKE2b-256 |
e3b41a5f3c10ad667ac9f0dfbde2416124025bdaf963d3915968b1ae6f5f9e85
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 989.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
958572c48d53f79693f30070fd4531f4d9643aa62e03ea1336ea2fc69e9e964d
|
|
| MD5 |
2ea2c68c4d922d1d2892de3da0fcfc70
|
|
| BLAKE2b-256 |
830e02698dc0a4af10670822b949cdf0999134152347138d553d440b8f14f471
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
178cc6d097b988d13354c6a48a873b4496c7bcedce43c55c6770186b6d1b4845
|
|
| MD5 |
028d460a876c0bf6e0ee1c263aefde67
|
|
| BLAKE2b-256 |
a7a95e62e7f1b9b41ff86d6025c57636246e1e8702b0cba322fab0272c3cc0f8
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 970.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db62ea708c873980eeb0e711fa6162120d1e372b2404bb79ead69f9aa0560192
|
|
| MD5 |
cb89ea810cfe7c635c878885c3d6a3da
|
|
| BLAKE2b-256 |
f06d9de1da912da0356169836af8ccecac1664ee4d603b65b7067a27b85ebaf2
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5715e68cc17ccec23e1fcb9e828281bdf6afa11d78c8b0cd9a343c1ac48fb1d
|
|
| MD5 |
29e851c1b3f594946ac0f59b110cf94e
|
|
| BLAKE2b-256 |
684d70eb2a672ca81d4385069eb6fc70fa6ab44a029d18df4da48e6691e6d8ba
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 741.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7861371960d09adb377d05da73190103178410dc014369779734f2dbff0ac0ad
|
|
| MD5 |
4c91d0f33b41cfc28df115a0bc4f806a
|
|
| BLAKE2b-256 |
8b632960ea0b1bfeec0381f01e6f7652c104683444b7c9902f42907c911630e9
|
File details
Details for the file nanoarrow-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 834.2 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5ea89651e49afa2674557005938963cb849d3c65f2f22ac6701c281a7e0244d
|
|
| MD5 |
e2e1c43e8573f5cdd6cadfe4fa563763
|
|
| BLAKE2b-256 |
de277aece654f60453026fe36985291853243485ac41dfb9a69e421cdd2271fe
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 660.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2af0e3e3a6bfb0fd675760e9f65671efd0abb71039a15b5288b16a212f5a762b
|
|
| MD5 |
5fb270088086cbb899414cf86bf0e624
|
|
| BLAKE2b-256 |
73fe7cb64aadc1a71ff23b616d7e3e9c1acd73bf5f3aed84564150888d5e89e6
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-win32.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-win32.whl
- Upload date:
- Size: 568.3 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
737c06de6e1f539669cb5eff5221e865c9efb9930af72a2e5f592d9f01b0764e
|
|
| MD5 |
7e7fdc06746c05172a38c3f4cf6f9f99
|
|
| BLAKE2b-256 |
d2f9208869fb20bad51347b3fa2063efe2828bbe7f98897d9c4ee6aa78c0284b
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba472808f2dc25ee8c692df0ea96c1a5adcb52f509c6fa52fa383556b0af6f5c
|
|
| MD5 |
b219ac1fce1f5327af5481f275fcd93b
|
|
| BLAKE2b-256 |
5f4d9e3db5238d070033374c9d29faa4e4a9e2ad3cb5a4ad2a91daa697ac7444
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e159645274a454b7f7b984ce094e6fb420f89e2003895537c5f5a9745bde7eb8
|
|
| MD5 |
aff6ca072075378a29db12a1b7c91420
|
|
| BLAKE2b-256 |
5255a25bab9dcd9697ffccf377b138e71c294537397f592f44a349a6172a41bd
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 993.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27891ce4d6bf0cca897e0cbb6462a02515750679c58db0eb6c11a2b1373be75c
|
|
| MD5 |
e85ae1e08ddfe0fed23028597786b4b2
|
|
| BLAKE2b-256 |
e8a2a002e0dac28a78def83ebb7584718bfbafc1f8fc1e37bd2632aafee45fea
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
080a7d9c2db1e5237b1b3cd9947b7544b0006e015522aaaa677c3433dd3eb2ed
|
|
| MD5 |
5d6558e72667aa0e4771ea5af2ae5e83
|
|
| BLAKE2b-256 |
a9c57e28430bd6ee0338c76c0353e1178753bf798e37b570fcad4497e7927aed
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 973.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
345e7bfca9e9b548bf6ccb74dcb175734a1f6f1854a5a59bd6c36081988a99ad
|
|
| MD5 |
f08d1be806509f9b45349dc640e40c32
|
|
| BLAKE2b-256 |
f4a64fa95e570462a39383020db4513d30c92ef097cc7f322e569bf0ac1a3e1a
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1412f355b73e92677fdd30c4e28271478d1d572a04abe0526e60446a6a4eb018
|
|
| MD5 |
ec61342c78ef5845705f1b53ba58323a
|
|
| BLAKE2b-256 |
27b2f5a7a9b8cb138ac85e2e8f97e5de61edcc28fcbdee33637bd878bff64380
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 744.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa51fc13f1a7b9773b7b10abc802cee0d9faab654a786be3b1081e3690061ab
|
|
| MD5 |
8413d2f15a06438be03d7966ee64bd02
|
|
| BLAKE2b-256 |
ff043e7b5748f9bcd4fa88b96d5cd4ba41ae4ecd249e9ab333d845edc37a7c40
|
File details
Details for the file nanoarrow-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: nanoarrow-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 838.0 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62a15d8c1bbee9b5ab9a35f401ae29d7a946e94d758a4ca6796d8154a7395a00
|
|
| MD5 |
bccd4fae4fea925f5afd5a95553e6768
|
|
| BLAKE2b-256 |
82977320d932dfdd0ef189cc2dec6a3f1141396e5ebe88c8556ce3003d778b2f
|