Skip to main content

EWKB and TWKB parsing and conversion to GeoJSON

Project description

wkbparse

wkbparse is a Python module written in Rust for parsing EWKB and TWKB geometries into GeoJSON strings or GeoJSON-like Python dictionaries in a performant fashion.

Original EWKB/TWKB encoding code forked from https://github.com/Mortal/rust-ewkb which in turn originates from https://github.com/andelf/rust-postgis.

wkbparse is developed mainly for usage with PostGIS and has been tested with geometries generated with one. However, it has no explicit dependencies towards PostgreSQL or PostGIS and can be used with EWKB/TWKB geometries originating from any system. In such case it is advisable to validate results carefully before using for anything serious.

Motivation

The main rationale behind this library is to offload compute related to geometry encoding from the database to the application and to minimize data transfer between them. This can be achieved by favoring native EWKB geometries or better-yet the transfer-optimized TWKB-geometries instead of making the database encode the data in some text-based format such as WKT or GeoJSON and sending that over the wire.

The benefits may be especially noticeable when dealing with large geometries with lots of vertices. E.g. the size of a 300 000 vertex multipolygon as EWKB is ~10 MB while as TWKB (1 cm precision) it is ~2 MB. Letting the database encode such geometry as GeoJSON and transferring it over the wire takes a long time (anecdotally way longer than a typical API timeout). Deserializing such MultiPolygon using wkbparse takes ~150 ms on an AMD Ryzen 4900 HS laptop and the transfer of TWKB is much quicker than of the other formats.

Installation

Pre-built wheels are available for the following platforms and python versions:

Python versions: [3.8, 3.9, 3.10, 3.11, 3.12]

Platforms: Linux [x86_64, x86, aarch64, armv7, s390x, ppc64le], Windows: [x64, x86], MacOS: [x86_64, aarch64]

Install by saying pip install wkbparse.

Supported python version is >=3.8.

Tested on Python versions 3.8, 3.9, 3.10, 3.11 on Linux x86_64.

Usage

This module implements the following functionalities:

  • TWKB to GeoJSON dictionary: twkb_to_geojson
  • TWKB to EWKB: twkb_to_ewkb
  • EWKB to GeoJSON dictionary: ewkb_to_geojson
  • GeoJSON dictionary to EWKB: geojson_to_ewkb

The following is not currently implemented:

  • Support for GeometryCollection types
  • Encoding any data in TWKB

Example:

import wkbparse

twkb_bytes = bytes.fromhex("610805d00fa01f50")
geometry = wkbparse.twkb_to_geojson(twkb_bytes)
print(geometry)

The resulting dict looks like:

{
    type: str                # GeoJSON geometry type
    crs: Optional[int]       # Spatial reference system identifier
    coordinates: list[float] # nesting depth depending on geometry type
}

When serializing to GeoJSON strings directly, the crs is instead expressed as dictated by the GeoJSON spec using a nested dict, e.g.:

{
  "crs": {
    "type": "name",
    "properties": {
      "name": "EPSG:4326" # The number is the SRID integer above
    }
  }
}

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

wkbparse-0.1.1.tar.gz (50.0 kB view details)

Uploaded Source

Built Distributions

wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (421.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (437.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (523.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (434.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (281.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (268.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (421.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (437.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (523.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (434.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (281.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (268.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (421.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (437.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (523.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (434.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (350.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp312-none-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

wkbparse-0.1.1-cp312-none-win32.whl (135.0 kB view details)

Uploaded CPython 3.12 Windows x86

wkbparse-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (420.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (437.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

wkbparse-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (523.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (433.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (267.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

wkbparse-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (227.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

wkbparse-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

wkbparse-0.1.1-cp311-none-win_amd64.whl (145.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

wkbparse-0.1.1-cp311-none-win32.whl (137.7 kB view details)

Uploaded CPython 3.11 Windows x86

wkbparse-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (421.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (437.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

wkbparse-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (267.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

wkbparse-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (227.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

wkbparse-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

wkbparse-0.1.1-cp310-none-win_amd64.whl (145.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

wkbparse-0.1.1-cp310-none-win32.whl (137.7 kB view details)

Uploaded CPython 3.10 Windows x86

wkbparse-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (421.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (437.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

wkbparse-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (267.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

wkbparse-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (227.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

wkbparse-0.1.1-cp39-none-win_amd64.whl (144.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

wkbparse-0.1.1-cp39-none-win32.whl (137.6 kB view details)

Uploaded CPython 3.9 Windows x86

wkbparse-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (421.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (437.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

wkbparse-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (267.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

wkbparse-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (228.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

wkbparse-0.1.1-cp38-none-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

wkbparse-0.1.1-cp38-none-win32.whl (137.2 kB view details)

Uploaded CPython 3.8 Windows x86

wkbparse-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (421.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

wkbparse-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (437.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

wkbparse-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

wkbparse-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

wkbparse-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

wkbparse-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

wkbparse-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

wkbparse-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

wkbparse-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

wkbparse-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (267.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for wkbparse-0.1.1.tar.gz
Algorithm Hash digest
SHA256 43b93025ec9352fce74c0cc8476a94f287320fe1465967fd05097297baf73010
MD5 f1cea31044ec57a61f8c33e1d1269dc3
BLAKE2b-256 acbf2040fa89c2ac6f3fae7cc5dbe9a1f35db65824046150c7cb81ea13005b92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e51c78752d806215e17f67f8f6618b203c3c74fbe4887d2ccdc76e4286ce2f1f
MD5 435d39423098226d057734d8c647afad
BLAKE2b-256 9360b69416ee280011a8437bc182d2d5ade8a55c329428618b834d37a103f16e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fce5310efdbb34c3222eab9efb1f44b63dbb9db78b839e86c364eea1bf6304e
MD5 44f228c95b8d2651cd6c25a15a96d787
BLAKE2b-256 af827188a4b9bd7ddd6b0e776098baf5520506e65980376547450ba079e4fc77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 acbfbdc590e827d3e2722c75c9428ec990c299f09dc3d010feed0a71b44c9df7
MD5 b8020df4f6a5bf240dfe8a7f1cee5a13
BLAKE2b-256 e7db62b08878924afc5619de12fb07f7921b7e1fb16544af5d45cf905c7e7a01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f052b26f21b193c8f7a41a9bc1a0b551afb719d25e188f687544dc5ad8407c79
MD5 eee2ef644c2f7f033c4a1057273d98b2
BLAKE2b-256 898c686b1684f7c8e3ebd63a2d70bfd6a918b8e94ffc98aefdb79f28658e14c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f62a185b67b4eed994c22767c22f5b34afc7470e8998b24e5166e5e71890e879
MD5 d762af3542eaa1822335e0dbd703b3e9
BLAKE2b-256 a6a30658b2dc3f9159cc9f81fd9487668d0f3dc7731f8b76b9d11747bf3600c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73481dc33a8ab7540c33ff82e0cc4a9f1dbba06d74c1c21007b3259e35701b06
MD5 95d22142ace1345235c2a2a6ecc1bcd9
BLAKE2b-256 7da2b916cbddfdea093c72df8f6a39260a65f6d384ceb0b82329ad7d338c1b9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b235ab96f24595460085be7cda617ed16f84e3b4ceb2a3afc1187c53a9df99fa
MD5 35571f782071dd5276ddf0c9cf87945d
BLAKE2b-256 972611531f1665e9ef7d68eb9db3129b99fe579d0729f26a2df73ae6e36e3492

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fce5f99da66d0ddfdaa86ff9c406555821bd791c25cfda0c027718dd6c25e2dc
MD5 4787d857cc1885c74a5162e4a9f4d941
BLAKE2b-256 79720c7858c45601d89102a1b217570384a89dc14f64e74eb34dec7fe2ced0f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e31e508d4a1a2217f35747a7bb69153f0dae0b2b7277e726ffbcd7e6ab1753f2
MD5 78c431401b61ed3863028126ec69f3c6
BLAKE2b-256 32f599c3868fd5a501ffdbb173494f623909ce38eb88a6ed0f6ae1975b696583

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33e994865ff3572a61bf36aa946f16403c59992694b5418263e4b4be42ca5130
MD5 1e5c1cf32604df0169c43e5dbaf06414
BLAKE2b-256 9e75781794101a5c379fe0a3b576a421523fb85c4c84b5d5f876ee265e163e50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e83d7d668b4f5cad9af994f39215afe2df858a81d2ae2e17b540e39b90b5c3b3
MD5 9dcf36adf9833132febf678e4bfb4d37
BLAKE2b-256 1f76d8db19a398724671b8ee8873b5b7619ad051dbc63a63cada2dd8bb722063

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 610fb4fcdd8455bf17ce81ebdbdc364c5bce954052f4af11e87f1c2e639e10ab
MD5 f7a0767329186c166576318752147088
BLAKE2b-256 58faadebcc97ab768db7d2c7d3a0e14fd0bed2ee204b43ffc24c6a1998000ec5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 446b3661bbce334258161a6a8ca8888c2840860a22805912dbac7d0edaacde83
MD5 4d26f66a82d33bf6741b5ac787dccce4
BLAKE2b-256 0fc067825981fff341108783174b92b82695cf530972c283c2c2c25a13cb1974

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75ac2cb5c3220a2829e9cde099679a729acba37adb8528f04f16b36970645352
MD5 1a91f47d34956bb882a4212661c1a7a4
BLAKE2b-256 b8d7c4bdb9a7e8cf12199b0dbe0ac46aa6e11be34693204b620b807166867279

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f91cbb9e15c79f32f4f927a00cbbf763acaa2cc379fae627b26a8694c375e701
MD5 08fd9d14d6471564576a9c1c1e828564
BLAKE2b-256 bf98f146abbbbcd999ee0d653da08ab085af3bc1a4240970c8156e944855a983

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e30942f5995820816ed18ab101137ddbfc36ab3e8fb6f75918c5ad06a09d90c4
MD5 1eda94bcfc1f9b33bacf6c20507a422b
BLAKE2b-256 76a04627d5b2be69e60c8458bd17aa27957645d36c066e6c616805575c30ba0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d10cf996d670ff6f042135ddcb6882f365362399af901c22b505ca5a3ab2a6a6
MD5 f7407f1028538d6782fed3792eb156cf
BLAKE2b-256 22b6305b346d5b00443a9751e5441edec812bcdac5d32e1d397bf796bd8e6816

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c25ae84cf400a0269eaf0a751ed4bb68a1864e2bacc7786fdfa6978e9acf502
MD5 acdb3caff74684175a6fc29e77d3282a
BLAKE2b-256 e00d9853d5a981c917e893abff860e6a9b311645cdfb470c06ad72310ebfa2fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 500c9ca3860d410a4aebf9792b442d4e5e5d5f7bda6503245f33b2bc4324ac1d
MD5 9caf263339d444141bc9ee6fcd8a70e8
BLAKE2b-256 c07519ba0c85a9b6a3757e6e027661f7eaf3e72c3186fce8d51235e269b68f2d

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2b2dde10fd54f50f8a3b9bfe7a5ad336a6222ebee4208db32a18a8562ecdf96
MD5 6aa8d3c87564262b2eaa7fc2d0a0b3b7
BLAKE2b-256 9a87d573536777639f2ef4b5e83c93dc81a4d12c187c58754a0380e918de7532

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32b716514e816b03bdaf962c8140132ef0c33fd864db1ebd9b01f3bc1774d139
MD5 efa11640ed64b13df1dfe6abdf8beb23
BLAKE2b-256 cf5a6e170530a7f079a35e45882c71aca9388e0c02545ce8ccb6a7c4b7be6b14

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5210b42a7c680099a0d5248bd534b30edaacfca3b2b5789f896ffb6ab3c69e63
MD5 6a37d97015566c57277610dd0f99b10f
BLAKE2b-256 fb4046d412f4270eca31627cfc6ea95026eb6aecb5ad9b1fbc99f62b49c3bcc6

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8bfedcf2613c9dbcbe97c986d713520613e9d91b303c1f41738ceda81a35dfc
MD5 b5f24cf6b662885e247ad0b6c85ef42a
BLAKE2b-256 0289447b4ba75cb6ef40f291fcdef5fe4b17c3e5b8ce2c38283651bc70652636

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 009525741ea95a1d0eaba6fa5f95c8e4218faca9fb9c9594fee0125d3a644aae
MD5 a315bfee6cfa0fb5e2ea322828f481cd
BLAKE2b-256 ff13cd3727dfa2df60898fbce0d8fb2a4aa87a777a267cca672484a43034b9ab

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f8f889e93d4ec747509cbbf70faab7b232fe69dd2bc1d86688dc63220f7a573
MD5 1183310cbacd97e7a7e2f0622bdd0afa
BLAKE2b-256 687c6dd2f678369663be47d3db4d7ae302231b34895e01983963268d3d7d1e7a

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fd2708abd1ff7b391943213c12d397f43120d410a0fbccc8024e13245ba49a8
MD5 ef96ea56ebf83e5c1da9fa1fa0d33083
BLAKE2b-256 f49198967937ee4c10439052339af111112ce08d43b59501d7246dcdad6ac208

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d23fa6e8c4f36538db33fec2a1816e242d7f19c06100f0097e8df763f7a3a248
MD5 ec98465309d5ed16aa0ca7e7513b5100
BLAKE2b-256 07c7a0d8857cc20c0b348b1a62635e7d3d2a7022bd33c6619eb78b6bb84061fd

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11a340e521960920794240eae29e6b515d45eb6b96c8d7c17b49eac711f5cf30
MD5 9a2f3163194276f99939a96add6b9e83
BLAKE2b-256 517a275910aab74e4376816543d2a4d3874ef426ea74c4630470fea1ec73883a

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b4582c2bb88d6da61b2db9b286c89190b60944dc753b720cf83821585eaa399
MD5 549db225f0b99a5e74314baa0fbf6b27
BLAKE2b-256 74ce00d5d55f20807b690e2305690fcffb0fe0460804b5ebd1e67509a63fb028

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp312-none-win32.whl.

File metadata

  • Download URL: wkbparse-0.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 135.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for wkbparse-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9b332d626537389749eec3ea57d41b59007c51a7224f5ad1839f74d683ff4833
MD5 41dcc687378c3f1d0a5f75b31236226a
BLAKE2b-256 7ee1412ce2bae3e1f8f0eb3f10d9149d0f80552c51c22ccf9fb3f7072236615c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 292f8ef68faa7ccc9142e64a8387f5219d77e3f1c46217240df81f708c96fad4
MD5 5071ae28eefe43f0bc5a876ef475c68b
BLAKE2b-256 5bef122fa21860aad5a08547fa3134ae70f1572c28e294803124815b7bd79c17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d1a4b5a5137bdbefaf3f77ceff602871f9cf3792f6fd72c31a3aedda8112054
MD5 75114c251bdeebef7ca080a425aea94b
BLAKE2b-256 e99012cd6e98fd1517a23b97bf513c6f34152daab05864775ccf28965e1211c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9ae5050bb5d36e75759fb532758c39747f671b99f9ca2b448afef19f571b575
MD5 c5bc7ac3c2ec0dd39d314079af01ef1c
BLAKE2b-256 cb6f25646247d22fb68581081a69ba5f57058ec724aebcdfba5051385ab6fe31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20702c7d53deebdf0792f063785b28c45e0f50c8398e85826c9302a8552f63d9
MD5 78555b14ac6912583af67d3a384fea9d
BLAKE2b-256 cbd54d9deb50d6fdf24994bf5b6356b5ca9c3831fbfa2e04ab5d3b3706422e79

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f54111902c7dfe2d8a0458918e6c0103935b423e0a1bf4d186263f3b8dc113ef
MD5 409ab8d3ca18c877c5a46e4a3bc75eba
BLAKE2b-256 814cd51881944d7954547d563f760a16e89ccb939f6b33f229a9934564b01170

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac7094c3ccf4ae0aafa8667611fd539defbbc60acd2f90a410b91104d6e93006
MD5 598de26c3aec1eccf619e41faff6ed4a
BLAKE2b-256 0157cc71dd871774242b6bd129356d93448eb99b933f3657866052b751d08c39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a9c11c50e07286197ed49795cd5c68eef60e876694af9fd6bf0d4c182917fce
MD5 500a31531d785d41c3871220b35af42b
BLAKE2b-256 b1925b4c534fbc492f987828b5d7c58c85d2f7893b5dd029365b5109c4f4a611

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d778041738ed7e7f8349cc0b7aa228dbcb22b53e8bcf6e31bfd6f792eafb268a
MD5 2416cefcbcebd8d393fccca2c526284a
BLAKE2b-256 a2ad541158d2f8a2de111c17902298c7dc59783e056b6a612416d866141c63b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37c64af080a17ab32f08108db01735ac3054f45f894ba1795b36976d9c2166bd
MD5 f8eaaa58302a60cddbfafa5fca3d6ba6
BLAKE2b-256 9969df8223b292ed29a76d73068354eeee33611753b3c9546c90784889c21be3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a23b071ac6408815a6479abc3870851be93637a33ecf4f58adcd0be65874b8d8
MD5 885303626dd3ba54cb680451a6148973
BLAKE2b-256 e51ec9fb1a872d8dae224e886090c56b6e82770446274cf518a883551414241b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06487df24f6709ac2be6e25f657e2789250f6da3ce703777418a785d674fc830
MD5 eb9504e60d09a9dca8f69b8af93679b0
BLAKE2b-256 7ee20d64bd025f7a2ccd454de1e629ee99427a4ef0a6f598b451bd4d1e1b3c2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73975cbd537791591ba299a776c7fdd7191d1fc4afddfd7cb917c8e55344158d
MD5 1a52d5ec72d1a582edcf5f6f4ec8c087
BLAKE2b-256 9f2c1d4b4c822dcd14a791fa2f6f365b5d76ca80fa11037d464c35b0221642cc

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f98de9b63fb52499c434c0c1880dfc13e033bbc232993cd433cd07b72d65c88
MD5 da5d0ae1e575bcc37d1f994247225026
BLAKE2b-256 71058ed3837a5587d51a98a1c3916b12a6d432c5c064ed97781794db1f36704c

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp311-none-win32.whl.

File metadata

  • Download URL: wkbparse-0.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 137.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for wkbparse-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 17317d64f9bf80714ea55b269347a21fa189ed5df357bbd7ae0c58836d8a2b2a
MD5 5420f635701302528f0c95d3f4b95ab2
BLAKE2b-256 b58119876a3f953c3ef8e427d51aa394a5e2b7083c42a4e0d5c3c9fca03b38f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 435902d1c4fe22a74121d64115753856f88c79e9c582c870c4e17a9ce9a9a338
MD5 4c1089d52aac125eee75462fa5a8ba6f
BLAKE2b-256 224748c8b589c62eb66a012e832fe0c1fb5a7bcc8b3ea164fcfb5041b8ea3e65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e5a084ceecb8ce844f28019585c9ffe38e2b147d751a033810c9c1708c8c765
MD5 956037e4de446e59e989eb4d455cf622
BLAKE2b-256 edda2a89cd69c2c41e2ddf593ef90c95fa9ac781f5791e3db64275399f3834fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33adbe9e513f7851c0390379f57d3a1a0a6cfbc78e5080c20580251f3a6cc30f
MD5 8bc08f03c1ccd37d22468cf9ebcc1fdb
BLAKE2b-256 8952728c089eabe2278b56c1a846f753c114110d7d8a54369885cd7b05bdccc1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b25da2f7072bc2c6bbf6066108a2a6e8db097497e02c4767da614d05eabdbea
MD5 4bcc448d1745361db9bd490c57e61321
BLAKE2b-256 41bb8379c3911985d2f021580eb82cb70a65873a9a029768fe29abd95e7aec2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92bbd1094fb4e24efd3066d0220e24cc26f4858cb26f72c22575367415a4b486
MD5 f783531f8857a6fe07cd8a45feb06a6d
BLAKE2b-256 efec1310bdef9908acb11e4fb747baf7b18c56057f626e7d5a886bcad1b68b62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b02674c87f0e0299c675d90dc136ab41fb6e5c14834953f92e48e5ebeda55da1
MD5 8a089ceea7cfe1d9c8166bcab0096e02
BLAKE2b-256 3d52b5f2d15fddae97c8dc458aa510ae71ab2515fb534985930b0f53710758fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e565894d2caa597adbe58de214446ba56f4a944847dadb6dae5bbef16fed2ff
MD5 1f7567ee7321aa78f1e3d9748e007fe2
BLAKE2b-256 c9be4ed085024a5ecd8b28118a08bd2e7cb3c0d91f8f9540c78c3a9278b13194

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a490dabd869bf217560def1e516ab988ea2f2ecdaf6b248346a386ca93eb9cf
MD5 0e26819448c97dc7c527701c671e2e86
BLAKE2b-256 755aed2475089fdfc0f1de3c03397691c89b1b40c4b9e015c6fdc5debedd6f1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627727485af28bb5a43854fb26762364179e7acaa9d910497ae437070ab65c9e
MD5 66fcdcf13437e2295fd7e8417e0ae118
BLAKE2b-256 9b839a168ec06020d1178a8160252e16fccc021c99e6d91c0e46ba6362f3d8e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eaa2f1711acfed91258a101e5a6511755f6a1552e0548c85be68b28a1bf26393
MD5 4aa1df0db22f2b990cc291db6cbc3533
BLAKE2b-256 2cc294befd84c429f71f646a1d77c3fab0713bfb0d8ecd8a14487b493690b63c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a884695874d6ca12cce1e0ca61d16990e52622705cb65aea1b48c29e7291398
MD5 0a6eac7e4f17e840c78d36240dcffffe
BLAKE2b-256 64a86bd17c5b2c6148c7838c59e70a4b21fac786f10d71715ccc96325c9badeb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 902c4afd5a09ab5516e7c779d6987f1a6d8274175b8e65e72479a0ee87cac9c4
MD5 3856f9bef22cd2563fae9586d890e3fc
BLAKE2b-256 4fea6ef9a1d2d31fc42d312df4748d844d75007a0dd2735500c21ee54b6bd5f1

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7954ddce9d6e5414f2af575877ddac3dadbe5a39aa108a526e2b59fb804a550a
MD5 af83d5188498c4e18d3778c9e6e25fc3
BLAKE2b-256 a3407c30e9ec5b6587f38f5e3db3da8bb16ce858b36916083a2159f126b30808

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp310-none-win32.whl.

File metadata

  • Download URL: wkbparse-0.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 137.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for wkbparse-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c2fbd5080359c0c4635dd633d3af00f568df32d800d115bc4ad005c1de107e48
MD5 8f9a4adccbdb48500e8ed14f5220a4d9
BLAKE2b-256 3e8904ef57b91eb8163f51897e63c7d6229bc8a9631b1aa76a2de1033030d331

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c66209750fe884d8a52e9bc30efcba1644aa2b0e3715d9337e6acf4daaae36f
MD5 7a9e264aae4e7def8bc9702fefffe44e
BLAKE2b-256 9ca969886c27b5656a6ae947fd635b6541bf72eca908387b226c650552271f2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b0c1a5c065ff590f3695d2137f7d603c85504799845b6a72081a590ff8a6486
MD5 1a59d762159f778ce366313d4ccab47e
BLAKE2b-256 f49c2f880fd4a4cb7157cd58e6edfe56e98ad033d81b1bf404eb3b0f9143a492

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08104ee7205c39f2916fea83b05f73a4d4604962797622b863fc2a9a839c6fc7
MD5 c3addd536e06d309ee6f891d96c287c7
BLAKE2b-256 f9f8903a6bfee282bc89f96d1ebd6cafea3e58ad47fd935b5f1cdc4415342d45

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46b2663e0885352f632ab03bf9905e4cdf0f7376a001ebbfd3185db6136e59a6
MD5 f3cd6d6fed280ec405fc7a6cc8e23ff3
BLAKE2b-256 cd933644fdd168ba7975044bdc3e18985e4a574c10a6ba3ab3b3631092c481f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ef2d4c444fd06125ce263ebdda72ee85eb616cd713da05c6158d2c777d985cc
MD5 9cff659a68b0770e9f30c81cedf2c004
BLAKE2b-256 26a61f48e31e17b2d852fc32682a9124ca7d02e8ba3516815acc4242c8bcd4ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c1f163d67b6dfe39d4b92809e7dc458557cdc895dd53a7165ff2699f8322112
MD5 e36045258ef58c202c91a70da5117443
BLAKE2b-256 af68ca34d11e64fd2ad69099d41d23de59eb663af7f57036f5ca0a9794ce8231

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82169529253e40b6e8f38a80fd08d8710dd5a9fea04823a48dba494f3bd3e1bc
MD5 3e1e4bbb57e180ffaf20157de8c3d8d7
BLAKE2b-256 5187bada5b935e25fa0c039b4647b7a5c9740def6525c49c8ce5e2c5d1bb619b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efd15d3a04b08e4b565a20d97e4ca89475ea2a87bed48b460d4a7e2458784652
MD5 296945ef3003e756dc11e72112be5bf4
BLAKE2b-256 507866efe9879ca0347822b7eac296eea5172d33fbd545bcb98917bc5bbd7c07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20c0d81e9d954d92a6540e2f419dd070d183537e90a51c1f2005cdf12298fa7a
MD5 1922839dd6c0c32281ec132907748dfd
BLAKE2b-256 315bb04cce9bdbbcdf84111f8d6ead826f499216e6ab275051a9c3ad45b08f38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60372274c0a618e1ebae14a62d86f6a6d01a19d8d05a6763f272b7b82a58ec74
MD5 696b9dd52bd7deb2285b3742d79b9076
BLAKE2b-256 43ec0fb5b7d0695e501c9efc4b2f59dae07b854e6778ab31d196afd69932e027

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdbfd280a0143fe3e9d503b0b3d78c659ff5faeb1d2bea4709eae56d1fe80951
MD5 00ae7e29f8176baca088455cdd4bf439
BLAKE2b-256 0acba2dc96f915d8a0c469de7e403a78380b45ce18dc39b663d7e32d614a18df

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 124d6c363251cad65945f2eec21f0b6b8e45429783360f27758837a1b6eaf8f5
MD5 53c5b9182c96347713e95b458416447e
BLAKE2b-256 91523a217e232895f3af8e422b3a3d11b85d135b36a467bdc8f723b480d8f866

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp39-none-win32.whl.

File metadata

  • Download URL: wkbparse-0.1.1-cp39-none-win32.whl
  • Upload date:
  • Size: 137.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for wkbparse-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3bf28fd2a6d9639016fbff53a24525e8db81cfcfc6d3399c82592c162d3a25bd
MD5 0c3a950b8d98730868626b5bb2f4ce8b
BLAKE2b-256 cdb0ac0541c74245034cb4a68252537ce76fed813af1896d8894776318f21137

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cc999f304534676540c0b296a11219ee285115e82bd731a497991b898443dae
MD5 0f46fa31c97fe0f54f1a50d7c6b18420
BLAKE2b-256 5e0e0afe20c59d45f88e05ae7aae9972feb2289fbacc6d5ea66fcf8f54b7979b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3a6e3c1933fde117f3ec7cbbfb10c191622593c3963962f972d8dcae48d646c
MD5 d78768cafc7439b5d28d76d8d1e81349
BLAKE2b-256 d079c626a51ab6e9563a7bc58392f5e58443eb8717733e749d10884670f1fdfa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9461931c86b9f9c25b8fc34e3d9d4adc1500afb6c265ad05bd81c6ea940b3504
MD5 64799d1a1ca768a7b6c86a628b557f1b
BLAKE2b-256 c9e34fd80275ab762ce11cdf16491ac06fb2c35f661127131f00033b699896eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7452f095ef9597182177ef0ee86bd34a2cfe5f965c17f544233b5530c50a61bc
MD5 754f6f9f14c31b9707159671cb0f2c78
BLAKE2b-256 00ed09816523869c31e58f6a5ec9dbb75950ef46eefd83e8a3f083f23f7ced34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48de940d6a2225c069aae764406822417f3df790f789aa54d59ef69981bf1024
MD5 48f3ee0de14ed6219b67e16fb6d72b68
BLAKE2b-256 84aca592acff369aec6dd7743027d8dde23ce49d48e53836646563d7091b11ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06041329aecf768a6636fc2df88459b48e1b980b7f8655482eac303c7c1ea2ac
MD5 016937d25dc34d06691e0023ca5eef72
BLAKE2b-256 a63987844245cee3513d38b19fea76717e58857fa5ce44176ac72340fb752301

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61e9f2cfc8d48e4efabf5f1f9b4af259a835c1b75c573d8cd2850162d0e29074
MD5 b9ada42acc4b96a578ed00f803e96658
BLAKE2b-256 ea7da5edefca5a811b87145413a0a5b676b0100dd68f75e600aab44407f9b247

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cabb7b38a63a28348ea1cd7a65a2c6c0b78467b391326286fb7df3ca602a945f
MD5 bf7c7730c7996859457874d6d0f4e900
BLAKE2b-256 f6395421faa87f4667bf4ef38a7a5e521a4b992a2404caf81896751a1aeee9f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9631e3344f65d1ae440e1515a60b42d41d7d4d5e180df6fe161367c87fcab0d5
MD5 3493de165ad6c16b484163da51e9c4d3
BLAKE2b-256 0f1327c18956e44192c5812aaaccee0099603c6b2840eaf29b3d763cbdcdb3ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9109bd4f0e50cf61ab17a2c4849dfcfab5db7145512ae5a90a85c3b600d8dd1d
MD5 1ee9ea8e7b8b4fe9d11dd4ddce65393e
BLAKE2b-256 2400e870a2f52b384b0a89c7e0b496cc0b4a6fde380339cde3b440198b1cff83

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a24f0cdeb87542fb7dc9936d1be71bd8350bfa726e5b28a370678b932c345f2
MD5 a10b76935979671b77c5ec57895c0588
BLAKE2b-256 00c91dfd1fe53b684e107394c49c2068158f317b2972ddb5656dc6cf1b1e65a7

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f17c501915b1f450c321a4793e318816a3a202cc9a7c2c4173a4eba76bdb730e
MD5 6640aaa880088299ee12fca5f18e608e
BLAKE2b-256 a77feb5c59a730cd5ecf33559bf6e723493b0b3840c94bd76e7a8d5c20404295

See more details on using hashes here.

Provenance

File details

Details for the file wkbparse-0.1.1-cp38-none-win32.whl.

File metadata

  • Download URL: wkbparse-0.1.1-cp38-none-win32.whl
  • Upload date:
  • Size: 137.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for wkbparse-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 da3d6be7e82d9c442a96298ac9272062cc3572788219dd70f9b1a45bc9962e87
MD5 29be51458b20f98d8bb10c79c87c2b24
BLAKE2b-256 9a2e26501ad837b23fdf2d2bbf72d29dcd8e30bf892d5bc93adb512740b98e9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5d5ffd588aeca88311b806b2d08f4e2e55c646efdfd467e41f7c31658aa84f7
MD5 79ce91a27568f088706d7f745e2d14f2
BLAKE2b-256 72b1a100343fb1ba669b50bd5214f6ed301c1386431eb28821f8c4e10bebe96c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8efd5db95b79966cd15a6b2f8b63081a93ee006fe8009f1a204e9398b5864a96
MD5 abee336c9a73aa883deb0550abe7a491
BLAKE2b-256 27dee88095449de49a0b20ad5f697fc0bba243452c9554891acb38a0273d7a94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6af9428486abe1b379c3e4d52b485ab7e285f4cef51d1e4420bab479dbf69c52
MD5 c29f185d4082eff1dbfb442e068c42db
BLAKE2b-256 7dd83e9902d062bd66687ec07477f31253c64cfe75ca6c826dbbd75a388930fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04c47771c58a77550deb2987de3680269efec247bdf91ded13060d32ed243e62
MD5 7710e1696575f47b56f99f578bb8a47f
BLAKE2b-256 7cc30f78dc5cc4e31461268fa4bff8219a0718e072219371569b87f8bf8b5128

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f71ebf660189aa38d3ec5ec268e7f3adc28217dd60d0a5df7fe6f3bb84e33b5e
MD5 e0028168de20a76cb21cd30324c7f465
BLAKE2b-256 79b1c6881c299e69219ca905b4e6a78c46f10f32d18d4979abe06dd3b25d86d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8e97649626ecf77aadc7d2c4d09fe4a84c864bbf43495234ef308a4605c912b
MD5 6ea98cb3fc7a8fc4e17b057de21eb391
BLAKE2b-256 d8ac7ee48cbce467584520fc41a95ac24bb373e67cbac547ff4bae16cbf138fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 435f726372f50c6ea6d1b7f1c7b1737aa05db6d5ae7642ffcebcb2b43f54bad8
MD5 ebb079a62d55a545fd7ffc3f0638626e
BLAKE2b-256 7cf32a92ae4daff5e5ac67c5e964d6bc5c223af05f1097ce431acce31bf0786b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5878ec3365b133160d194abb9e3b337b9416265fce05ace053ecbaa11b83561e
MD5 00e82783d93bfbde10e1112456ca0d41
BLAKE2b-256 8869417f92c682c5189b9e41c35ef9a1766c0fed556333c640b288f494af3bbb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87cc7f1d4893156fd8517b28619b81fc6459f8de1734f5991fb37dd7de2447e9
MD5 db818f938f248f60fd9e5bd1424252fc
BLAKE2b-256 ef97a3e4a30439921b00feadad729d2e074843bc10e48c9a097c307a5cdf26b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wkbparse-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c2496bc5d4948e0e87bbd7e57c36af7301298ab6ff7a32115a38123a9326093
MD5 bdc3edcfad69cde60c04fc32b00cf445
BLAKE2b-256 9c3e9186064db80a2eb588eb9f2278793563b3c54b3f92b75628581535ca5e36

See more details on using hashes here.

Provenance

Supported by

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