# wkbparse
`wkbparse` is a Python module written in Rust for parsing [EWKB](https://postgis.net/docs/using_postgis_dbmanagement.html#EWKB_EWKT) and [TWKB](https://github.com/TWKB/Specification/blob/master/twkb.md) 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](Mortal/rust-ewkb) which in turn originates from [https://github.com/andelf/rust-postgis](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:
```python
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
}
}
}
```
Raw data
{
"_id": null,
"home_page": "https://github.com/arjuote/wkbparse",
"name": "wkbparse",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "PostgreSQL, PostGIS, GIS, GEO, WKB, TWKB, GeoJSON",
"author": "Arsi Juote <arsi.juote@gmail.com>",
"author_email": "Arsi Juote <arsi.juote@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/ac/bf/2040fa89c2ac6f3fae7cc5dbe9a1f35db65824046150c7cb81ea13005b92/wkbparse-0.1.1.tar.gz",
"platform": null,
"description": "# wkbparse\n\n`wkbparse` is a Python module written in Rust for parsing [EWKB](https://postgis.net/docs/using_postgis_dbmanagement.html#EWKB_EWKT) and [TWKB](https://github.com/TWKB/Specification/blob/master/twkb.md) geometries into GeoJSON strings or GeoJSON-like Python dictionaries in a performant fashion.\n\nOriginal EWKB/TWKB encoding code forked from [https://github.com/Mortal/rust-ewkb](Mortal/rust-ewkb) which in turn originates from [https://github.com/andelf/rust-postgis](andelf/rust-postgis).\n\n`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.\n\n## Motivation\n\nThe 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.\n\nThe 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.\n\n## Installation\n\nPre-built wheels are available for the following platforms and python versions:\n\nPython versions: `[3.8, 3.9, 3.10, 3.11, 3.12]`\n\nPlatforms: Linux `[x86_64, x86, aarch64, armv7, s390x, ppc64le]`, Windows: `[x64, x86]`, MacOS: `[x86_64, aarch64]`\n\nInstall by saying `pip install wkbparse`.\n\nSupported python version is >=3.8.\n\nTested on Python versions 3.8, 3.9, 3.10, 3.11 on Linux x86_64.\n\n## Usage\n\nThis module implements the following functionalities:\n\n- TWKB to GeoJSON dictionary: `twkb_to_geojson`\n- TWKB to EWKB: `twkb_to_ewkb`\n- EWKB to GeoJSON dictionary: `ewkb_to_geojson`\n- GeoJSON dictionary to EWKB: `geojson_to_ewkb`\n\nThe following is not currently implemented:\n\n- Support for GeometryCollection types\n- Encoding any data in TWKB\n\nExample:\n\n```python\nimport wkbparse\n\ntwkb_bytes = bytes.fromhex(\"610805d00fa01f50\")\ngeometry = wkbparse.twkb_to_geojson(twkb_bytes)\nprint(geometry)\n```\n\nThe resulting dict looks like:\n\n```\n{\n type: str # GeoJSON geometry type\n crs: Optional[int] # Spatial reference system identifier\n coordinates: list[float] # nesting depth depending on geometry type\n}\n```\n\nWhen serializing to GeoJSON strings directly, the `crs` is instead expressed as dictated by the GeoJSON spec using a nested dict, e.g.:\n\n```\n{\n \"crs\": {\n \"type\": \"name\",\n \"properties\": {\n \"name\": \"EPSG:4326\" # The number is the SRID integer above\n }\n }\n}\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "EWKB and TWKB parsing and conversion to GeoJSON",
"version": "0.1.1",
"project_urls": {
"Homepage": "https://github.com/arjuote/wkbparse",
"Source": "https://github.com/arjuote/wkbparse"
},
"split_keywords": [
"postgresql",
" postgis",
" gis",
" geo",
" wkb",
" twkb",
" geojson"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0acba2dc96f915d8a0c469de7e403a78380b45ce18dc39b663d7e32d614a18df",
"md5": "00ae7e29f8176baca088455cdd4bf439",
"sha256": "cdbfd280a0143fe3e9d503b0b3d78c659ff5faeb1d2bea4709eae56d1fe80951"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "00ae7e29f8176baca088455cdd4bf439",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 227807,
"upload_time": "2024-10-28T19:41:29",
"upload_time_iso_8601": "2024-10-28T19:41:29.473422Z",
"url": "https://files.pythonhosted.org/packages/0a/cb/a2dc96f915d8a0c469de7e403a78380b45ce18dc39b663d7e32d614a18df/wkbparse-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "315bb04cce9bdbbcdf84111f8d6ead826f499216e6ab275051a9c3ad45b08f38",
"md5": "1922839dd6c0c32281ec132907748dfd",
"sha256": "20c0d81e9d954d92a6540e2f419dd070d183537e90a51c1f2005cdf12298fa7a"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1922839dd6c0c32281ec132907748dfd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 251350,
"upload_time": "2024-10-28T19:40:19",
"upload_time_iso_8601": "2024-10-28T19:40:19.777772Z",
"url": "https://files.pythonhosted.org/packages/31/5b/b04cce9bdbbcdf84111f8d6ead826f499216e6ab275051a9c3ad45b08f38/wkbparse-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "507866efe9879ca0347822b7eac296eea5172d33fbd545bcb98917bc5bbd7c07",
"md5": "296945ef3003e756dc11e72112be5bf4",
"sha256": "efd15d3a04b08e4b565a20d97e4ca89475ea2a87bed48b460d4a7e2458784652"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "296945ef3003e756dc11e72112be5bf4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 264023,
"upload_time": "2024-10-28T19:40:32",
"upload_time_iso_8601": "2024-10-28T19:40:32.814336Z",
"url": "https://files.pythonhosted.org/packages/50/78/66efe9879ca0347822b7eac296eea5172d33fbd545bcb98917bc5bbd7c07/wkbparse-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5187bada5b935e25fa0c039b4647b7a5c9740def6525c49c8ce5e2c5d1bb619b",
"md5": "3e1e4bbb57e180ffaf20157de8c3d8d7",
"sha256": "82169529253e40b6e8f38a80fd08d8710dd5a9fea04823a48dba494f3bd3e1bc"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3e1e4bbb57e180ffaf20157de8c3d8d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 280675,
"upload_time": "2024-10-28T19:40:46",
"upload_time_iso_8601": "2024-10-28T19:40:46.108163Z",
"url": "https://files.pythonhosted.org/packages/51/87/bada5b935e25fa0c039b4647b7a5c9740def6525c49c8ce5e2c5d1bb619b/wkbparse-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af68ca34d11e64fd2ad69099d41d23de59eb663af7f57036f5ca0a9794ce8231",
"md5": "e36045258ef58c202c91a70da5117443",
"sha256": "8c1f163d67b6dfe39d4b92809e7dc458557cdc895dd53a7165ff2699f8322112"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e36045258ef58c202c91a70da5117443",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 353864,
"upload_time": "2024-10-28T19:40:57",
"upload_time_iso_8601": "2024-10-28T19:40:57.486596Z",
"url": "https://files.pythonhosted.org/packages/af/68/ca34d11e64fd2ad69099d41d23de59eb663af7f57036f5ca0a9794ce8231/wkbparse-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26a61f48e31e17b2d852fc32682a9124ca7d02e8ba3516815acc4242c8bcd4ec",
"md5": "9cff659a68b0770e9f30c81cedf2c004",
"sha256": "4ef2d4c444fd06125ce263ebdda72ee85eb616cd713da05c6158d2c777d985cc"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9cff659a68b0770e9f30c81cedf2c004",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 257022,
"upload_time": "2024-10-28T19:41:20",
"upload_time_iso_8601": "2024-10-28T19:41:20.504044Z",
"url": "https://files.pythonhosted.org/packages/26/a6/1f48e31e17b2d852fc32682a9124ca7d02e8ba3516815acc4242c8bcd4ec/wkbparse-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43ec0fb5b7d0695e501c9efc4b2f59dae07b854e6778ab31d196afd69932e027",
"md5": "696b9dd52bd7deb2285b3742d79b9076",
"sha256": "60372274c0a618e1ebae14a62d86f6a6d01a19d8d05a6763f272b7b82a58ec74"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "696b9dd52bd7deb2285b3742d79b9076",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 267760,
"upload_time": "2024-10-28T19:41:09",
"upload_time_iso_8601": "2024-10-28T19:41:09.863030Z",
"url": "https://files.pythonhosted.org/packages/43/ec/0fb5b7d0695e501c9efc4b2f59dae07b854e6778ab31d196afd69932e027/wkbparse-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd933644fdd168ba7975044bdc3e18985e4a574c10a6ba3ab3b3631092c481f9",
"md5": "f3cd6d6fed280ec405fc7a6cc8e23ff3",
"sha256": "46b2663e0885352f632ab03bf9905e4cdf0f7376a001ebbfd3185db6136e59a6"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f3cd6d6fed280ec405fc7a6cc8e23ff3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 433913,
"upload_time": "2024-10-28T19:41:37",
"upload_time_iso_8601": "2024-10-28T19:41:37.685740Z",
"url": "https://files.pythonhosted.org/packages/cd/93/3644fdd168ba7975044bdc3e18985e4a574c10a6ba3ab3b3631092c481f9/wkbparse-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9f8903a6bfee282bc89f96d1ebd6cafea3e58ad47fd935b5f1cdc4415342d45",
"md5": "c3addd536e06d309ee6f891d96c287c7",
"sha256": "08104ee7205c39f2916fea83b05f73a4d4604962797622b863fc2a9a839c6fc7"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c3addd536e06d309ee6f891d96c287c7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 523612,
"upload_time": "2024-10-28T19:41:48",
"upload_time_iso_8601": "2024-10-28T19:41:48.186792Z",
"url": "https://files.pythonhosted.org/packages/f9/f8/903a6bfee282bc89f96d1ebd6cafea3e58ad47fd935b5f1cdc4415342d45/wkbparse-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f49c2f880fd4a4cb7157cd58e6edfe56e98ad033d81b1bf404eb3b0f9143a492",
"md5": "1a59d762159f778ce366313d4ccab47e",
"sha256": "9b0c1a5c065ff590f3695d2137f7d603c85504799845b6a72081a590ff8a6486"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1a59d762159f778ce366313d4ccab47e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 437480,
"upload_time": "2024-10-28T19:41:59",
"upload_time_iso_8601": "2024-10-28T19:41:59.631098Z",
"url": "https://files.pythonhosted.org/packages/f4/9c/2f880fd4a4cb7157cd58e6edfe56e98ad033d81b1bf404eb3b0f9143a492/wkbparse-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ca969886c27b5656a6ae947fd635b6541bf72eca908387b226c650552271f2b",
"md5": "7a9e264aae4e7def8bc9702fefffe44e",
"sha256": "4c66209750fe884d8a52e9bc30efcba1644aa2b0e3715d9337e6acf4daaae36f"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7a9e264aae4e7def8bc9702fefffe44e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 421044,
"upload_time": "2024-10-28T19:42:11",
"upload_time_iso_8601": "2024-10-28T19:42:11.758325Z",
"url": "https://files.pythonhosted.org/packages/9c/a9/69886c27b5656a6ae947fd635b6541bf72eca908387b226c650552271f2b/wkbparse-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e8904ef57b91eb8163f51897e63c7d6229bc8a9631b1aa76a2de1033030d331",
"md5": "8f9a4adccbdb48500e8ed14f5220a4d9",
"sha256": "c2fbd5080359c0c4635dd633d3af00f568df32d800d115bc4ad005c1de107e48"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "8f9a4adccbdb48500e8ed14f5220a4d9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 137655,
"upload_time": "2024-10-28T19:42:32",
"upload_time_iso_8601": "2024-10-28T19:42:32.851078Z",
"url": "https://files.pythonhosted.org/packages/3e/89/04ef57b91eb8163f51897e63c7d6229bc8a9631b1aa76a2de1033030d331/wkbparse-0.1.1-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3407c30e9ec5b6587f38f5e3db3da8bb16ce858b36916083a2159f126b30808",
"md5": "af83d5188498c4e18d3778c9e6e25fc3",
"sha256": "7954ddce9d6e5414f2af575877ddac3dadbe5a39aa108a526e2b59fb804a550a"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "af83d5188498c4e18d3778c9e6e25fc3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 145598,
"upload_time": "2024-10-28T19:42:23",
"upload_time_iso_8601": "2024-10-28T19:42:23.736813Z",
"url": "https://files.pythonhosted.org/packages/a3/40/7c30e9ec5b6587f38f5e3db3da8bb16ce858b36916083a2159f126b30808/wkbparse-0.1.1-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fea6ef9a1d2d31fc42d312df4748d844d75007a0dd2735500c21ee54b6bd5f1",
"md5": "3856f9bef22cd2563fae9586d890e3fc",
"sha256": "902c4afd5a09ab5516e7c779d6987f1a6d8274175b8e65e72479a0ee87cac9c4"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3856f9bef22cd2563fae9586d890e3fc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 239000,
"upload_time": "2024-10-28T19:41:34",
"upload_time_iso_8601": "2024-10-28T19:41:34.807755Z",
"url": "https://files.pythonhosted.org/packages/4f/ea/6ef9a1d2d31fc42d312df4748d844d75007a0dd2735500c21ee54b6bd5f1/wkbparse-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64a86bd17c5b2c6148c7838c59e70a4b21fac786f10d71715ccc96325c9badeb",
"md5": "0a6eac7e4f17e840c78d36240dcffffe",
"sha256": "3a884695874d6ca12cce1e0ca61d16990e52622705cb65aea1b48c29e7291398"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0a6eac7e4f17e840c78d36240dcffffe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 227805,
"upload_time": "2024-10-28T19:41:30",
"upload_time_iso_8601": "2024-10-28T19:41:30.867214Z",
"url": "https://files.pythonhosted.org/packages/64/a8/6bd17c5b2c6148c7838c59e70a4b21fac786f10d71715ccc96325c9badeb/wkbparse-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b839a168ec06020d1178a8160252e16fccc021c99e6d91c0e46ba6362f3d8e3",
"md5": "66fcdcf13437e2295fd7e8417e0ae118",
"sha256": "627727485af28bb5a43854fb26762364179e7acaa9d910497ae437070ab65c9e"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "66fcdcf13437e2295fd7e8417e0ae118",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 251350,
"upload_time": "2024-10-28T19:40:21",
"upload_time_iso_8601": "2024-10-28T19:40:21.479036Z",
"url": "https://files.pythonhosted.org/packages/9b/83/9a168ec06020d1178a8160252e16fccc021c99e6d91c0e46ba6362f3d8e3/wkbparse-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "755aed2475089fdfc0f1de3c03397691c89b1b40c4b9e015c6fdc5debedd6f1d",
"md5": "0e26819448c97dc7c527701c671e2e86",
"sha256": "5a490dabd869bf217560def1e516ab988ea2f2ecdaf6b248346a386ca93eb9cf"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0e26819448c97dc7c527701c671e2e86",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 264023,
"upload_time": "2024-10-28T19:40:34",
"upload_time_iso_8601": "2024-10-28T19:40:34.742968Z",
"url": "https://files.pythonhosted.org/packages/75/5a/ed2475089fdfc0f1de3c03397691c89b1b40c4b9e015c6fdc5debedd6f1d/wkbparse-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9be4ed085024a5ecd8b28118a08bd2e7cb3c0d91f8f9540c78c3a9278b13194",
"md5": "1f7567ee7321aa78f1e3d9748e007fe2",
"sha256": "3e565894d2caa597adbe58de214446ba56f4a944847dadb6dae5bbef16fed2ff"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1f7567ee7321aa78f1e3d9748e007fe2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 280673,
"upload_time": "2024-10-28T19:40:47",
"upload_time_iso_8601": "2024-10-28T19:40:47.719956Z",
"url": "https://files.pythonhosted.org/packages/c9/be/4ed085024a5ecd8b28118a08bd2e7cb3c0d91f8f9540c78c3a9278b13194/wkbparse-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d52b5f2d15fddae97c8dc458aa510ae71ab2515fb534985930b0f53710758fa",
"md5": "8a089ceea7cfe1d9c8166bcab0096e02",
"sha256": "b02674c87f0e0299c675d90dc136ab41fb6e5c14834953f92e48e5ebeda55da1"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8a089ceea7cfe1d9c8166bcab0096e02",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 353865,
"upload_time": "2024-10-28T19:40:59",
"upload_time_iso_8601": "2024-10-28T19:40:59.391102Z",
"url": "https://files.pythonhosted.org/packages/3d/52/b5f2d15fddae97c8dc458aa510ae71ab2515fb534985930b0f53710758fa/wkbparse-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "efec1310bdef9908acb11e4fb747baf7b18c56057f626e7d5a886bcad1b68b62",
"md5": "f783531f8857a6fe07cd8a45feb06a6d",
"sha256": "92bbd1094fb4e24efd3066d0220e24cc26f4858cb26f72c22575367415a4b486"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f783531f8857a6fe07cd8a45feb06a6d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 257022,
"upload_time": "2024-10-28T19:41:21",
"upload_time_iso_8601": "2024-10-28T19:41:21.652585Z",
"url": "https://files.pythonhosted.org/packages/ef/ec/1310bdef9908acb11e4fb747baf7b18c56057f626e7d5a886bcad1b68b62/wkbparse-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cc294befd84c429f71f646a1d77c3fab0713bfb0d8ecd8a14487b493690b63c",
"md5": "4aa1df0db22f2b990cc291db6cbc3533",
"sha256": "eaa2f1711acfed91258a101e5a6511755f6a1552e0548c85be68b28a1bf26393"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4aa1df0db22f2b990cc291db6cbc3533",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 267760,
"upload_time": "2024-10-28T19:41:11",
"upload_time_iso_8601": "2024-10-28T19:41:11.584519Z",
"url": "https://files.pythonhosted.org/packages/2c/c2/94befd84c429f71f646a1d77c3fab0713bfb0d8ecd8a14487b493690b63c/wkbparse-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41bb8379c3911985d2f021580eb82cb70a65873a9a029768fe29abd95e7aec2c",
"md5": "4bcc448d1745361db9bd490c57e61321",
"sha256": "7b25da2f7072bc2c6bbf6066108a2a6e8db097497e02c4767da614d05eabdbea"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4bcc448d1745361db9bd490c57e61321",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 433916,
"upload_time": "2024-10-28T19:41:38",
"upload_time_iso_8601": "2024-10-28T19:41:38.879696Z",
"url": "https://files.pythonhosted.org/packages/41/bb/8379c3911985d2f021580eb82cb70a65873a9a029768fe29abd95e7aec2c/wkbparse-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8952728c089eabe2278b56c1a846f753c114110d7d8a54369885cd7b05bdccc1",
"md5": "8bc08f03c1ccd37d22468cf9ebcc1fdb",
"sha256": "33adbe9e513f7851c0390379f57d3a1a0a6cfbc78e5080c20580251f3a6cc30f"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8bc08f03c1ccd37d22468cf9ebcc1fdb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 523614,
"upload_time": "2024-10-28T19:41:49",
"upload_time_iso_8601": "2024-10-28T19:41:49.500009Z",
"url": "https://files.pythonhosted.org/packages/89/52/728c089eabe2278b56c1a846f753c114110d7d8a54369885cd7b05bdccc1/wkbparse-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edda2a89cd69c2c41e2ddf593ef90c95fa9ac781f5791e3db64275399f3834fd",
"md5": "956037e4de446e59e989eb4d455cf622",
"sha256": "3e5a084ceecb8ce844f28019585c9ffe38e2b147d751a033810c9c1708c8c765"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "956037e4de446e59e989eb4d455cf622",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 437483,
"upload_time": "2024-10-28T19:42:00",
"upload_time_iso_8601": "2024-10-28T19:42:00.954276Z",
"url": "https://files.pythonhosted.org/packages/ed/da/2a89cd69c2c41e2ddf593ef90c95fa9ac781f5791e3db64275399f3834fd/wkbparse-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "224748c8b589c62eb66a012e832fe0c1fb5a7bcc8b3ea164fcfb5041b8ea3e65",
"md5": "4c1089d52aac125eee75462fa5a8ba6f",
"sha256": "435902d1c4fe22a74121d64115753856f88c79e9c582c870c4e17a9ce9a9a338"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4c1089d52aac125eee75462fa5a8ba6f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 421046,
"upload_time": "2024-10-28T19:42:13",
"upload_time_iso_8601": "2024-10-28T19:42:13.095420Z",
"url": "https://files.pythonhosted.org/packages/22/47/48c8b589c62eb66a012e832fe0c1fb5a7bcc8b3ea164fcfb5041b8ea3e65/wkbparse-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b58119876a3f953c3ef8e427d51aa394a5e2b7083c42a4e0d5c3c9fca03b38f2",
"md5": "5420f635701302528f0c95d3f4b95ab2",
"sha256": "17317d64f9bf80714ea55b269347a21fa189ed5df357bbd7ae0c58836d8a2b2a"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "5420f635701302528f0c95d3f4b95ab2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 137651,
"upload_time": "2024-10-28T19:42:33",
"upload_time_iso_8601": "2024-10-28T19:42:33.988029Z",
"url": "https://files.pythonhosted.org/packages/b5/81/19876a3f953c3ef8e427d51aa394a5e2b7083c42a4e0d5c3c9fca03b38f2/wkbparse-0.1.1-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71058ed3837a5587d51a98a1c3916b12a6d432c5c064ed97781794db1f36704c",
"md5": "da5d0ae1e575bcc37d1f994247225026",
"sha256": "9f98de9b63fb52499c434c0c1880dfc13e033bbc232993cd433cd07b72d65c88"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "da5d0ae1e575bcc37d1f994247225026",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 145595,
"upload_time": "2024-10-28T19:42:25",
"upload_time_iso_8601": "2024-10-28T19:42:25.032938Z",
"url": "https://files.pythonhosted.org/packages/71/05/8ed3837a5587d51a98a1c3916b12a6d432c5c064ed97781794db1f36704c/wkbparse-0.1.1-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f2c1d4b4c822dcd14a791fa2f6f365b5d76ca80fa11037d464c35b0221642cc",
"md5": "1a52d5ec72d1a582edcf5f6f4ec8c087",
"sha256": "73975cbd537791591ba299a776c7fdd7191d1fc4afddfd7cb917c8e55344158d"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1a52d5ec72d1a582edcf5f6f4ec8c087",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 238991,
"upload_time": "2024-10-28T19:41:36",
"upload_time_iso_8601": "2024-10-28T19:41:36.459227Z",
"url": "https://files.pythonhosted.org/packages/9f/2c/1d4b4c822dcd14a791fa2f6f365b5d76ca80fa11037d464c35b0221642cc/wkbparse-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ee20d64bd025f7a2ccd454de1e629ee99427a4ef0a6f598b451bd4d1e1b3c2f",
"md5": "eb9504e60d09a9dca8f69b8af93679b0",
"sha256": "06487df24f6709ac2be6e25f657e2789250f6da3ce703777418a785d674fc830"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "eb9504e60d09a9dca8f69b8af93679b0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 227609,
"upload_time": "2024-10-28T19:41:32",
"upload_time_iso_8601": "2024-10-28T19:41:32.108484Z",
"url": "https://files.pythonhosted.org/packages/7e/e2/0d64bd025f7a2ccd454de1e629ee99427a4ef0a6f598b451bd4d1e1b3c2f/wkbparse-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9969df8223b292ed29a76d73068354eeee33611753b3c9546c90784889c21be3",
"md5": "f8eaaa58302a60cddbfafa5fca3d6ba6",
"sha256": "37c64af080a17ab32f08108db01735ac3054f45f894ba1795b36976d9c2166bd"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f8eaaa58302a60cddbfafa5fca3d6ba6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 251023,
"upload_time": "2024-10-28T19:40:22",
"upload_time_iso_8601": "2024-10-28T19:40:22.705832Z",
"url": "https://files.pythonhosted.org/packages/99/69/df8223b292ed29a76d73068354eeee33611753b3c9546c90784889c21be3/wkbparse-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2ad541158d2f8a2de111c17902298c7dc59783e056b6a612416d866141c63b9",
"md5": "2416cefcbcebd8d393fccca2c526284a",
"sha256": "d778041738ed7e7f8349cc0b7aa228dbcb22b53e8bcf6e31bfd6f792eafb268a"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2416cefcbcebd8d393fccca2c526284a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 264009,
"upload_time": "2024-10-28T19:40:36",
"upload_time_iso_8601": "2024-10-28T19:40:36.154913Z",
"url": "https://files.pythonhosted.org/packages/a2/ad/541158d2f8a2de111c17902298c7dc59783e056b6a612416d866141c63b9/wkbparse-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1925b4c534fbc492f987828b5d7c58c85d2f7893b5dd029365b5109c4f4a611",
"md5": "500a31531d785d41c3871220b35af42b",
"sha256": "7a9c11c50e07286197ed49795cd5c68eef60e876694af9fd6bf0d4c182917fce"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "500a31531d785d41c3871220b35af42b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 280523,
"upload_time": "2024-10-28T19:40:48",
"upload_time_iso_8601": "2024-10-28T19:40:48.907913Z",
"url": "https://files.pythonhosted.org/packages/b1/92/5b4c534fbc492f987828b5d7c58c85d2f7893b5dd029365b5109c4f4a611/wkbparse-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0157cc71dd871774242b6bd129356d93448eb99b933f3657866052b751d08c39",
"md5": "598de26c3aec1eccf619e41faff6ed4a",
"sha256": "ac7094c3ccf4ae0aafa8667611fd539defbbc60acd2f90a410b91104d6e93006"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "598de26c3aec1eccf619e41faff6ed4a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 341370,
"upload_time": "2024-10-28T19:41:01",
"upload_time_iso_8601": "2024-10-28T19:41:01.415214Z",
"url": "https://files.pythonhosted.org/packages/01/57/cc71dd871774242b6bd129356d93448eb99b933f3657866052b751d08c39/wkbparse-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "814cd51881944d7954547d563f760a16e89ccb939f6b33f229a9934564b01170",
"md5": "409ab8d3ca18c877c5a46e4a3bc75eba",
"sha256": "f54111902c7dfe2d8a0458918e6c0103935b423e0a1bf4d186263f3b8dc113ef"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "409ab8d3ca18c877c5a46e4a3bc75eba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 256710,
"upload_time": "2024-10-28T19:41:23",
"upload_time_iso_8601": "2024-10-28T19:41:23.192134Z",
"url": "https://files.pythonhosted.org/packages/81/4c/d51881944d7954547d563f760a16e89ccb939f6b33f229a9934564b01170/wkbparse-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e51ec9fb1a872d8dae224e886090c56b6e82770446274cf518a883551414241b",
"md5": "885303626dd3ba54cb680451a6148973",
"sha256": "a23b071ac6408815a6479abc3870851be93637a33ecf4f58adcd0be65874b8d8"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "885303626dd3ba54cb680451a6148973",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 267127,
"upload_time": "2024-10-28T19:41:13",
"upload_time_iso_8601": "2024-10-28T19:41:13.438518Z",
"url": "https://files.pythonhosted.org/packages/e5/1e/c9fb1a872d8dae224e886090c56b6e82770446274cf518a883551414241b/wkbparse-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbd54d9deb50d6fdf24994bf5b6356b5ca9c3831fbfa2e04ab5d3b3706422e79",
"md5": "78555b14ac6912583af67d3a384fea9d",
"sha256": "20702c7d53deebdf0792f063785b28c45e0f50c8398e85826c9302a8552f63d9"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "78555b14ac6912583af67d3a384fea9d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 433494,
"upload_time": "2024-10-28T19:41:40",
"upload_time_iso_8601": "2024-10-28T19:41:40.139026Z",
"url": "https://files.pythonhosted.org/packages/cb/d5/4d9deb50d6fdf24994bf5b6356b5ca9c3831fbfa2e04ab5d3b3706422e79/wkbparse-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb6f25646247d22fb68581081a69ba5f57058ec724aebcdfba5051385ab6fe31",
"md5": "c5bc7ac3c2ec0dd39d314079af01ef1c",
"sha256": "c9ae5050bb5d36e75759fb532758c39747f671b99f9ca2b448afef19f571b575"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c5bc7ac3c2ec0dd39d314079af01ef1c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 523517,
"upload_time": "2024-10-28T19:41:50",
"upload_time_iso_8601": "2024-10-28T19:41:50.732194Z",
"url": "https://files.pythonhosted.org/packages/cb/6f/25646247d22fb68581081a69ba5f57058ec724aebcdfba5051385ab6fe31/wkbparse-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e99012cd6e98fd1517a23b97bf513c6f34152daab05864775ccf28965e1211c2",
"md5": "75114c251bdeebef7ca080a425aea94b",
"sha256": "6d1a4b5a5137bdbefaf3f77ceff602871f9cf3792f6fd72c31a3aedda8112054"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "75114c251bdeebef7ca080a425aea94b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 437412,
"upload_time": "2024-10-28T19:42:02",
"upload_time_iso_8601": "2024-10-28T19:42:02.263829Z",
"url": "https://files.pythonhosted.org/packages/e9/90/12cd6e98fd1517a23b97bf513c6f34152daab05864775ccf28965e1211c2/wkbparse-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bef122fa21860aad5a08547fa3134ae70f1572c28e294803124815b7bd79c17",
"md5": "5071ae28eefe43f0bc5a876ef475c68b",
"sha256": "292f8ef68faa7ccc9142e64a8387f5219d77e3f1c46217240df81f708c96fad4"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5071ae28eefe43f0bc5a876ef475c68b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 420921,
"upload_time": "2024-10-28T19:42:14",
"upload_time_iso_8601": "2024-10-28T19:42:14.462583Z",
"url": "https://files.pythonhosted.org/packages/5b/ef/122fa21860aad5a08547fa3134ae70f1572c28e294803124815b7bd79c17/wkbparse-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ee1412ce2bae3e1f8f0eb3f10d9149d0f80552c51c22ccf9fb3f7072236615c",
"md5": "41dcc687378c3f1d0a5f75b31236226a",
"sha256": "9b332d626537389749eec3ea57d41b59007c51a7224f5ad1839f74d683ff4833"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "41dcc687378c3f1d0a5f75b31236226a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 135007,
"upload_time": "2024-10-28T19:42:35",
"upload_time_iso_8601": "2024-10-28T19:42:35.225346Z",
"url": "https://files.pythonhosted.org/packages/7e/e1/412ce2bae3e1f8f0eb3f10d9149d0f80552c51c22ccf9fb3f7072236615c/wkbparse-0.1.1-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74ce00d5d55f20807b690e2305690fcffb0fe0460804b5ebd1e67509a63fb028",
"md5": "549db225f0b99a5e74314baa0fbf6b27",
"sha256": "3b4582c2bb88d6da61b2db9b286c89190b60944dc753b720cf83821585eaa399"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "549db225f0b99a5e74314baa0fbf6b27",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 142179,
"upload_time": "2024-10-28T19:42:26",
"upload_time_iso_8601": "2024-10-28T19:42:26.741303Z",
"url": "https://files.pythonhosted.org/packages/74/ce/00d5d55f20807b690e2305690fcffb0fe0460804b5ebd1e67509a63fb028/wkbparse-0.1.1-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef97a3e4a30439921b00feadad729d2e074843bc10e48c9a097c307a5cdf26b9",
"md5": "db818f938f248f60fd9e5bd1424252fc",
"sha256": "87cc7f1d4893156fd8517b28619b81fc6459f8de1734f5991fb37dd7de2447e9"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "db818f938f248f60fd9e5bd1424252fc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 251469,
"upload_time": "2024-10-28T19:40:24",
"upload_time_iso_8601": "2024-10-28T19:40:24.587279Z",
"url": "https://files.pythonhosted.org/packages/ef/97/a3e4a30439921b00feadad729d2e074843bc10e48c9a097c307a5cdf26b9/wkbparse-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8869417f92c682c5189b9e41c35ef9a1766c0fed556333c640b288f494af3bbb",
"md5": "00e82783d93bfbde10e1112456ca0d41",
"sha256": "5878ec3365b133160d194abb9e3b337b9416265fce05ace053ecbaa11b83561e"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "00e82783d93bfbde10e1112456ca0d41",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 263931,
"upload_time": "2024-10-28T19:40:37",
"upload_time_iso_8601": "2024-10-28T19:40:37.385189Z",
"url": "https://files.pythonhosted.org/packages/88/69/417f92c682c5189b9e41c35ef9a1766c0fed556333c640b288f494af3bbb/wkbparse-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cf32a92ae4daff5e5ac67c5e964d6bc5c223af05f1097ce431acce31bf0786b",
"md5": "ebb079a62d55a545fd7ffc3f0638626e",
"sha256": "435f726372f50c6ea6d1b7f1c7b1737aa05db6d5ae7642ffcebcb2b43f54bad8"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ebb079a62d55a545fd7ffc3f0638626e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 280614,
"upload_time": "2024-10-28T19:40:50",
"upload_time_iso_8601": "2024-10-28T19:40:50.807106Z",
"url": "https://files.pythonhosted.org/packages/7c/f3/2a92ae4daff5e5ac67c5e964d6bc5c223af05f1097ce431acce31bf0786b/wkbparse-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8ac7ee48cbce467584520fc41a95ac24bb373e67cbac547ff4bae16cbf138fb",
"md5": "6ea98cb3fc7a8fc4e17b057de21eb391",
"sha256": "b8e97649626ecf77aadc7d2c4d09fe4a84c864bbf43495234ef308a4605c912b"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6ea98cb3fc7a8fc4e17b057de21eb391",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 353222,
"upload_time": "2024-10-28T19:41:02",
"upload_time_iso_8601": "2024-10-28T19:41:02.603239Z",
"url": "https://files.pythonhosted.org/packages/d8/ac/7ee48cbce467584520fc41a95ac24bb373e67cbac547ff4bae16cbf138fb/wkbparse-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79b1c6881c299e69219ca905b4e6a78c46f10f32d18d4979abe06dd3b25d86d4",
"md5": "e0028168de20a76cb21cd30324c7f465",
"sha256": "f71ebf660189aa38d3ec5ec268e7f3adc28217dd60d0a5df7fe6f3bb84e33b5e"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e0028168de20a76cb21cd30324c7f465",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 257067,
"upload_time": "2024-10-28T19:41:24",
"upload_time_iso_8601": "2024-10-28T19:41:24.476945Z",
"url": "https://files.pythonhosted.org/packages/79/b1/c6881c299e69219ca905b4e6a78c46f10f32d18d4979abe06dd3b25d86d4/wkbparse-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c3e9186064db80a2eb588eb9f2278793563b3c54b3f92b75628581535ca5e36",
"md5": "bdc3edcfad69cde60c04fc32b00cf445",
"sha256": "3c2496bc5d4948e0e87bbd7e57c36af7301298ab6ff7a32115a38123a9326093"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "bdc3edcfad69cde60c04fc32b00cf445",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 267448,
"upload_time": "2024-10-28T19:41:14",
"upload_time_iso_8601": "2024-10-28T19:41:14.836670Z",
"url": "https://files.pythonhosted.org/packages/9c/3e/9186064db80a2eb588eb9f2278793563b3c54b3f92b75628581535ca5e36/wkbparse-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cc30f78dc5cc4e31461268fa4bff8219a0718e072219371569b87f8bf8b5128",
"md5": "7710e1696575f47b56f99f578bb8a47f",
"sha256": "04c47771c58a77550deb2987de3680269efec247bdf91ded13060d32ed243e62"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7710e1696575f47b56f99f578bb8a47f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 433949,
"upload_time": "2024-10-28T19:41:41",
"upload_time_iso_8601": "2024-10-28T19:41:41.593047Z",
"url": "https://files.pythonhosted.org/packages/7c/c3/0f78dc5cc4e31461268fa4bff8219a0718e072219371569b87f8bf8b5128/wkbparse-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7dd83e9902d062bd66687ec07477f31253c64cfe75ca6c826dbbd75a388930fa",
"md5": "c29f185d4082eff1dbfb442e068c42db",
"sha256": "6af9428486abe1b379c3e4d52b485ab7e285f4cef51d1e4420bab479dbf69c52"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c29f185d4082eff1dbfb442e068c42db",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 523575,
"upload_time": "2024-10-28T19:41:52",
"upload_time_iso_8601": "2024-10-28T19:41:52.114413Z",
"url": "https://files.pythonhosted.org/packages/7d/d8/3e9902d062bd66687ec07477f31253c64cfe75ca6c826dbbd75a388930fa/wkbparse-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27dee88095449de49a0b20ad5f697fc0bba243452c9554891acb38a0273d7a94",
"md5": "abee336c9a73aa883deb0550abe7a491",
"sha256": "8efd5db95b79966cd15a6b2f8b63081a93ee006fe8009f1a204e9398b5864a96"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "abee336c9a73aa883deb0550abe7a491",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 437316,
"upload_time": "2024-10-28T19:42:03",
"upload_time_iso_8601": "2024-10-28T19:42:03.700789Z",
"url": "https://files.pythonhosted.org/packages/27/de/e88095449de49a0b20ad5f697fc0bba243452c9554891acb38a0273d7a94/wkbparse-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72b1a100343fb1ba669b50bd5214f6ed301c1386431eb28821f8c4e10bebe96c",
"md5": "79ce91a27568f088706d7f745e2d14f2",
"sha256": "e5d5ffd588aeca88311b806b2d08f4e2e55c646efdfd467e41f7c31658aa84f7"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "79ce91a27568f088706d7f745e2d14f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 421079,
"upload_time": "2024-10-28T19:42:15",
"upload_time_iso_8601": "2024-10-28T19:42:15.958097Z",
"url": "https://files.pythonhosted.org/packages/72/b1/a100343fb1ba669b50bd5214f6ed301c1386431eb28821f8c4e10bebe96c/wkbparse-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a2e26501ad837b23fdf2d2bbf72d29dcd8e30bf892d5bc93adb512740b98e9f",
"md5": "29be51458b20f98d8bb10c79c87c2b24",
"sha256": "da3d6be7e82d9c442a96298ac9272062cc3572788219dd70f9b1a45bc9962e87"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "29be51458b20f98d8bb10c79c87c2b24",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 137221,
"upload_time": "2024-10-28T19:42:36",
"upload_time_iso_8601": "2024-10-28T19:42:36.448282Z",
"url": "https://files.pythonhosted.org/packages/9a/2e/26501ad837b23fdf2d2bbf72d29dcd8e30bf892d5bc93adb512740b98e9f/wkbparse-0.1.1-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a77feb5c59a730cd5ecf33559bf6e723493b0b3840c94bd76e7a8d5c20404295",
"md5": "6640aaa880088299ee12fca5f18e608e",
"sha256": "f17c501915b1f450c321a4793e318816a3a202cc9a7c2c4173a4eba76bdb730e"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "6640aaa880088299ee12fca5f18e608e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 145153,
"upload_time": "2024-10-28T19:42:29",
"upload_time_iso_8601": "2024-10-28T19:42:29.343150Z",
"url": "https://files.pythonhosted.org/packages/a7/7f/eb5c59a730cd5ecf33559bf6e723493b0b3840c94bd76e7a8d5c20404295/wkbparse-0.1.1-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00c91dfd1fe53b684e107394c49c2068158f317b2972ddb5656dc6cf1b1e65a7",
"md5": "a10b76935979671b77c5ec57895c0588",
"sha256": "1a24f0cdeb87542fb7dc9936d1be71bd8350bfa726e5b28a370678b932c345f2"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a10b76935979671b77c5ec57895c0588",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 227982,
"upload_time": "2024-10-28T19:41:33",
"upload_time_iso_8601": "2024-10-28T19:41:33.361562Z",
"url": "https://files.pythonhosted.org/packages/00/c9/1dfd1fe53b684e107394c49c2068158f317b2972ddb5656dc6cf1b1e65a7/wkbparse-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f1327c18956e44192c5812aaaccee0099603c6b2840eaf29b3d763cbdcdb3ec",
"md5": "3493de165ad6c16b484163da51e9c4d3",
"sha256": "9631e3344f65d1ae440e1515a60b42d41d7d4d5e180df6fe161367c87fcab0d5"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3493de165ad6c16b484163da51e9c4d3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 251513,
"upload_time": "2024-10-28T19:40:26",
"upload_time_iso_8601": "2024-10-28T19:40:26.230102Z",
"url": "https://files.pythonhosted.org/packages/0f/13/27c18956e44192c5812aaaccee0099603c6b2840eaf29b3d763cbdcdb3ec/wkbparse-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6395421faa87f4667bf4ef38a7a5e521a4b992a2404caf81896751a1aeee9f7",
"md5": "bf7c7730c7996859457874d6d0f4e900",
"sha256": "cabb7b38a63a28348ea1cd7a65a2c6c0b78467b391326286fb7df3ca602a945f"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bf7c7730c7996859457874d6d0f4e900",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 263956,
"upload_time": "2024-10-28T19:40:39",
"upload_time_iso_8601": "2024-10-28T19:40:39.734221Z",
"url": "https://files.pythonhosted.org/packages/f6/39/5421faa87f4667bf4ef38a7a5e521a4b992a2404caf81896751a1aeee9f7/wkbparse-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea7da5edefca5a811b87145413a0a5b676b0100dd68f75e600aab44407f9b247",
"md5": "b9ada42acc4b96a578ed00f803e96658",
"sha256": "61e9f2cfc8d48e4efabf5f1f9b4af259a835c1b75c573d8cd2850162d0e29074"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b9ada42acc4b96a578ed00f803e96658",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 280705,
"upload_time": "2024-10-28T19:40:51",
"upload_time_iso_8601": "2024-10-28T19:40:51.909632Z",
"url": "https://files.pythonhosted.org/packages/ea/7d/a5edefca5a811b87145413a0a5b676b0100dd68f75e600aab44407f9b247/wkbparse-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a63987844245cee3513d38b19fea76717e58857fa5ce44176ac72340fb752301",
"md5": "016937d25dc34d06691e0023ca5eef72",
"sha256": "06041329aecf768a6636fc2df88459b48e1b980b7f8655482eac303c7c1ea2ac"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "016937d25dc34d06691e0023ca5eef72",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 353262,
"upload_time": "2024-10-28T19:41:04",
"upload_time_iso_8601": "2024-10-28T19:41:04.351650Z",
"url": "https://files.pythonhosted.org/packages/a6/39/87844245cee3513d38b19fea76717e58857fa5ce44176ac72340fb752301/wkbparse-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84aca592acff369aec6dd7743027d8dde23ce49d48e53836646563d7091b11ef",
"md5": "48f3ee0de14ed6219b67e16fb6d72b68",
"sha256": "48de940d6a2225c069aae764406822417f3df790f789aa54d59ef69981bf1024"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "48f3ee0de14ed6219b67e16fb6d72b68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 256999,
"upload_time": "2024-10-28T19:41:25",
"upload_time_iso_8601": "2024-10-28T19:41:25.683651Z",
"url": "https://files.pythonhosted.org/packages/84/ac/a592acff369aec6dd7743027d8dde23ce49d48e53836646563d7091b11ef/wkbparse-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2400e870a2f52b384b0a89c7e0b496cc0b4a6fde380339cde3b440198b1cff83",
"md5": "1ee9ea8e7b8b4fe9d11dd4ddce65393e",
"sha256": "9109bd4f0e50cf61ab17a2c4849dfcfab5db7145512ae5a90a85c3b600d8dd1d"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1ee9ea8e7b8b4fe9d11dd4ddce65393e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 267714,
"upload_time": "2024-10-28T19:41:16",
"upload_time_iso_8601": "2024-10-28T19:41:16.196931Z",
"url": "https://files.pythonhosted.org/packages/24/00/e870a2f52b384b0a89c7e0b496cc0b4a6fde380339cde3b440198b1cff83/wkbparse-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00ed09816523869c31e58f6a5ec9dbb75950ef46eefd83e8a3f083f23f7ced34",
"md5": "754f6f9f14c31b9707159671cb0f2c78",
"sha256": "7452f095ef9597182177ef0ee86bd34a2cfe5f965c17f544233b5530c50a61bc"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "754f6f9f14c31b9707159671cb0f2c78",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 433866,
"upload_time": "2024-10-28T19:41:42",
"upload_time_iso_8601": "2024-10-28T19:41:42.911075Z",
"url": "https://files.pythonhosted.org/packages/00/ed/09816523869c31e58f6a5ec9dbb75950ef46eefd83e8a3f083f23f7ced34/wkbparse-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9e34fd80275ab762ce11cdf16491ac06fb2c35f661127131f00033b699896eb",
"md5": "64799d1a1ca768a7b6c86a628b557f1b",
"sha256": "9461931c86b9f9c25b8fc34e3d9d4adc1500afb6c265ad05bd81c6ea940b3504"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "64799d1a1ca768a7b6c86a628b557f1b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 523587,
"upload_time": "2024-10-28T19:41:53",
"upload_time_iso_8601": "2024-10-28T19:41:53.993481Z",
"url": "https://files.pythonhosted.org/packages/c9/e3/4fd80275ab762ce11cdf16491ac06fb2c35f661127131f00033b699896eb/wkbparse-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d079c626a51ab6e9563a7bc58392f5e58443eb8717733e749d10884670f1fdfa",
"md5": "d78768cafc7439b5d28d76d8d1e81349",
"sha256": "e3a6e3c1933fde117f3ec7cbbfb10c191622593c3963962f972d8dcae48d646c"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d78768cafc7439b5d28d76d8d1e81349",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 437495,
"upload_time": "2024-10-28T19:42:05",
"upload_time_iso_8601": "2024-10-28T19:42:05.644828Z",
"url": "https://files.pythonhosted.org/packages/d0/79/c626a51ab6e9563a7bc58392f5e58443eb8717733e749d10884670f1fdfa/wkbparse-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e0e0afe20c59d45f88e05ae7aae9972feb2289fbacc6d5ea66fcf8f54b7979b",
"md5": "0f46fa31c97fe0f54f1a50d7c6b18420",
"sha256": "7cc999f304534676540c0b296a11219ee285115e82bd731a497991b898443dae"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0f46fa31c97fe0f54f1a50d7c6b18420",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 421084,
"upload_time": "2024-10-28T19:42:17",
"upload_time_iso_8601": "2024-10-28T19:42:17.353018Z",
"url": "https://files.pythonhosted.org/packages/5e/0e/0afe20c59d45f88e05ae7aae9972feb2289fbacc6d5ea66fcf8f54b7979b/wkbparse-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cdb0ac0541c74245034cb4a68252537ce76fed813af1896d8894776318f21137",
"md5": "0c3a950b8d98730868626b5bb2f4ce8b",
"sha256": "3bf28fd2a6d9639016fbff53a24525e8db81cfcfc6d3399c82592c162d3a25bd"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "0c3a950b8d98730868626b5bb2f4ce8b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 137613,
"upload_time": "2024-10-28T19:42:37",
"upload_time_iso_8601": "2024-10-28T19:42:37.629465Z",
"url": "https://files.pythonhosted.org/packages/cd/b0/ac0541c74245034cb4a68252537ce76fed813af1896d8894776318f21137/wkbparse-0.1.1-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91523a217e232895f3af8e422b3a3d11b85d135b36a467bdc8f723b480d8f866",
"md5": "53c5b9182c96347713e95b458416447e",
"sha256": "124d6c363251cad65945f2eec21f0b6b8e45429783360f27758837a1b6eaf8f5"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "53c5b9182c96347713e95b458416447e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 144870,
"upload_time": "2024-10-28T19:42:30",
"upload_time_iso_8601": "2024-10-28T19:42:30.955596Z",
"url": "https://files.pythonhosted.org/packages/91/52/3a217e232895f3af8e422b3a3d11b85d135b36a467bdc8f723b480d8f866/wkbparse-0.1.1-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32f599c3868fd5a501ffdbb173494f623909ce38eb88a6ed0f6ae1975b696583",
"md5": "78c431401b61ed3863028126ec69f3c6",
"sha256": "e31e508d4a1a2217f35747a7bb69153f0dae0b2b7277e726ffbcd7e6ab1753f2"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "78c431401b61ed3863028126ec69f3c6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 251868,
"upload_time": "2024-10-28T19:40:28",
"upload_time_iso_8601": "2024-10-28T19:40:28.027913Z",
"url": "https://files.pythonhosted.org/packages/32/f5/99c3868fd5a501ffdbb173494f623909ce38eb88a6ed0f6ae1975b696583/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79720c7858c45601d89102a1b217570384a89dc14f64e74eb34dec7fe2ced0f2",
"md5": "4787d857cc1885c74a5162e4a9f4d941",
"sha256": "fce5f99da66d0ddfdaa86ff9c406555821bd791c25cfda0c027718dd6c25e2dc"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4787d857cc1885c74a5162e4a9f4d941",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 264061,
"upload_time": "2024-10-28T19:40:41",
"upload_time_iso_8601": "2024-10-28T19:40:41.793149Z",
"url": "https://files.pythonhosted.org/packages/79/72/0c7858c45601d89102a1b217570384a89dc14f64e74eb34dec7fe2ced0f2/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "972611531f1665e9ef7d68eb9db3129b99fe579d0729f26a2df73ae6e36e3492",
"md5": "35571f782071dd5276ddf0c9cf87945d",
"sha256": "b235ab96f24595460085be7cda617ed16f84e3b4ceb2a3afc1187c53a9df99fa"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "35571f782071dd5276ddf0c9cf87945d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 281112,
"upload_time": "2024-10-28T19:40:53",
"upload_time_iso_8601": "2024-10-28T19:40:53.168345Z",
"url": "https://files.pythonhosted.org/packages/97/26/11531f1665e9ef7d68eb9db3129b99fe579d0729f26a2df73ae6e36e3492/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7da2b916cbddfdea093c72df8f6a39260a65f6d384ceb0b82329ad7d338c1b9c",
"md5": "95d22142ace1345235c2a2a6ecc1bcd9",
"sha256": "73481dc33a8ab7540c33ff82e0cc4a9f1dbba06d74c1c21007b3259e35701b06"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "95d22142ace1345235c2a2a6ecc1bcd9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 350904,
"upload_time": "2024-10-28T19:41:05",
"upload_time_iso_8601": "2024-10-28T19:41:05.844962Z",
"url": "https://files.pythonhosted.org/packages/7d/a2/b916cbddfdea093c72df8f6a39260a65f6d384ceb0b82329ad7d338c1b9c/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6a30658b2dc3f9159cc9f81fd9487668d0f3dc7731f8b76b9d11747bf3600c7",
"md5": "d762af3542eaa1822335e0dbd703b3e9",
"sha256": "f62a185b67b4eed994c22767c22f5b34afc7470e8998b24e5166e5e71890e879"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d762af3542eaa1822335e0dbd703b3e9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 256949,
"upload_time": "2024-10-28T19:41:26",
"upload_time_iso_8601": "2024-10-28T19:41:26.837491Z",
"url": "https://files.pythonhosted.org/packages/a6/a3/0658b2dc3f9159cc9f81fd9487668d0f3dc7731f8b76b9d11747bf3600c7/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e75781794101a5c379fe0a3b576a421523fb85c4c84b5d5f876ee265e163e50",
"md5": "1e5c1cf32604df0169c43e5dbaf06414",
"sha256": "33e994865ff3572a61bf36aa946f16403c59992694b5418263e4b4be42ca5130"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1e5c1cf32604df0169c43e5dbaf06414",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 268239,
"upload_time": "2024-10-28T19:41:17",
"upload_time_iso_8601": "2024-10-28T19:41:17.301566Z",
"url": "https://files.pythonhosted.org/packages/9e/75/781794101a5c379fe0a3b576a421523fb85c4c84b5d5f876ee265e163e50/wkbparse-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "898c686b1684f7c8e3ebd63a2d70bfd6a918b8e94ffc98aefdb79f28658e14c3",
"md5": "eee2ef644c2f7f033c4a1057273d98b2",
"sha256": "f052b26f21b193c8f7a41a9bc1a0b551afb719d25e188f687544dc5ad8407c79"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "eee2ef644c2f7f033c4a1057273d98b2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 434188,
"upload_time": "2024-10-28T19:41:44",
"upload_time_iso_8601": "2024-10-28T19:41:44.217352Z",
"url": "https://files.pythonhosted.org/packages/89/8c/686b1684f7c8e3ebd63a2d70bfd6a918b8e94ffc98aefdb79f28658e14c3/wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7db62b08878924afc5619de12fb07f7921b7e1fb16544af5d45cf905c7e7a01",
"md5": "b8020df4f6a5bf240dfe8a7f1cee5a13",
"sha256": "acbfbdc590e827d3e2722c75c9428ec990c299f09dc3d010feed0a71b44c9df7"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b8020df4f6a5bf240dfe8a7f1cee5a13",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 523680,
"upload_time": "2024-10-28T19:41:55",
"upload_time_iso_8601": "2024-10-28T19:41:55.332913Z",
"url": "https://files.pythonhosted.org/packages/e7/db/62b08878924afc5619de12fb07f7921b7e1fb16544af5d45cf905c7e7a01/wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af827188a4b9bd7ddd6b0e776098baf5520506e65980376547450ba079e4fc77",
"md5": "44f228c95b8d2651cd6c25a15a96d787",
"sha256": "6fce5310efdbb34c3222eab9efb1f44b63dbb9db78b839e86c364eea1bf6304e"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "44f228c95b8d2651cd6c25a15a96d787",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 437743,
"upload_time": "2024-10-28T19:42:07",
"upload_time_iso_8601": "2024-10-28T19:42:07.567098Z",
"url": "https://files.pythonhosted.org/packages/af/82/7188a4b9bd7ddd6b0e776098baf5520506e65980376547450ba079e4fc77/wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9360b69416ee280011a8437bc182d2d5ade8a55c329428618b834d37a103f16e",
"md5": "435d39423098226d057734d8c647afad",
"sha256": "e51c78752d806215e17f67f8f6618b203c3c74fbe4887d2ccdc76e4286ce2f1f"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "435d39423098226d057734d8c647afad",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 421576,
"upload_time": "2024-10-28T19:42:18",
"upload_time_iso_8601": "2024-10-28T19:42:18.641196Z",
"url": "https://files.pythonhosted.org/packages/93/60/b69416ee280011a8437bc182d2d5ade8a55c329428618b834d37a103f16e/wkbparse-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "517a275910aab74e4376816543d2a4d3874ef426ea74c4630470fea1ec73883a",
"md5": "9a2f3163194276f99939a96add6b9e83",
"sha256": "11a340e521960920794240eae29e6b515d45eb6b96c8d7c17b49eac711f5cf30"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9a2f3163194276f99939a96add6b9e83",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 251598,
"upload_time": "2024-10-28T19:40:29",
"upload_time_iso_8601": "2024-10-28T19:40:29.692953Z",
"url": "https://files.pythonhosted.org/packages/51/7a/275910aab74e4376816543d2a4d3874ef426ea74c4630470fea1ec73883a/wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "07c7a0d8857cc20c0b348b1a62635e7d3d2a7022bd33c6619eb78b6bb84061fd",
"md5": "ec98465309d5ed16aa0ca7e7513b5100",
"sha256": "d23fa6e8c4f36538db33fec2a1816e242d7f19c06100f0097e8df763f7a3a248"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ec98465309d5ed16aa0ca7e7513b5100",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 264052,
"upload_time": "2024-10-28T19:40:42",
"upload_time_iso_8601": "2024-10-28T19:40:42.975214Z",
"url": "https://files.pythonhosted.org/packages/07/c7/a0d8857cc20c0b348b1a62635e7d3d2a7022bd33c6619eb78b6bb84061fd/wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f49198967937ee4c10439052339af111112ce08d43b59501d7246dcdad6ac208",
"md5": "ef96ea56ebf83e5c1da9fa1fa0d33083",
"sha256": "9fd2708abd1ff7b391943213c12d397f43120d410a0fbccc8024e13245ba49a8"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ef96ea56ebf83e5c1da9fa1fa0d33083",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 280935,
"upload_time": "2024-10-28T19:40:54",
"upload_time_iso_8601": "2024-10-28T19:40:54.266201Z",
"url": "https://files.pythonhosted.org/packages/f4/91/98967937ee4c10439052339af111112ce08d43b59501d7246dcdad6ac208/wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "687c6dd2f678369663be47d3db4d7ae302231b34895e01983963268d3d7d1e7a",
"md5": "1183310cbacd97e7a7e2f0622bdd0afa",
"sha256": "3f8f889e93d4ec747509cbbf70faab7b232fe69dd2bc1d86688dc63220f7a573"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1183310cbacd97e7a7e2f0622bdd0afa",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 350856,
"upload_time": "2024-10-28T19:41:06",
"upload_time_iso_8601": "2024-10-28T19:41:06.968381Z",
"url": "https://files.pythonhosted.org/packages/68/7c/6dd2f678369663be47d3db4d7ae302231b34895e01983963268d3d7d1e7a/wkbparse-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff13cd3727dfa2df60898fbce0d8fb2a4aa87a777a267cca672484a43034b9ab",
"md5": "a315bfee6cfa0fb5e2ea322828f481cd",
"sha256": "009525741ea95a1d0eaba6fa5f95c8e4218faca9fb9c9594fee0125d3a644aae"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a315bfee6cfa0fb5e2ea322828f481cd",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 434288,
"upload_time": "2024-10-28T19:41:45",
"upload_time_iso_8601": "2024-10-28T19:41:45.602448Z",
"url": "https://files.pythonhosted.org/packages/ff/13/cd3727dfa2df60898fbce0d8fb2a4aa87a777a267cca672484a43034b9ab/wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0289447b4ba75cb6ef40f291fcdef5fe4b17c3e5b8ce2c38283651bc70652636",
"md5": "b5f24cf6b662885e247ad0b6c85ef42a",
"sha256": "e8bfedcf2613c9dbcbe97c986d713520613e9d91b303c1f41738ceda81a35dfc"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b5f24cf6b662885e247ad0b6c85ef42a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 523750,
"upload_time": "2024-10-28T19:41:56",
"upload_time_iso_8601": "2024-10-28T19:41:56.804513Z",
"url": "https://files.pythonhosted.org/packages/02/89/447b4ba75cb6ef40f291fcdef5fe4b17c3e5b8ce2c38283651bc70652636/wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb4046d412f4270eca31627cfc6ea95026eb6aecb5ad9b1fbc99f62b49c3bcc6",
"md5": "6a37d97015566c57277610dd0f99b10f",
"sha256": "5210b42a7c680099a0d5248bd534b30edaacfca3b2b5789f896ffb6ab3c69e63"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6a37d97015566c57277610dd0f99b10f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 437757,
"upload_time": "2024-10-28T19:42:08",
"upload_time_iso_8601": "2024-10-28T19:42:08.955522Z",
"url": "https://files.pythonhosted.org/packages/fb/40/46d412f4270eca31627cfc6ea95026eb6aecb5ad9b1fbc99f62b49c3bcc6/wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf5a6e170530a7f079a35e45882c71aca9388e0c02545ce8ccb6a7c4b7be6b14",
"md5": "efa11640ed64b13df1dfe6abdf8beb23",
"sha256": "32b716514e816b03bdaf962c8140132ef0c33fd864db1ebd9b01f3bc1774d139"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "efa11640ed64b13df1dfe6abdf8beb23",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 421520,
"upload_time": "2024-10-28T19:42:19",
"upload_time_iso_8601": "2024-10-28T19:42:19.903570Z",
"url": "https://files.pythonhosted.org/packages/cf/5a/6e170530a7f079a35e45882c71aca9388e0c02545ce8ccb6a7c4b7be6b14/wkbparse-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c07519ba0c85a9b6a3757e6e027661f7eaf3e72c3186fce8d51235e269b68f2d",
"md5": "9caf263339d444141bc9ee6fcd8a70e8",
"sha256": "500c9ca3860d410a4aebf9792b442d4e5e5d5f7bda6503245f33b2bc4324ac1d"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9caf263339d444141bc9ee6fcd8a70e8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 251863,
"upload_time": "2024-10-28T19:40:31",
"upload_time_iso_8601": "2024-10-28T19:40:31.364057Z",
"url": "https://files.pythonhosted.org/packages/c0/75/19ba0c85a9b6a3757e6e027661f7eaf3e72c3186fce8d51235e269b68f2d/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e00d9853d5a981c917e893abff860e6a9b311645cdfb470c06ad72310ebfa2fe",
"md5": "acdb3caff74684175a6fc29e77d3282a",
"sha256": "5c25ae84cf400a0269eaf0a751ed4bb68a1864e2bacc7786fdfa6978e9acf502"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "acdb3caff74684175a6fc29e77d3282a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 264056,
"upload_time": "2024-10-28T19:40:44",
"upload_time_iso_8601": "2024-10-28T19:40:44.179582Z",
"url": "https://files.pythonhosted.org/packages/e0/0d/9853d5a981c917e893abff860e6a9b311645cdfb470c06ad72310ebfa2fe/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22b6305b346d5b00443a9751e5441edec812bcdac5d32e1d397bf796bd8e6816",
"md5": "f7407f1028538d6782fed3792eb156cf",
"sha256": "d10cf996d670ff6f042135ddcb6882f365362399af901c22b505ca5a3ab2a6a6"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f7407f1028538d6782fed3792eb156cf",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 281109,
"upload_time": "2024-10-28T19:40:56",
"upload_time_iso_8601": "2024-10-28T19:40:56.227613Z",
"url": "https://files.pythonhosted.org/packages/22/b6/305b346d5b00443a9751e5441edec812bcdac5d32e1d397bf796bd8e6816/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76a04627d5b2be69e60c8458bd17aa27957645d36c066e6c616805575c30ba0f",
"md5": "1eda94bcfc1f9b33bacf6c20507a422b",
"sha256": "e30942f5995820816ed18ab101137ddbfc36ab3e8fb6f75918c5ad06a09d90c4"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1eda94bcfc1f9b33bacf6c20507a422b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 350900,
"upload_time": "2024-10-28T19:41:08",
"upload_time_iso_8601": "2024-10-28T19:41:08.658076Z",
"url": "https://files.pythonhosted.org/packages/76/a0/4627d5b2be69e60c8458bd17aa27957645d36c066e6c616805575c30ba0f/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf98f146abbbbcd999ee0d653da08ab085af3bc1a4240970c8156e944855a983",
"md5": "08fd9d14d6471564576a9c1c1e828564",
"sha256": "f91cbb9e15c79f32f4f927a00cbbf763acaa2cc379fae627b26a8694c375e701"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "08fd9d14d6471564576a9c1c1e828564",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 257310,
"upload_time": "2024-10-28T19:41:28",
"upload_time_iso_8601": "2024-10-28T19:41:28.271844Z",
"url": "https://files.pythonhosted.org/packages/bf/98/f146abbbbcd999ee0d653da08ab085af3bc1a4240970c8156e944855a983/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a87d573536777639f2ef4b5e83c93dc81a4d12c187c58754a0380e918de7532",
"md5": "6aa8d3c87564262b2eaa7fc2d0a0b3b7",
"sha256": "a2b2dde10fd54f50f8a3b9bfe7a5ad336a6222ebee4208db32a18a8562ecdf96"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "6aa8d3c87564262b2eaa7fc2d0a0b3b7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 268235,
"upload_time": "2024-10-28T19:41:19",
"upload_time_iso_8601": "2024-10-28T19:41:19.329320Z",
"url": "https://files.pythonhosted.org/packages/9a/87/d573536777639f2ef4b5e83c93dc81a4d12c187c58754a0380e918de7532/wkbparse-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8d7c4bdb9a7e8cf12199b0dbe0ac46aa6e11be34693204b620b807166867279",
"md5": "1a91f47d34956bb882a4212661c1a7a4",
"sha256": "75ac2cb5c3220a2829e9cde099679a729acba37adb8528f04f16b36970645352"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1a91f47d34956bb882a4212661c1a7a4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 434137,
"upload_time": "2024-10-28T19:41:46",
"upload_time_iso_8601": "2024-10-28T19:41:46.850355Z",
"url": "https://files.pythonhosted.org/packages/b8/d7/c4bdb9a7e8cf12199b0dbe0ac46aa6e11be34693204b620b807166867279/wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fc067825981fff341108783174b92b82695cf530972c283c2c2c25a13cb1974",
"md5": "4d26f66a82d33bf6741b5ac787dccce4",
"sha256": "446b3661bbce334258161a6a8ca8888c2840860a22805912dbac7d0edaacde83"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4d26f66a82d33bf6741b5ac787dccce4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 523684,
"upload_time": "2024-10-28T19:41:58",
"upload_time_iso_8601": "2024-10-28T19:41:58.208566Z",
"url": "https://files.pythonhosted.org/packages/0f/c0/67825981fff341108783174b92b82695cf530972c283c2c2c25a13cb1974/wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58faadebcc97ab768db7d2c7d3a0e14fd0bed2ee204b43ffc24c6a1998000ec5",
"md5": "f7a0767329186c166576318752147088",
"sha256": "610fb4fcdd8455bf17ce81ebdbdc364c5bce954052f4af11e87f1c2e639e10ab"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f7a0767329186c166576318752147088",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 437735,
"upload_time": "2024-10-28T19:42:10",
"upload_time_iso_8601": "2024-10-28T19:42:10.371659Z",
"url": "https://files.pythonhosted.org/packages/58/fa/adebcc97ab768db7d2c7d3a0e14fd0bed2ee204b43ffc24c6a1998000ec5/wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f76d8db19a398724671b8ee8873b5b7619ad051dbc63a63cada2dd8bb722063",
"md5": "9dcf36adf9833132febf678e4bfb4d37",
"sha256": "e83d7d668b4f5cad9af994f39215afe2df858a81d2ae2e17b540e39b90b5c3b3"
},
"downloads": -1,
"filename": "wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9dcf36adf9833132febf678e4bfb4d37",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 421577,
"upload_time": "2024-10-28T19:42:21",
"upload_time_iso_8601": "2024-10-28T19:42:21.289422Z",
"url": "https://files.pythonhosted.org/packages/1f/76/d8db19a398724671b8ee8873b5b7619ad051dbc63a63cada2dd8bb722063/wkbparse-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acbf2040fa89c2ac6f3fae7cc5dbe9a1f35db65824046150c7cb81ea13005b92",
"md5": "f1cea31044ec57a61f8c33e1d1269dc3",
"sha256": "43b93025ec9352fce74c0cc8476a94f287320fe1465967fd05097297baf73010"
},
"downloads": -1,
"filename": "wkbparse-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "f1cea31044ec57a61f8c33e1d1269dc3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 49974,
"upload_time": "2024-10-28T19:42:22",
"upload_time_iso_8601": "2024-10-28T19:42:22.485910Z",
"url": "https://files.pythonhosted.org/packages/ac/bf/2040fa89c2ac6f3fae7cc5dbe9a1f35db65824046150c7cb81ea13005b92/wkbparse-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-28 19:42:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "arjuote",
"github_project": "wkbparse",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "wkbparse"
}