Skip to main content

Python bindings to the geoarrow C and C++ implementation

Project description

geoarrow-c for Python

The geoarrow-c Python package provides bindings to the geoarrow-c implementation of the GeoArrow specification. Its primary purpose is to serve as a dependency to geoarrow-python where needed.

Installation

Python bindings for geoarrow are available on PyPI and can be installed with:

pip install geoarrow-c

You can install a development version with:

python -m pip install "git+https://github.com/geoarrow/geoarrow-c.git#egg=geoarrow-c&subdirectory=python/geoarrow-c"

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

import geoarrow.c

Example

Most users should use the higher-level geoarrow-python bindings. If you would like to use the compute kernels exposed via geoarrow-c directly, you will have to use the Arrow C Data interface to pass and retrieve values.

import geoarrow.pyarrow as ga
from geoarrow.c import lib

input_pyarrow = ga.array(["POINT (0 1)"])

type_in = lib.SchemaHolder()
input_pyarrow.type._export_to_c(type_in._addr())
array_in = lib.ArrayHolder()
input_pyarrow._export_to_c(array_in._addr())

kernel = lib.CKernel("box_agg".encode("UTF-8"))
type_out = kernel.start(type_in, bytes())
kernel.push_batch_agg(array_in)
array_out = kernel.finish_agg()

result = pyarrow.Array._import_from_c(array_out._addr(), type_out._addr())

Building

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

git clone https://github.com/geoarrow/geoarrow-c.git
cd python
pip install -e geoarrow-c/

Tests use pytest:

# Install dependencies
cd python/geoarrow-c
pip install -e ".[test]"

# Run tests
pytest

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

geoarrow_c-0.3.1.tar.gz (299.0 kB view details)

Uploaded Source

Built Distributions

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

