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.

It supports reading and writing ZM geometries as well, even though GeoJSON specification doesn't really recognize the M coordinate. The M coordinate is simply output as the fourth coordinate in a vertex. Respectively, input GeoJSON dictionaries with four coordinates in a vertex are treated as ZM geometries.

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.9, 3.10, 3.11, 3.12, 3.13, 3.14]

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.9.

Tested on Python versions 3.12, 3.13, 3.14 on Linux x86_64.

Reprojection

Install wkbparse-proj instead of wkbparse to enable coordinate reprojection using the Proj project.

Using the reprojection-enabled package allows one to pass in from_srid and to_srid as integers corresponding to EPSG-codes to many of the functions. The from_srid argument may be omitted if the source EWKB bytes or GeoJSON-dictionary data already contains the SRID. TWKB data never contains the SRID.

Pre-installed proj library must be present on the system for this feature to work. See Proj installation.

Using wkbparse-proj bumps up the package size from ~250 kilobytes to ~10 megabytes due to rather large size of the Proj C++-dependency.

NOTE: Separate package is used instead of python "extras" within a single package due to extras not interacting nicely with wheels built with different Rust feature flags. This approach allows us to have a single codebase and a surefire way of selecting the appropriate package to avoid downloading redundant large dependencies.

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
  • Reproject geojson reproject_geojson (only with wkbparse-proj)

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 result dict has the following shape:

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

E.g.

{'type': 'Point', 'crs': None, 'coordinates': [1.0, 2.0, 4.0]}

To reproject data when using wkbparse-proj we can additionally pass in from_srid and to_srid

import wkbparse

twkb_bytes = bytes.fromhex("610805d00fa01f50")
geometry = wkbparse.twkb_to_geojson(twkb_bytes, from_srid=4326, to_srid=3857)
print(geometry)
{'type': 'Point', 'crs': 3857, 'coordinates': [111319.49079327357, 222684.20850554405, 4.0]}

If we already have a dictionary as above, we can reproject it with reproject_geojson:

import wkbparse

d = {"type": "Point", "crs": 3857, "coordinates": [111319.49079327357, 222684.20850554405, 4.0]}

reprojected = wkbparse.reproject_geojson(d, to_srid=4326)
print(reprojected)
{'type': 'Point', 'crs': 4326, 'coordinates': [0.9999999999999998, 1.9999999999999996, 4.0]}

Note that from_srid was omitted in this case as the input geometry already had the crs field. One may provide it anyway to override the crs.

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.2.2.tar.gz (58.5 kB view details)

Uploaded Source

Built Distributions

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

wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (451.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (479.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (516.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (406.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (264.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (230.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (257.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (255.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl (476.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (514.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (404.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (260.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp314-cp314-win_amd64.whl (149.0 kB view details)

Uploaded CPython 3.14Windows x86-64

wkbparse-0.2.2-cp314-cp314-win32.whl (141.3 kB view details)

Uploaded CPython 3.14Windows x86

wkbparse-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp314-cp314-musllinux_1_2_i686.whl (476.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (514.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (405.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (238.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (255.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (218.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (449.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (476.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (514.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (404.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (260.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp313-cp313-win_amd64.whl (148.7 kB view details)

Uploaded CPython 3.13Windows x86-64

wkbparse-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (476.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (514.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (404.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (255.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (217.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wkbparse-0.2.2-cp312-cp312-win_amd64.whl (148.7 kB view details)

Uploaded CPython 3.12Windows x86-64

wkbparse-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (449.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (476.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (514.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (404.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (255.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (218.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wkbparse-0.2.2-cp311-cp311-win_amd64.whl (150.1 kB view details)

Uploaded CPython 3.11Windows x86-64

wkbparse-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (450.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (478.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (515.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (406.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (238.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (267.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (263.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (238.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (256.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (219.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wkbparse-0.2.2-cp310-cp310-win_amd64.whl (150.3 kB view details)

Uploaded CPython 3.10Windows x86-64

wkbparse-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (450.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (478.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (515.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (406.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (238.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (263.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (256.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (450.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp39-cp39-musllinux_1_2_i686.whl (478.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (515.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (406.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wkbparse-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (263.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (238.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

wkbparse-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (257.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

wkbparse-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (450.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

wkbparse-0.2.2-cp38-cp38-musllinux_1_2_i686.whl (478.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

wkbparse-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl (515.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

wkbparse-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (406.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

wkbparse-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

wkbparse-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (263.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

wkbparse-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

wkbparse-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for wkbparse-0.2.2.tar.gz
Algorithm Hash digest
SHA256 cf6b5601068426534b338695273c6d1ecdb2d41117711cc93e854e161c8b29b0
MD5 5f930d331c3e8df4319c5bdffa0331c1
BLAKE2b-256 545b00cf328c22ddee8286fb95bd0ac8f7c87e86c584b508791176898a04ccdb

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2f677cbbc27eb31e7f2d1a6e9da88c85beb24ba8d9d45932a4be70de61bdcc4
MD5 cea5c53be1c7973bfc00602f6986d8e6
BLAKE2b-256 570b0b579bb501f273204795646406baf6ef0b545426c1d800e5c0bd286d8511

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 144a44a55c9dcaddca5a59e6d31313e9d30180503832c8cf9aa5df4b1af4c471
MD5 fd34f6f65c1f820bc205b09196e20a2e
BLAKE2b-256 5ca0b0154ff956f85722273cff37ae47078146403a10a9b57ca9948898363c41

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eaa3ce76cc4fe0b510a2da02a8aa10f63ec1eb07f457ce64a90467fe8f9faddc
MD5 46970c2de13fc7fb834ed08b30f4873e
BLAKE2b-256 91421e315cf7b8c6739d7071653e7673c79776114f25b4982edd87dedde61ba6

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c56f100f696ef40e4ab57e1444258e4b274b2c4ad02b689d621bcc767856a905
MD5 176aef93f9cb86968aaafb7eb4c99c47
BLAKE2b-256 010fe5943cbf46f4e7d6c8ea7a6280714e206ca483687e6f771cf57fccc8c53e

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de607321315c2b8df8c2a590ed577bbbb89a83b6b8cc261d073715cdc4dc94ce
MD5 3597c5f16f51800bcb43da396e0c18c6
BLAKE2b-256 2bf39527f783bd88618c7e990f4e99891e4f1018e64a69ab223e2da91e7a79dd

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67e8943bdc208abe6426da145dd64639b43499f9a3e716b3bc762b68d353e68d
MD5 941ed4ee0072d3aa8fa4b53e87a2ac3d
BLAKE2b-256 cc4bc4740f234bcf87ced49225d4d16979f8cc0cb0a6d971de4d1665f479d0bb

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d39541dbc9dd97fc198285f5a48e39b2bc9a43fc787679eae3096ba3f4811f3
MD5 a7a8dcfa2a32fdbb094368c0767226a1
BLAKE2b-256 d2d87c9f2e8b7802b3ca8011627d5cb675556c56f1df993cf10c3e950c318071

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f53d3501bccc210c45fe3aefcef8c5c6c0d3c0681bd2c5bc0d9da561bfdea53e
MD5 bf118740ca87b2d868f1e56acd442439
BLAKE2b-256 de6ff1ebb7a66c115651f59661fd113baf7f8157a2244f99276e18ad7e7b6c48

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54da25dce407fba0b65c8d2148e08ec539abc6eff133ad352787ef2111ad31e7
MD5 7e1254eaa319ad86b34efde1a2219364
BLAKE2b-256 5ada1fdae1f56d784c70460331c1aef3421188b0ece1d62cea940e37474f9aff

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 470e23ed495085973fb2f00954ecdea31db2ca92da0e642418a3d1963849fefe
MD5 e7cbdeac13aa562db83c737df38ea6ae
BLAKE2b-256 d1f8c7c95c7485b2edbaabe38dbeffc9a0d6c57881eb935a38788980a889faea

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 728eab5e7533cc3802246e55a8e3e4526c9cac01e7af3b1a0b7c44ff69e04a81
MD5 c7955f38ee8c7721d9f4b666fdc7fbd9
BLAKE2b-256 0f565aeec85ac033826a342a6ee269c45d5d4259e525c7443563efb3d72eec9b

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1177dfc197bdc2fd441ce502e52149ca89aef879a3013815d06c2b5c6cf0cecf
MD5 e28300a60cc3a002125b17d2acb8d9da
BLAKE2b-256 7a0d7ec2a071f20091cd9e1cd885aab061888b5e6d73b34510df224056b41621

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e0d47200f8954c3c561b813b04489370facfc11b2e25ea37185439df760ff98
MD5 3630a0486caa52137436b4c62cec83ff
BLAKE2b-256 e34f6523a95f50c645be238c7768af93bd44b6000fbabc43b546c20de3474ba4

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf886d809c3046dba4c714fbbd150d0eef70c9908c992650b601412d985ede45
MD5 06d5fa75a29b9fa6440a569292b529e0
BLAKE2b-256 395cdf2a6d78cc05811ca28401315b13617cc73ffaa15b29e11fc6669a8ad33c

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f0efe94d7106ca332a7b1741d157d79cc79ded385df237dfff95451c29a4ed6
MD5 b273a112a6eca856fbf2b373fe044325
BLAKE2b-256 b6ed38bcf2ecf26ae7c94c85566e21e729718c1d0b138fdf4b298cd1078ac641

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a4ba9e697e0857962a30e9d00003cdccea1d014f5ae65143801d812f5372fe7
MD5 fe2a034d9bbf5f0463660895b8792332
BLAKE2b-256 27639acd511bac73d911e043531396fe1a842235e9f4b1b2ab1fcf9fc75a2e88

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11125edd234b1e5095a8794460b76f80a12cba6ed939a81f385d0259f4fbaf3f
MD5 7330ef6d33e7c8b5a2825b05ed534f1a
BLAKE2b-256 931f0f7a2730b1bbee835a5f52e817de225f6499789ccf3f9e92012c75a7b804

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a52d792be5657a761104532bc513219e42d20409dcb4adcdefff18724bbda961
MD5 090c07e8719bac6bdc21450eadde6106
BLAKE2b-256 5c7546fac0ec5c75884a06501e921ff21cec147f60810f7696d8f59ed3367dc6

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5923754648ba8d6c96ede57e3cf874e11111bfbf7c76cf783ab2dad081fc7746
MD5 231c15c3f6456f9568a72547f7b28454
BLAKE2b-256 a7dc2d0aaf5198c6809781038c4d7c1e98bf5236cd5ee0579e4f73e1d7c82f35

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4086bcb685e9cfc3016dd89a0bbb1a6524b24db4b1477d97cb17aad9c595168
MD5 5a7ad37a786d71b1556faf6b497507b0
BLAKE2b-256 b6afc2fb11a49ab7584783f0049100808c75b88ff1fc4dbd71e4ff7906b02f81

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 294277c7bfb87d1a347da6f51b0f1839bf50bf80d7d2d45d2f2a79ca7ae8d7a3
MD5 09b6178a11a18fe23503e379a468ecb5
BLAKE2b-256 d0d8663e98bdcb2ee4e954c3d458f3e61254d11097de5ed47a69e05e865e703d

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: wkbparse-0.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 141.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 67dc9fb72f539c04683707f1e0a387da5ecf61d887ed78300e3798f52d697ab5
MD5 ab985bee554e35e29cbec12a37dd3b5f
BLAKE2b-256 071cb94ade206fcc3331b6e7d5c8f0d5f513cb4560e6c25ccdbb0aa3ad209666

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e26463eacf72f56d775efc15335d93c5836f6e894e47dfc6df0b9bff3f9683b
MD5 70c1ed003e9711f79b25302d430d2a1c
BLAKE2b-256 60242550b7fb86f47c7c9c35547da8d786609a4f01efeb9f961751b335904723

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a57e60b1a37da9847fae1952250133778c0d9892e6537abf0a33fc209cb58b3
MD5 8180f568254f87c7b1a8c33023a82063
BLAKE2b-256 83aa8c1e8492d5fe6bd89d04d76d82a84aa16ab39fc27f1de20df9ccc071d280

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36011be970cdb111dcc82a7f4a1a23f2e71c3e0016e934173806bbd6ccc64327
MD5 124f61677ebc857a41418dd4a5c6017f
BLAKE2b-256 13fdb04f15f4c0ec9fe71cff7318a666cac7dcef9b63a6b3a68e8423efb89af8

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee850903b8f1a9bbe3c5ccd7c2646a4636315aad0f724dd0b2346e6d37d77389
MD5 0465f3ec22c51ce93d4c20746a8ce33f
BLAKE2b-256 effa0edb8ea0a055387d3105fa41883c6112032505e0d97bf05e95aeb503b326

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65776c54e71f5824059e9916c366350b727ddb0ed7766a7a52fe3141eba2539b
MD5 8f997d2c0ef4a7943bae944a9af1bc9a
BLAKE2b-256 fe9d882588f9343e9f71d2d1a2925d8fae16d762f6f09059e8fcd6bc7e35b463

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ad2e08ce5e3b32db5ec440aadb5c66420d711822284a85911f970c3ae335faf
MD5 51c015c85514a121e5586398f10ad103
BLAKE2b-256 475682ed9dc2f62211a5b75037120d5a73623152f51ff5bbf5a89ec79bf940fc

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6848ede5c6c220c95cebed4ba37324d5002cdce8c764ea0f98512b651ab07746
MD5 dbf1e1385858afd6d3ac0994a3ae3213
BLAKE2b-256 625f6ddf648f4575cd6ed668e8c3cc48a1f42a09628128095af38ff28918fa9f

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39037a54604aa6bc50c20ba6fecd0b55071a730ed8b032b35bc2a1091204b1a4
MD5 d52de6912ff1aedead2918351a4fecf8
BLAKE2b-256 432f42815378fc3b4623587b695ed52b5dca0ae20ba5be778b228cafc544ebb6

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bd7be2d826f16f5134c69945e585de8856d91f5c9da66330e1eeec025003f21
MD5 4a828ff25ecf7f450775459bad9cc836
BLAKE2b-256 ed14c2ae02ad5e61fce68d6cea2549f13538519863c71b2ccef75bfcde537bc2

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 667cf63db58da5762bbe240694a3986dfe968b4c4bfd69146accfd37d1ea318e
MD5 899a9147a7cbc46c1341bb633c6e815d
BLAKE2b-256 cb6e5be0cb2680d234ca152e9c3f8413d47f22b4a2938e21ff6ab0b5aebf6d5a

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129bcfecfe833e87e16068e012576e2e1af5f4e1a08dcdb96e04631aed8abeb9
MD5 e51ce3133769d50c8e3b6dc3574e8020
BLAKE2b-256 52430845af76177c02e0ca2a3ef037f080211d1bc481e7a9da66c517bb30a604

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5031a65059333887545411e539f97ff09d844169ec612a0c5ac5878471c3c7b7
MD5 52f8c26b55314f4451df258277639194
BLAKE2b-256 eee2311b4adac091770031966891aca221a919a172c65eb7dd2f67abfe2626ed

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aab8906ad54af139ebeb4db1afa9439bf70a66847676eaa6476aeccab1938499
MD5 669b2295b6ca351891d5add04e8edaa6
BLAKE2b-256 5e8395f70a6920b3837d7b8ccec3fb3a2089588295ef070ec8888068fc18e190

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1480982390ebc205726771ed1385236f9a95dd7e749027e3a3ba67dd1a27d679
MD5 3542d64beecc547511fbf007090bc655
BLAKE2b-256 137ed0a850f41d95721682beae29940d7cac5c4212121f45b087a3286d74dd1b

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95c0a1c16c0ba4fa854e07422f5acedfa748c615c1e775603480fc88f589c5c8
MD5 43cb409314f4d2020a3b7223f3e9e89b
BLAKE2b-256 0c8324a716af6b79cc475dad861bca6b343ec02db69c32e682c4758d0b5b5bb1

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 720b8100fa0ee674c4200b79cdcec746a467e394215d95a21a446a7759baaad2
MD5 9fa959731def3049eea957d5870aeca5
BLAKE2b-256 0f4fc97962149143008360903749e9c46e6dac5c3973df918d32714f10ac8e2a

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b91f71defa159df6d0fcd0569ec26564d9514d9daed70b82ce9921327c387947
MD5 e5acca08d35bb34fdbd3889e2e772d44
BLAKE2b-256 2ee103a8a7b7b5fc4b98f9be992e1c94ef5dab8d26a545d5cd1fa3c334c239c9

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ec00da2125dfe97d161ee4d01d31c5d6db9f616ff9c0c8f7d5c4e306be55b15
MD5 f0fac6f43525c57e2ccc9d4565832149
BLAKE2b-256 ddcb940a38cdfb634c57f8f0540439448bf7093035f7997b3015220b27afddb2

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae5d9f3b9ff94603ade2ce088ed8b6b23e81f13cac3eb4ffbcb2d55039ba70d1
MD5 4826c9ced48ef64a5b536513e1b5c527
BLAKE2b-256 d0559b2082b8254c62e96fc71b6d3099fe396ad45e3e0c04b2abbe2db113e321

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 87c54fde20e182ef7f7444eba922fbb31b2ca555957085f3eb7bc0ce97ceb0aa
MD5 af86c3fa284a631558bd5a48e9cfa36a
BLAKE2b-256 bf096c30af5cbd179d4b7a552ae3cb2e9ed14261406b8ee870ca356b3dfa9b35

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e5228b059dbf43c9d1e1ba596bf4ba88d6dbea1d1552cc4e85b5aa1ccef6e2a
MD5 5f118606c3c9305c06c72d26f755e9ea
BLAKE2b-256 cfbb39a9fff89b0ff8f1ca38db518b6fa1981d1b6cf1c0bff53cbb4e0012a2df

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3419256fa785cfe953e641f8abe11b8f9972bf3cc4a409ab01b254f4377ad81f
MD5 25fde6d8fa79c01dcf84d3aa55743d19
BLAKE2b-256 bb077d973304cba42df0116149da8debffc80737a97aed4920546e0ee92819c4

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 482eb7e5a08d76aee080ea40d400244d5c264286506b89dac08715532a2acf49
MD5 74221f824de8ac35d92885ecc2d8b0a3
BLAKE2b-256 c5e55f192bc5146bd2e89c9cf422224713e1f6cc7839fb50d443868d1d9b38f2

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c7622e5be76099f7db7d6927ebb570dcda7014882b5cfd3e9b3a186b46c069b
MD5 d023bac8ad10d43487c2f851c4a9f0e1
BLAKE2b-256 5fcc14c98d1ce6bc2520dc999ebfd2ccf7367bc8991de6c98807d26176da2474

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cf4158753868b20761ab895917550a8ebe5e486f2d29a4d7097d532424ec580
MD5 14e899a79a147f567b899d3b467bda07
BLAKE2b-256 1d1c843d2eb4cb20df3624ff081df86d3a30bf691bfe2fe576b357c950d6a4ce

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11d3f6f73114698564dae84a4f1843067337d6661ab0a3b0a0818713a70e82a7
MD5 241fc3546ac7bfe13b9444e59016d387
BLAKE2b-256 cc455c610d46b9e03a8853eec32ce454ce09ae952a0d9273b2f1fdf7114ffcc9

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1a8fc0e2ef22b904f05abbd2d958f5c2564c6716e2e48d26fd7da220f5facf6
MD5 97c1d96e493698736ff9722e1cb0b595
BLAKE2b-256 c417fa2e1713fb650097af7af8a7b998190d517e9f7904fafb0c816b6ed0202e

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 703db5864d09d61fb6f2baf17a3aa72a4cea4a808b58c4b302660fa1c60bd84d
MD5 e34bd176dddaab67e834e8edb88c0651
BLAKE2b-256 aa9e90f04b1be6df0f64a5e1d54b123b053d3a1d5f50ed6142b4d240bfdeb9d9

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c034609f6fb18e6da6f408f06a7e6df8d0b3020a7581d434a7149ccdedc47ceb
MD5 6ad25d2de169e170a15884a100169c84
BLAKE2b-256 23e5960c3cf1b81f853b4efc290dace8a3d63f957669dbaddd2054462b40ed40

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de3a5d04f1d0a8eb6c4ec90ec3952d3580c69cd2801f4a6bb28fe4e45fea907e
MD5 12d916e8712692f7bb05227e3e211e00
BLAKE2b-256 2e021921be7af8c7b495a2936d27c6a86484d09e200d15419c80aa1e9bc918fb

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aec50f0b238ef411d7c67151b89ef61d540489bb3e17534f7c078d99b5e3853
MD5 b90afe2e0636014535a5cf92ca09e8f4
BLAKE2b-256 19f186cc6d0a2e55d06257a478d83290353c3f2fb612d4fd5cdc0b4340d69c7e

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f50363e3cf41ec560b5cfda2dd64968ccd59fc56be71874a226429af6ffe7e63
MD5 4f749b8f5761ff5185c94c650f9f283f
BLAKE2b-256 cf14aafe0bc316d81fd9b01c0b80ee96d95e44c77816095a1775a5a81108e6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbb268e2ff683189953ad62b96d8ac1aa155105687c0127a4851e0eb15d530f9
MD5 02b6d3d622c76d586206886b3db8eaf1
BLAKE2b-256 d3256fb75937c83c606bf28e1939f7f788aa29e948e399c49740ede31064e127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f3693032d5c35cd70091500e436103293d8a2c50539ee8f2ae67b0af94798a3
MD5 b0a18136f176dfab2d729fc6705b63c6
BLAKE2b-256 8fd749750504fccc0122c05e6064144bca394da624b438e02503631371b61d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e91a1b1ca1132976b40f85d260c2850f26709b4dd95ddb80fffeefd3ecd902d
MD5 3bac12cccdf959e39e4e557e229d2a35
BLAKE2b-256 547a7826a3d3a42627112f59b861a331cccf992ec39371d38305a90935376933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ea77d157c38e9ed29558fb198ab0c1d8e50d230df7caf70abfa25fa7df73be1
MD5 acb8f337129be07fcd38c9f4c3125e11
BLAKE2b-256 1b4a9c9b21446d102c66f3cf95446e074d8b04482bfde17191ce67a80a4dff05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39ea880b5f0fb624d3464d693ca5c52adcef422becd23d49015ed679db060fcf
MD5 60a25019b92e492d32b4bef48210fb9f
BLAKE2b-256 575c42304ae36f4e388eb52f1310920a4b681c334165b9cd9d831a3779fce1e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03b6d773f2be39e6a1f9c0d5f9ce6c8f449af38c6bc77796c3844ab9e3f0fd47
MD5 adf019a69bbe074078767123f37d4179
BLAKE2b-256 6264fa9e3148608cb792a761fa3407970366adf48bebe2db59d42fb1c9a5b9ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd1202f712e726c094f135e40bc4bc68f02f141e264a7ed838ead3c7cb5c11fe
MD5 5b7c2eacf86c55db240c6636274ad7ba
BLAKE2b-256 d747f8f75896d41c07c439bad71c5995306f38db183754279f051bb13894038a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1720a1a8f72ea217625ac9fb6d9182f1ee8dad1def1e4e9599317ea8b3cd1766
MD5 d5fb9dcf7f578297d249d1159f9389a6
BLAKE2b-256 c354aea5580ba8f602ff87f955e6bf66e8a2850b2c01d74599be598938e03c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b49a7649858082284855b2405d7659004c0dc4790ecade8af33dd43f9173cce
MD5 c49d9f55a1d05fd29038cbca9ac1f16c
BLAKE2b-256 cd73c1188cb58a7142dd1de1e2892256b91fe42eca476c36aae53a8aa52acac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fef1482eec1533111e5c456905f16ee13ab7cd2bbf665764f412ff39b52153a5
MD5 7a51d8cca17a31fb5a0aa7a9a76e989c
BLAKE2b-256 5901066019e2380d43d20f6b73d7c60ec0445f315540d1c6f7178174d8e5b4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97535d163ab46692fdd41c140ecad364cf87411e87c6efda9cf889a4d37174b4
MD5 a6a1bf193b0c9c7502058514e8f19ac5
BLAKE2b-256 e9687c25128a0f378ce548d3bdefa31a8b05dda4b7599cbcb5f1870d6cafc49e

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48288608464c0f21747e0f6c2b212e33dad1317f6fdcf96f6939d48bdc833c8d
MD5 2c7085797e49e4a844c13c216ca2059c
BLAKE2b-256 3090960e1466a97343ff2940ad740e2cd02c1767187ad14bc9ae11ca548a14c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1825aa69e4a5a7b70dc3b0da9ddf99e1d43fd719849f9c6987945497d964e6ae
MD5 007870f2772ce4ce349347ac192d51d1
BLAKE2b-256 89b6f68ba54b8975d06a3b767a701f7c2a8b6f1a184939cba752f3eb64dfaab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 743e8f1f4b73bc9d9d70ef60e7630ba235e91f4f8d7dfadc3434f6feef6ff357
MD5 838e7c06bdb8ffcc42bf280bb358b650
BLAKE2b-256 54381862d6386911105df185f79f6c4aa841586acc43c8c6ee134daf0d7a8c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 906301aa5670eedb2bb69aedf259d6aee46c5086e77e33192ae2d6c555e8a881
MD5 287757b8fa6d2d9b0767240d73425a6b
BLAKE2b-256 19c46dc0561eb782c02a6b09b90f9f085810ad9d3c15abe08798be5a5e17b107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 193d5f92bbe5bb06b155ed74d60f33346ba28e694baae8b532168bd44c66cb26
MD5 1b9a13b5fe7d62d6b0b8e1839d84728b
BLAKE2b-256 e980ae5a8ac01670478f16db414a73e940859b74e5290629bd3d8efa412a684b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31addd34bcae48699a75e296a8c1f08a71ab14b7e5ece632ac58322e2f65189f
MD5 b66140b4cf1c42768db98ddc4335c221
BLAKE2b-256 6755a79879869f3b7c74bb5b1069f4afcb7f90357d0cff4b56f6dc0a5d17bb5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e124861a88958f3ef676864764d9a098546c8c3fb8af76f24a3f10aae21e8598
MD5 197308d314032e42a32aa50ae4ae39d9
BLAKE2b-256 909ae53ffefeb8d61746449d62a659c1fdf678535eee84ee5baf00c11bf03c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b584f5c4d7d51a4e9ca62994bbb77b089df249a1e142a5f70932da1b439cc29f
MD5 65253f5e6be78792991fb29459657634
BLAKE2b-256 82277072140c03a178abaab89710cb36a3ada664a1303e9721b007c229bc0754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 151abe8bc9543336d76ba84ad3dbf0ec0d493efc87840f562e50f0e8481553d7
MD5 67885cfaa86aed8393d6c742784aee1a
BLAKE2b-256 6f02ac77c2dddc2abd827cd61f92454e7e59450316a27a7abb42296a5194bd31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b221da080826152b3392be4b0ee38e50b9b56bb63bc512f57d6e8e5aa32a776
MD5 bb258f5ed28b089fffa092eed71fe831
BLAKE2b-256 57d20dc6a21d2956dfd357d658ec1ca45b4bd933148599373b6e259f558084f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5397fa193eb6419e244291240e857d7b9754247a7ce5783a36b6042c097ce620
MD5 ee46b08ee30db19dfca6effe3eae9bb0
BLAKE2b-256 a1985a4fa0279233915ef1846a9f7f55b5bcd06c3e3c45ff10647d3f0b5bf73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d82ed06a8d7c65a4106fdb6d14dbe732c5b91720e0bc7d30e7af81b578990ff
MD5 38f15822588c4830130177f37cfc4ee4
BLAKE2b-256 4a51f0cdeaeae6c289575d1f231616cc1b8dd64fb17187b60aff44c5e4e5abdf

See more details on using hashes here.

File details

Details for the file wkbparse-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3196784d6fe71b34102feb2a0ef5fcba33bbf30aed9ae10e4be4e02765dbded7
MD5 e36e07d0b0f193bb38f0145734c4f09f
BLAKE2b-256 cf007dd3b98ee6f79b3f3b59096cf0d46685293e09437942bb2acfdeeab3912a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92030664ce7490c797745ba536bb2fe50de089373c4855e9fd8b00862bf680d9
MD5 be87cdc7c3b37d98d8fafd8db1beee46
BLAKE2b-256 9b36f82657202d57a527a4ada83ae77c1bb97097ef560dea1cb29c9fe0793db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0a0cf4140c65494b37badd4aee9c110ae85ef337d95f08d7a3173f34428a379
MD5 e566e870bb73214f3cc21a093ee6881a
BLAKE2b-256 0d75212184ddb2267d51a7fc4d1c07968b8dad244b23c73a4fe9b0f352f6b329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b625d5f16fb231dc74bb9fcbe516b0b68c22a99efb583b6be5ec895fe4fe0c1
MD5 240bd766fdd72a9e235216cffd2fb907
BLAKE2b-256 69b760e9687df7acfcbad9fe45b7d1ae63ac8c6f4357d15bab3cbeef1d6dda11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f218d893f85fb4451a2292ca347d20259faee2e3d734fa436d08835eedd88d3f
MD5 155ef799d6075dedc1d3a84e63451911
BLAKE2b-256 36f27b4b676992dcb37dbe8e7c0c8b94e6d28bf6b3771dba8a7ef30dc9435399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0482ae123bc19d9e8df7d1aa378f33a12d5548a09cc761a91939c8af0b0516ae
MD5 671515c867b28446833086af34c3aa5c
BLAKE2b-256 37c75ba427c3bc3a9d3de6ac5cfe90aac9a286ea7a92589b1924dfaa469b12cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7759962cff7ea07c44233ebc0394f38557275b46b5304a445af49aa4aa7beedd
MD5 da9ace3c9280323f00eeb650beb445ea
BLAKE2b-256 2381b06f4b1be6ffb70b6beb5bca3d5ecb3e6500de82cb74b829ae637402fdc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6208a5248a198e83eb944e54a5012d4b560c7dcf6239a775f5f0e64988e7cf9
MD5 61a9f1c43a31ba8fec7a619ec5e3ab3f
BLAKE2b-256 f6484007f7ad9dcb7e41e3413092c055d97300b716896a0683450967055e46b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 539f3cde5e2dd38ca8e2c1fff8c33ffcf3820795ac3338b92edd64c62ba3388e
MD5 f4c62d70ea732d0599a72de59bfd0312
BLAKE2b-256 8bea3bd82ec840492747bc76cc1f34823c74fd76d86debb4af099b903d8c64d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8673a642ccdedb2c1227ae9b79e836a810f20c74e4f01df95178e737ac46e7be
MD5 24d77c1388e73d49d382d4990b11582a
BLAKE2b-256 76548ec7b64223dd9a5219118d52f69fb5824909a3791743e4179e4bfc7e1fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b3f3df84784013568c3d494827d91ae727c61c4e2aaf6f694c78ffdba3fed07
MD5 84d82528632c1f57de0340848cade7d0
BLAKE2b-256 7bb71316bbad4175d7b4bd51fc70e46a8453dbb04d4a8308c3966a13247327ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b25aca4e9cc96c9e555cc1ef0238897537489657c9110c1c0e36e547085433b9
MD5 9daffccb9717a40866376403aa15e9b0
BLAKE2b-256 0bb088e87dfbfa42149b0a96f1843f94500e545a26bf923ae4f6ffc3a3818a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a42a8aafc277ab5c9b0bc4248bcd0d741219dd74afd33b60d98efb525fd445b3
MD5 0fbe20185855a565e98371fa5939ada1
BLAKE2b-256 18ceb5bac6db4d23fe452529dc8d374557143565d41f78957ee3f15259e07534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82c864ab24610db9b35f1d235b939a879edbd681159674f73f199c5f946bb3b2
MD5 6ab07f0bf20e79f3498fd7379911121d
BLAKE2b-256 f9e2f7ba194be8a57fd517cdaace5187c0086729c5b4d2dcd55acfd314519ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1a6688be5e13d52bbd3a892c075c99aac6333a3a6ec8b35c45b45765892d998
MD5 14559bc4fabf83fe39c65aba33f6c1f8
BLAKE2b-256 31a46b0dfb130595fe865d2fdf86b892f3caf5c5a5dc179c79fe78b3fa44d8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7acd7e1d411b1a4a3eb5a8e42f2e00f0bce85266a13a15d5f8a3c6c6522941f7
MD5 34e8889a1e4641fed17be7aea5179625
BLAKE2b-256 6ca2a44a981f8d8cdab955755b468d494bb6028b3df1fb8ef4cce029b9070e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 991420e64f3ac00e27ba343d11135f7785937ae82d1c7385de77b8a8d5fe20a1
MD5 34adea6e6fbf289284e9066e7ee2346a
BLAKE2b-256 e54c4dfdd363ada6312dda8c4fd93660330084d36994289c0926d31a87f09935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33ea543299d3c135b1c1bcca5e123716ceaf3c8cd357efaddffa61ae1a6a48e6
MD5 d97520a222c5ed632c1fe124a8010a75
BLAKE2b-256 ddede519ef86b6d983bae354088a5613be1d72ac920392aa88f89ebf3347379c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4ba43d7e35c345c74f0c96efa1e6aa27b4523769bf55972b32e14949ffa4de3
MD5 a0c10e8f7bda1b7dc230a6482b5e6097
BLAKE2b-256 d4ec18eae49eefbbaf9ee20976913ef15d0cd9548954b94a29b55b12c836097b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f2a09e69a500860b3348b8c160f5e32b89268f9f476dcbd54627fe458f4508f
MD5 f0d0121b1a769fd41090d7bc37d84d8b
BLAKE2b-256 5a4819ace4cadb4c4834264ceb392b5e4a91d0ede206ae434537bb3427b65383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6f10693cca8056032c5cc5ef3cfb445741c45511340348b21033dd2659503e3
MD5 1e67de17fa64e23b13e8e0211cf67e19
BLAKE2b-256 9f82c3a4bf886d370d858cceb15fc1b717e8376ea8e98f882d679845b2947183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b6678d47be7b043eeac758566fb8c5c267ebbf5fd713749964e38fd4a2fd76b
MD5 3059d2c9e2a78845f8bdb6e48a4516d1
BLAKE2b-256 707eb228214c022a0bf6a0b6ac3d6679a377e7f7542b95100ca76de709c57c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 618dba376476288517b98773e5c8adc82c0d758f34c9be7bc7da17e36b1a1c73
MD5 bfdee4dfa3476902c28f76e062a924c8
BLAKE2b-256 ab44d124c0cd51d9b523fbd0af53c89d1608d81f6480d84cdf955a779b44210d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a6bbfa28c659f950957723f83051c93b05215465dd7eb5de7177ddf88e7d918
MD5 22001ea544da33f5f24941851879956b
BLAKE2b-256 6a389090735c535115b6a9881c039b8012a712e497e15dd03548a6ea5172c622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4137f2fbbe7c95e8df4d52512816b028b35c8129ad43a845c5432e6eefea795a
MD5 03125f9353c42e65adf1bc331b6b040d
BLAKE2b-256 0449383d8f44794af47f419dc341cb042c355419bdbe654f91f66d8aafa6998a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88c6b3760959880b64b62ab5bb6da77798246a884da11d8b9224aca04bb07750
MD5 9d3ca448ad32d7836f8a253fe858c187
BLAKE2b-256 19f05dae083fb1b1d8d58d46b47ab4bb6f718ad2bd417ea9f05e796df9b4b2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cea2ccf4be7cd8884cb113b008b39daf763b4510d178d29da20164362a349fa
MD5 ab2b05ce1b283711781d8a627491d76d
BLAKE2b-256 12d10cbe3295d98ea214577398ac5a6829e153dbc754cdfa3c045172b2df651d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da68118f0050d2d1c072d1b328d2d55e413c78f0a03373bc878778160e2fc044
MD5 b79c0bf06869bb2b3be11f4a565c2d9a
BLAKE2b-256 30eda11f226008f28b4faf794c35b934ef4eff8b998bd157ba2d6a9078778e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wkbparse-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e2102d6f298bd9c2fda20f132531a0164f16765ba6406ec05af514c7a88202e
MD5 6a50f34628004f7e7e496d8186b67d5d
BLAKE2b-256 d76507b4d92101fccaeed578720ed6512d9878abe27f69fe5875d1a96d2cfcaa

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