geoarrow_c-0.3.1-cp314-cp314t-win_arm64.whl (442.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

geoarrow_c-0.3.1-cp314-cp314t-win_amd64.whl (482.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

geoarrow_c-0.3.1-cp314-cp314t-win32.whl (452.7 kB view details)

Uploaded CPython 3.14tWindows x86

geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl (576.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

geoarrow_c-0.3.1-cp314-cp314t-macosx_10_13_x86_64.whl (584.5 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

geoarrow_c-0.3.1-cp314-cp314-win_arm64.whl (433.7 kB view details)

Uploaded CPython 3.14Windows ARM64

geoarrow_c-0.3.1-cp314-cp314-win_amd64.whl (460.7 kB view details)

Uploaded CPython 3.14Windows x86-64

geoarrow_c-0.3.1-cp314-cp314-win32.whl (436.3 kB view details)

Uploaded CPython 3.14Windows x86

geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (567.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp314-cp314-macosx_10_13_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

geoarrow_c-0.3.1-cp313-cp313-win_arm64.whl (427.6 kB view details)

Uploaded CPython 3.13Windows ARM64

geoarrow_c-0.3.1-cp313-cp313-win_amd64.whl (455.8 kB view details)

Uploaded CPython 3.13Windows x86-64

geoarrow_c-0.3.1-cp313-cp313-win32.whl (431.6 kB view details)

Uploaded CPython 3.13Windows x86

geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (567.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

geoarrow_c-0.3.1-cp312-cp312-win_arm64.whl (424.4 kB view details)

Uploaded CPython 3.12Windows ARM64

geoarrow_c-0.3.1-cp312-cp312-win_amd64.whl (451.2 kB view details)

Uploaded CPython 3.12Windows x86-64

geoarrow_c-0.3.1-cp312-cp312-win32.whl (430.5 kB view details)

Uploaded CPython 3.12Windows x86

geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (560.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl (574.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

geoarrow_c-0.3.1-cp311-cp311-win_arm64.whl (425.4 kB view details)

Uploaded CPython 3.11Windows ARM64

geoarrow_c-0.3.1-cp311-cp311-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.11Windows x86-64

geoarrow_c-0.3.1-cp311-cp311-win32.whl (431.5 kB view details)

Uploaded CPython 3.11Windows x86

geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (561.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl (574.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

geoarrow_c-0.3.1-cp310-cp310-win_arm64.whl (424.6 kB view details)

Uploaded CPython 3.10Windows ARM64

geoarrow_c-0.3.1-cp310-cp310-win_amd64.whl (448.9 kB view details)

Uploaded CPython 3.10Windows x86-64

geoarrow_c-0.3.1-cp310-cp310-win32.whl (430.4 kB view details)

Uploaded CPython 3.10Windows x86

geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (558.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl (571.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

geoarrow_c-0.3.1-cp39-cp39-win_arm64.whl (424.7 kB view details)

Uploaded CPython 3.9Windows ARM64

geoarrow_c-0.3.1-cp39-cp39-win_amd64.whl (448.7 kB view details)

Uploaded CPython 3.9Windows x86-64

geoarrow_c-0.3.1-cp39-cp39-win32.whl (430.5 kB view details)

Uploaded CPython 3.9Windows x86

geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

geoarrow_c-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (558.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl (571.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

geoarrow_c-0.3.1-cp38-cp38-win_amd64.whl (451.5 kB view details)

Uploaded CPython 3.8Windows x86-64

geoarrow_c-0.3.1-cp38-cp38-win32.whl (433.3 kB view details)

Uploaded CPython 3.8Windows x86

geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

geoarrow_c-0.3.1-cp38-cp38-macosx_11_0_arm64.whl (563.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

geoarrow_c-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl (575.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file geoarrow_c-0.3.1.tar.gz.

File metadata

  • Download URL: geoarrow_c-0.3.1.tar.gz
  • Upload date:
  • Size: 299.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1.tar.gz
Algorithm Hash digest
SHA256 a488794aab6631f5c54c3f77fcff734b2dda162e2ef74cd22fff6989d7aed89d
MD5 02fa5cb8e42e85675c8d86211f92e328
BLAKE2b-256 2128fe727122e139df3ebca696d9ed2c4eae43ae916a3d6beb92fe7f845f8337

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 430a177b6a2145f0bcf7e39d575f2e01352608054f848e53198bfda7f59e59fb
MD5 16370ab88ac03871cd8011e29f60c31d
BLAKE2b-256 65c4c96e10f0e26ec59fe89470686486f6ef75d13b8de4ee423cefd9b4ae8823

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 482.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3394440734affd699dfa766eeaec1e53d76d0fe1ece5f5ee3c80e06a0e647abf
MD5 9a15c58cec21d46b19ff5aeacb03de7e
BLAKE2b-256 912dfb9923dcb9f04f8ee4479ca9e1c601e1327cdeb63cc67c25d0bf3c1465df

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 452.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dea8b9e16699909725e80c214ca4b4968b4c512213816876fae9e56087cf1f57
MD5 8a788014073862a1b123c3a75f8e0331
BLAKE2b-256 b860ce8fbc75f1d6dab9faccbd002bb11eaa2d584df948bc33a4abca15df6aa3

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa17482255471b2d954866588480aa5a494d41fc3f8e00a8ab6f25d25b06157d
MD5 fe2949c78a445c6ce231672374d2e5ce
BLAKE2b-256 7a39dab9032f617c5e6bec8a1bfe2037fd26853576c958c75af2aacfc76bb7ac

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0eb54b4d6ecddfdfdf726fefbed477b64b006873523c014d73b7d3b37818592c
MD5 9098595dcff0b350ede0319aa73a3ece
BLAKE2b-256 d956abee559124e989d9f60101aedb8385e13bc808ffaabdb711ee77f27bbf7a

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82350f13e1a31d1d4825fb65e6efb8d1b0368c17ddf5145d81049c532e3a1198
MD5 0944b717457a588824b7e1890981b28a
BLAKE2b-256 7369521cf08fa59d1d492b9906b7d43238bbb0b50e9d5a119b94af6ce89cfc3c

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24da8395d5b298f2071f54497d876645daad5bee78fcf627bee746dc425cba2b
MD5 7ddcd6f5a737dc092290936b69a0c1d6
BLAKE2b-256 2ead8b10f728f2b0467c9859b1170dcc4c460350f935bb6600842d7bbd51b377

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcf61d7b35999c3fbde3152a3774ba5b6633dbcbe7fc40fea385a96ff3b5f42a
MD5 6c316ab8ae08ba1ab7d9a75ee1f4ba89
BLAKE2b-256 5ea8772aa9c0df3e285d14eb4ae1c47d310b4c2dcc8ad96225f16841d86613c3

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bafb69791a1ca78273b0f69ab7358d1ec90e5fa80b20816fb8b7228c107bf42
MD5 cc58b119fc62fe46a3640156b312d752
BLAKE2b-256 f08796bda2d65fa1da8a27f11f56bfd5d99f335829ab9892149a68acc04bf04e

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6502ab08968f427e94e267ae223020c0c5eb7a09db00885e349a6fab3fe632c6
MD5 02800e16ba438ee3b9b31548c50e323f
BLAKE2b-256 8721c7d14179893f83c76b528276aeeefc5f6ed3409ea0ef723d8e157840dd8d

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 460.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86f87599950abe7412a85a20fd5a045a859e7bb8f69d9376ccaa3c3a7cbf293a
MD5 7908cba3e7cbe3042861610fa2bae6b2
BLAKE2b-256 7d4833c41748a4f7dd461745b7fbedb19e81f773771144d851e12ff12b2fc546

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 436.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e3a310a06edebb7289785cdab19a9e64a11150644d3b657c23125aafe404f0d4
MD5 314d7b87fc01ccd05b36b7601636bd9c
BLAKE2b-256 0946d1fc8d114ca713d9f25b0a130fa1e2a5f250b75680020cf63c610044a7eb

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec1f29501d9d28c2642b0f84b2a1b958e3332375ebf1c6f2d7cb1b3876daa500
MD5 e21f220b2ec977337389c581e0546c18
BLAKE2b-256 8b0dd269507838d049ffb090108d2000c4638f9a27606fdaee74ff6d6b400b29

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 775615b2e77d7615ca23ac37f3a00ae11696eed3bb2a1e153a5cc094c662799f
MD5 48f22301ebf417af182ef8efb84ce61d
BLAKE2b-256 eab51529f5d8cc892790c3524252f6961e0887a6116a9c8b1f8c4f6441c5b95f

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c566c80aec907de482f9b87095b6f026a69538ff37cf701a7efbcaee6ba5389
MD5 529b48b7bf01c5dba8b75dceb85a975d
BLAKE2b-256 f156f12733a85737688a74029fd598a15e5f97fff999210d395fd25e3d70ae58

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80060160896849351f998b77b536853e91cc8eaddc13fedd5785b2459f9ce0a0
MD5 c0932740dcec11ff7d7c7fb0c0b58b05
BLAKE2b-256 a4a30d68cb5eff8e18bfdf8b6a624678e36ed4c47b2a32d5a27d48e0f130e7e0

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a69d707e21d7d2acdbd61eb11df7b052ce1b6c08cd92793c329342d4e501ce7
MD5 76cdbaef02f738c08ccbb6f10675de35
BLAKE2b-256 f2f1b6aae1316d28a44b9604a66cc4f3a7b38f0f1e7ef86e68e1e6a7c7e13ea7

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8204245dd903f99fcd2f9309c1103392d1150735a2221f02575b07a5c66fa285
MD5 f7c01b0b4abceb61fac50609364cb4d8
BLAKE2b-256 3fe936e6cfeeb1713c1f1b409e81065a2011a4a1c618cebc663153cedae47e0a

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 427.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ab4511159b0405c1b094b631c259ad07a16b4f1a3b84d453999e9dc60c302397
MD5 a51ae22da9074f3f3fd2496141a1d396
BLAKE2b-256 53e11b99b2252163fc68197fd0514087569ca610a75e0926716a4c591803822a

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 455.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd13290d9fab82e7c6470da6ec6ee0f4a2e1d05a6b4050650c71f5bfb2b023e9
MD5 f8f730425680d4bb1f3f55ca6dc4eadf
BLAKE2b-256 b5de2b53a0c1a3b7641f2662a69089a0bb15fd7e7d25b04a92d2330a73a4de96

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 431.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1664774a1540721ab42ac3131a9e0941e6394ba4f82e408f7ce27800cbd1aed2
MD5 6290508bc07a842d24c1da3abe267bc7
BLAKE2b-256 d479f57f8f8971770285d62d5d76afe42bca248a25304fbc4733bac58d14ab0e

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15b1b920b01532903bc11a1fac351cb93d12b6965a97b365f2c88e1667ef488d
MD5 7ded856c112a4d6ab1e96d6e8032de41
BLAKE2b-256 88d151e16079cb33cb2271717391585f95002930a2886e7f43127f9a1b644711

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1f544cf77a724f7853a0bb167640915a458dbce802dc0869f3f40968f2022cf
MD5 4a6185466c78960ab781a6880c49b578
BLAKE2b-256 dc0d01d32c9b57f86fdb38aca62ec29c24c02c324982d7fa8108e38744ec460f

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b2b90b22caf3756e63f7038a4277368865e3541101872ba73e38cebd462c790
MD5 267a4d61bbd3409919e59f4be2af4dbe
BLAKE2b-256 01b07226069e909fb54c9b799ea6f5ff97c500c689311bd0b81eabf22f5c6eec

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5849c656a8ab8359215befbaaf197a0e2eddfa3b030ee11f49a58c985c4c59c
MD5 2a356a901cc20aa24856eb6967e7a79b
BLAKE2b-256 8c249b956c023046f7c082347d57de6d11683d713b4b4a6edf92b364f551da1f

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea64cb38ae2af47973a28c7d36ac089f35dcf2916765511aace63fc2c868f39a
MD5 fcc90eb2f423d02f12226a617f091860
BLAKE2b-256 9cbad3a5e04f9ebd511dd5e269af2b4227463b7327a17a817267d64fadbfe662

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 105ce761cf7e59b335ebff256f7d65ae7ddedda587bc1c5a63191169f14a18ef
MD5 44c2e4d57b8e25a295e8f3805d818bcc
BLAKE2b-256 f466f408e4c5cea55d056657ff3a8ae46ca1c9f47adb4d4edeffaacbdccd940d

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 424.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 be77085242d5db5f85271da15a1aa5adc84c30e198691af04490b4fa91f09a8b
MD5 ebb0cb8867063ea5f68b1ee2e1f97895
BLAKE2b-256 1bfba153ad1381899459442b46c028819bc945837459bc8d7e0847c74bd375d9

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 451.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9101c94ee44687f2c62ce3cc55acef99bb032b0653e17ab12c83f3505f8b4b9
MD5 eeb4a6b7c0644d0185fc1a4fc6ea24ae
BLAKE2b-256 361f63d7d5491f1dc81e6c793276b898b983824faa6167616ed4130477d4629e

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 430.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bee0205900f3b88f6a3e833ab08007b654298840bd9e4e39f6aa1595cf294f1e
MD5 e77b855dff062802a8e2e4684200c1d0
BLAKE2b-256 148adda4390f01ebc29a8a4b2190f132e9e251afecdb12afe1c0143f3525b0b2

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08d48af947d76a983c6cbaf05587c106d81149fad63c18ac644b72c599e70711
MD5 b9946bbf3be1f962efa6d9e6fff12c12
BLAKE2b-256 7fc8f62fbad76e8baf7209b8f20fa849457a7b493639f5b0ec4343b69ebcf554

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 434536677f328923ea9be366824abe6fd177881eb46ebcf7cca4d7b73546cf0c
MD5 afb490d3804afefd1254558fed0ca916
BLAKE2b-256 e7e4e7a4de01e1ac1cbcf8e20f4747182a5c2d8655a0532c1e3eada1182904b1

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3aa9370ac8bb295fc192c70f499502e8ae419b335fbe29ecb344a2a368f3afb1
MD5 73f94673d7e040f0a4eb166fb714b77a
BLAKE2b-256 2ac871f5632a1912551e0f1a04280c7a14fa6378f01b3fe849d78bb3817226a2

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0700091e9bbb0ffdee37e5ac59ef2a38aab5683e33df14f99a7bfec487dd12f1
MD5 ab0b48daad7073ed402352f2a81494da
BLAKE2b-256 7405c28749e651921e469d22c06c694b3e42dac5605228ac1c34add3371bb4ba

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0bab5f31ad17e7c6baaf2a7a0e65b67011e1b008daf4bd4ecbf9172085f0a20
MD5 2f1b66ebf57c8ede9790a3bfb5cc5bea
BLAKE2b-256 66ecffd43f0671a5c7d46776afe4a3d15d21a04206339df3054ef676b3c36fbf

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49b0cf15d73223138fae38b6f8426897c3352006d2b4216be55d5c38383fb5d5
MD5 55d071167cc124e8a855071b0a58cd59
BLAKE2b-256 013c5b2ada5b6166495ad1fd1f93127a6ad313833a25c38f98bab0c9b4acc95d

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 425.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 60707a335d40807e806ca295a80087d8cd2c6e061dc4135ca22116208dfa477f
MD5 a554ab2c6b9708045d0dd47dfc86a46a
BLAKE2b-256 f01c85d256b0c95861e2251684d7e9d5faeb41a9d5723b85924a13bf62541ad3

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e9aa0f1e063fab642d2b9d24f2bb8a8311e8cfdc48cd2df1340d90b387a9a8b
MD5 093fecfd0cd8ddea943e62dd61abb567
BLAKE2b-256 de711b95bc02a9eb165026e6c404cbb7f8de42cc8856142ef2a6cf506ba842e7

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 431.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a70edf5531198a3bcb590566e3927c62b5f25cfc030e551625ca01238278f8db
MD5 43d3a8ef463c70bffcf31cde4c1ed56b
BLAKE2b-256 7fa5505c59de3abee3af7b0a15418cab32349a51bb63cfeba0a150114023ac98

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49871c87a7c0ce2a416e006fb4d4273b0302f92aa76bb2706379e2b61e9f8fd2
MD5 c9a9f523b538b02ed0be5386661dd261
BLAKE2b-256 5bbf19175d8a61ca41ef316437a8f3db2fc338cf67f511a23feccb152bd615f8

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85de6694e6d304ed002aa81d3f1d8625455317c97fde05f1e12e985ca37ad53e
MD5 1442924dd47d53f3cc6cbb6bc72968bd
BLAKE2b-256 9238a9b7422d5f4c84799ef9d541f93bb5b8e65b0d2b815b0a594f2e44203281

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11b3d1fe1f4c54a5666ca9816af68764197e73c3c548d935f336cbf43d705ea
MD5 b776f652068458383ca2839ffc1da639
BLAKE2b-256 a4b76b6a007f1b59aace626c244040dc76a6ea996bc06baf7ecb00717f6381b5

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 081ec4d7eeaefa1a381e43e7f676ca3ba4c718ef97c26c834627cac77821f4c1
MD5 c84c1f0448dd3f6b8338bb02ba9dc878
BLAKE2b-256 c5f4b46d6a95415fa385894b22444106fd506e0b3e514ceec205d6960e57d669

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4f8d7d269446772c887bf8682d67877ea6ba12187de86ee2f7d7ae679b00bed
MD5 4887051cc58ee8b631cee328eabfad66
BLAKE2b-256 077a53dfdb581d28755c206f7245fb259ca68758a75169b3b1cbcf671dad4915

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 946bc5816f7158092d27b76e2e436e03edad814a90b767745534cf02dff2d4b1
MD5 303ee253a23d14f463767148e56e9b80
BLAKE2b-256 73adb688d7825a786b0dfbe1363ad087f9436e6c26bcd8788f97487f44d0512c

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 424.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c49094074218ac98a9c26d37ec2e94129e6d1e4185b79f83997b3aea0115a2ce
MD5 bb6ea35f68bb3fb01732fc067e57a639
BLAKE2b-256 3fa8e2637190a66d05cd9ad2ba2a75a2fa08fc836bd12aa6c61e9dedba0d733e

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 448.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8e27a260a3ec6b214bd807a40d7be94b14dea028464c48c0e8704f2237fa9d0
MD5 a49a3fda79f1536baff5f901eaf6f054
BLAKE2b-256 a72d1b125adf985652def385e494d7757e5d79d18fdfd67966efb14f5e115795

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 430.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e8d2b23fd3a0c23908ee650650438d55d60d90254cbdca12c3dd91a95c77e68
MD5 176361e08d48aca367025c14b4e60ad0
BLAKE2b-256 dbe52946b49ca3df684f4ae878fdfee46e7beb07f42ac7ce94c3e239e065f2f3

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd91674ac439f419323bee1cbb2f28c11c798f846f93f0ab9e93270cd12b5580
MD5 bd8b11bc812f3937706d4448cb3745ae
BLAKE2b-256 a37a36b13b1d4d0b92a11c20aabcef9eb97c6ad57d58454f06e2d8778173d220

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47968f89178026889a4e2c460f084b299134c1ed2a242a43c8b69c9154c14e39
MD5 236bf90a681fb875afca359c40832ccb
BLAKE2b-256 8c481fb4d9e20c6d86696aa7bf6de5bd72380b7d1ba4133da110edb4eca8a433

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a59a1663727705c710cb47a75d1ebd69dcbec2958cc4f2cec39d3bdd91171ae
MD5 1d482600b6cdd20c54f1714b4f305c01
BLAKE2b-256 4030270c4625498980a81f256b64e867f5db9f67dce5a18979fbe04a5d3c1cc2

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e83df66541132b49d1492919642a42fe0d77b1c0d64911a6cf47710df26ce202
MD5 1348caf82a5c2eae8f19aa88b78d10dc
BLAKE2b-256 34aaffe9dd57dde3aff36032ee1ae40a3da60aad8e4983b54c533df8b74d55c0

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2d7e708c94946ab6a50cbcc97aeb4dcc4088bca186440d0845e7a3528533845
MD5 0d3e51ddd4d1dbdda298817b988ad957
BLAKE2b-256 07130d5d12d42653280f302ef662b07c22cac16fd4326af95cfbe19963fa52a4

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d064c2a8b1884821429e543b24e146966a2bbfd0cb7fb09937d63522c2196303
MD5 a77cdb0db81aa784362cb5faa11622cf
BLAKE2b-256 01163b96e1decaaff9dab927075b8f1f0ef8ae9e4bf33af7ba35bff4762f0e26

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 424.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 980d769ca63ea2d231840d3e5f3cef01ed2c442dc60701690e504fea3fb1d69f
MD5 702548cdc880947704d44d1a8a280478
BLAKE2b-256 6886d2eff7a7bdcb76d57f69cc8d692d27042092ef40395c5232dc734e93c044

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 448.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0121e02eeb5bbdc218569628a0f1eabde954908fec82a83273fe0439618d5971
MD5 317bc7d0be08b96983f462cc0aed382d
BLAKE2b-256 8ac298523556880697598d0338cafb1c9941b3b221ec80155ecfbdadac55ccc3

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 430.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 76045b2e8f148730bd1d0ac58f285d3215a059e82c76996174184525c890b126
MD5 396a4c0076208758977bc9dce66c3973
BLAKE2b-256 1d4ac4ec23dabaf3f3d57bf3fe4a5d39c6d405fb8e5fe8f1093b59eb184becbd

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18fd516d84ef51e877fd661ecc75246ff451bdd023eb96fb8957ed1eadf37416
MD5 edea03d90de8a98dc2c7fb3dd8af6ea7
BLAKE2b-256 be08bc51b2bb90006ab1c7c36dc794329ce89fa72831e78b9b654afc5f404df9

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fde58642a308af2b30772d69fa5b3910a9f6b8aa623b5652061b4cf6dd0d7801
MD5 82d6f29a19ab69ab2e8d8979dd1dde7b
BLAKE2b-256 b8f074d51e5e2207c5ee6a5fe9116ead932871fa5673d9a50ccc14a08746b024

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8fd323cc9a452e92b33dfc7fe45de5b256427441efd4f509489d749b8ce2621
MD5 f18f6cbd47ccd1123eb4b7707f9b5bdf
BLAKE2b-256 573626b189790e599cb111a1f0a34daf01c7480d85c75165dae36f8179f5bf7e

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14318bc5c5b2a6efa2b293f7bb97c6913c88f4ee6ada7afab9fdcfb30f526f33
MD5 297d26357568c4dfe9da75100a3a1655
BLAKE2b-256 ab48f80c46a8eaca01fa26167c8c3a4b45a955c95347e209b3e94f4c72f5da70

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c155987317b7fc864fa80b9d20f239016618dddd2e607ef10a1f69d1d32d882
MD5 b9114030ac1c5e4e737a60dabf2c2b02
BLAKE2b-256 5466118cb43b7530e094bb439f4acf047dcaaf62cb5a8f1f29774fdefd99901a

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 313ce553d22fbc8995f66cdf28a04195b676acb1f832228380a319afba091c45
MD5 94344b619b06c0791d5119516803cb6f
BLAKE2b-256 792c5a38474ca8f78807990db3d5e345fe89bacba6067add0194cb7b6e95c0a1

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 451.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 334fe7fe74b94c63ad6710c5e2a4e4b1a9399516cfbd2aa8fe389db2f8219eef
MD5 08b953dfe66006a4b19965cc6e2c1efd
BLAKE2b-256 d49cbed36c802424acfe405d0b7c43df5d9ba6505e30fc72ab850cabcd8972a6

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: geoarrow_c-0.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 433.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de2729d067f2d7df4954574841e521afcbf25ababfa1e68a49cd5e6a2410945c
MD5 bad293ad354f21384b692c6b4adafd96
BLAKE2b-256 b51c9bd4b71ec9b9b8af966739a8711feeb6260488fba55c9e716f836c327035

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0459081c0b0ee11bb5d586c3be27a9c7a5a84f5b7401318bf32c4435bb22f52
MD5 601dc830fd08160b6bd1cf68b10f04a0
BLAKE2b-256 fa01472117b9645836abc292f77d7c86df9cb7a0759fff1fc027328db7bbcfa5

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1738652e96d8fe2243197bed9585eaa014a9a43336f0c283165299971c7d2fe
MD5 dee32932c1e653090e088d54408a2bbd
BLAKE2b-256 99f85209f0e5fb7f73ed5119d1832ea9db87a50ed34eb1136f54e16c33fd3987

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00e83a9dd8c3ab7bac3f7f066a2603a0f2882665a4b5ddf6d59b55802c98fd95
MD5 3636fa9578e9944324649c44a6d0b2f0
BLAKE2b-256 a4e22be7f1098509e9139e857430a19f3f5898deb41931c8c28633986254b8ba

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10f3cea2952fb978300e79405bd86ebf7f31095c699f0d14b2bb24e352e01f26
MD5 50cd4a231e163c7b4cddf0c2ac372893
BLAKE2b-256 8b435fb5867403e9b04f8597e74b61539875eaf4fe0a1f23cedc4debe9776a2f

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7b7a6765c09ea56856b3ec302a34032e5a4166d031b8a03db29b3b5b8f4b7fe
MD5 cee3c03e99217d71dc69c8672553c54a
BLAKE2b-256 5c21d700a8e50c0d39191cf47ee3db527fc04f77f892eaeda1efd13485042ef4

See more details on using hashes here.

File details

Details for the file geoarrow_c-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geoarrow_c-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71257bb905afd0a978ac7ac3c79b1077990de137d3d5d81af8da4f2142254584
MD5 444b519662abca53510dc2536bda373f
BLAKE2b-256 3464423963c81ef0ff4915ae06ee36a014074e367dbbd67a30617aa025591e9b

See more details on using hashes here.

Supported by

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