# 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.
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.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.
## Reprojection
Install `wkbparse-proj` instead of `wkbparse` to enable coordinate reprojection using the [Proj](https://github.com/OSGeo/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](https://proj.org/en/stable/install.html).
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.
`wbkparse-proj` pre-built wheels are only shipped for major Linux x86_64 platforms and MacOS.
## 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:
```python
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.
```python
{'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`
```python
import wkbparse
twkb_bytes = bytes.fromhex("610805d00fa01f50")
geometry = wkbparse.twkb_to_geojson(twkb_bytes, from_srid=4326, to_srid=3857)
print(geometry)
```
```python
{'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`:
```python
import wkbparse
d = {"type": "Point", "crs": 3857, "coordinates": [111319.49079327357, 222684.20850554405, 4.0]}
reprojected = wkbparse.reproject_geojson(d, to_srid=4326)
print(reprojected)
```
```python
{'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.
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/f3/a4/1c0fbef3722475e2cced67062f6ffcac876f0912e9a02664b5098f91d64c/wkbparse-0.2.0.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\nIt 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.\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## Reprojection\n\nInstall `wkbparse-proj` instead of `wkbparse` to enable coordinate reprojection using the [Proj](https://github.com/OSGeo/PROJ) project.\n\nUsing 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.\n\nPre-installed proj library must be present on the system for this feature to work. See [Proj installation](https://proj.org/en/stable/install.html).\n\nUsing `wkbparse-proj` bumps up the package size from ~250 kilobytes to ~10 megabytes due to rather large size of the Proj C++-dependency.\n\nNOTE: 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.\n\n`wbkparse-proj` pre-built wheels are only shipped for major Linux x86_64 platforms and MacOS.\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- Reproject geojson `reproject_geojson` (only with `wkbparse-proj`)\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 result dict has the following shape:\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\nE.g.\n\n```python\n{'type': 'Point', 'crs': None, 'coordinates': [1.0, 2.0, 4.0]}\n```\n\nTo reproject data when using `wkbparse-proj` we can additionally pass in `from_srid` and `to_srid`\n\n```python\nimport wkbparse\n\ntwkb_bytes = bytes.fromhex(\"610805d00fa01f50\")\ngeometry = wkbparse.twkb_to_geojson(twkb_bytes, from_srid=4326, to_srid=3857)\nprint(geometry)\n```\n\n```python\n{'type': 'Point', 'crs': 3857, 'coordinates': [111319.49079327357, 222684.20850554405, 4.0]}\n```\n\nIf we already have a dictionary as above, we can reproject it with `reproject_geojson`:\n\n```python\nimport wkbparse\n\nd = {\"type\": \"Point\", \"crs\": 3857, \"coordinates\": [111319.49079327357, 222684.20850554405, 4.0]}\n\nreprojected = wkbparse.reproject_geojson(d, to_srid=4326)\nprint(reprojected)\n```\n\n```python\n{'type': 'Point', 'crs': 4326, 'coordinates': [0.9999999999999998, 1.9999999999999996, 4.0]}\n```\n\nNote 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.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "EWKB and TWKB parsing and conversion to GeoJSON",
"version": "0.2.0",
"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": "a1c43c213603fab4c3aa77c78e4df6af78b68b235a622e7684a44dc7ffe3b210",
"md5": "1dfa38ba0536de58655c5306c341799d",
"sha256": "98b7cdfc9e2ee5f5b04e6658425f5daeab84b97ae9b6fb10a88d3c9cc59073fd"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1dfa38ba0536de58655c5306c341799d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 261006,
"upload_time": "2025-01-26T15:35:38",
"upload_time_iso_8601": "2025-01-26T15:35:38.136054Z",
"url": "https://files.pythonhosted.org/packages/a1/c4/3c213603fab4c3aa77c78e4df6af78b68b235a622e7684a44dc7ffe3b210/wkbparse-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "672bafb6059382825e9ed69eaec205fae6e04b5d718a1b5e464b3850acd30344",
"md5": "bd0442b1a6ae3e7a50a17d4ddd3b9985",
"sha256": "51d494b20da979eae5ae45bd74ad1bc603d89b6f7e399583d4ac98d0d036a812"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bd0442b1a6ae3e7a50a17d4ddd3b9985",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 273641,
"upload_time": "2025-01-26T15:35:55",
"upload_time_iso_8601": "2025-01-26T15:35:55.674662Z",
"url": "https://files.pythonhosted.org/packages/67/2b/afb6059382825e9ed69eaec205fae6e04b5d718a1b5e464b3850acd30344/wkbparse-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "826174a36271474e64ea01c92f9f2de0f6a62538d0cb745911dff35444ae9c84",
"md5": "4766aa795cfcb6ae703dac8591f14671",
"sha256": "fc7768f4206345e93712de09a24e3e5c9dd665250b2a97723ac4051411679c6e"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4766aa795cfcb6ae703dac8591f14671",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 288747,
"upload_time": "2025-01-26T15:36:17",
"upload_time_iso_8601": "2025-01-26T15:36:17.259620Z",
"url": "https://files.pythonhosted.org/packages/82/61/74a36271474e64ea01c92f9f2de0f6a62538d0cb745911dff35444ae9c84/wkbparse-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38bf3f46b31c779b0fab6689c004263981eab672c46e4ceab469620e3de67f73",
"md5": "2c1390f12469694f9931f37d461ccde3",
"sha256": "90f016d2c84aa9cc0d631802c9554e0a910a49edaf5deeda9b1482bffd9378ae"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2c1390f12469694f9931f37d461ccde3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 361547,
"upload_time": "2025-01-26T15:36:34",
"upload_time_iso_8601": "2025-01-26T15:36:34.184048Z",
"url": "https://files.pythonhosted.org/packages/38/bf/3f46b31c779b0fab6689c004263981eab672c46e4ceab469620e3de67f73/wkbparse-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23b2db4be7339ddfcebdec2ce879288badcabb9bd224b868c30be8350f522c72",
"md5": "9b05c951a1361b78a8772696e655d88c",
"sha256": "f9b11d5339baadffb2a2bc5be8c4ea391937517c771d619d4e3163236ff1bda6"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9b05c951a1361b78a8772696e655d88c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 266535,
"upload_time": "2025-01-26T15:37:04",
"upload_time_iso_8601": "2025-01-26T15:37:04.946510Z",
"url": "https://files.pythonhosted.org/packages/23/b2/db4be7339ddfcebdec2ce879288badcabb9bd224b868c30be8350f522c72/wkbparse-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ce9a992ce00cc44fc1ff8c577165fc1e066a8e218e42e42c7faee5fde05ab0c",
"md5": "a604d198eade8ab2e6dc5e414d991748",
"sha256": "4617d58d622edb9242e8f847be3cd56b3fc6eef9a23e4fb9d57683c4df446338"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a604d198eade8ab2e6dc5e414d991748",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 276738,
"upload_time": "2025-01-26T15:36:50",
"upload_time_iso_8601": "2025-01-26T15:36:50.380295Z",
"url": "https://files.pythonhosted.org/packages/4c/e9/a992ce00cc44fc1ff8c577165fc1e066a8e218e42e42c7faee5fde05ab0c/wkbparse-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c275cda1fa65abbc3334a9275470e72808d3842e8293471034cacb9dbb62b5ff",
"md5": "734e0c5060523d7241ed5175a64ad009",
"sha256": "8533e87a0d8a24a923ff1e9ea1aa1d96d2baf201c82520f12a36e920631d4017"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "734e0c5060523d7241ed5175a64ad009",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 433776,
"upload_time": "2025-01-26T15:37:23",
"upload_time_iso_8601": "2025-01-26T15:37:23.523876Z",
"url": "https://files.pythonhosted.org/packages/c2/75/cda1fa65abbc3334a9275470e72808d3842e8293471034cacb9dbb62b5ff/wkbparse-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0355231feda4fe842905561a31de4da8f5657301c5ce1613cf82f13de6ed136e",
"md5": "33bba32a427a9498f7c718b4d442ae81",
"sha256": "c5ac3b467dfd8d2196c76c71b650ce4ad3cb3c0252e3c081d16dabc6dcda7c86"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "33bba32a427a9498f7c718b4d442ae81",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 532008,
"upload_time": "2025-01-26T15:37:38",
"upload_time_iso_8601": "2025-01-26T15:37:38.889838Z",
"url": "https://files.pythonhosted.org/packages/03/55/231feda4fe842905561a31de4da8f5657301c5ce1613cf82f13de6ed136e/wkbparse-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02d02ace1b117d5edba74f61b3eab3bc3247889412a0be5d751b885991038bde",
"md5": "aa558606fc9ef4d252a2bc2ad49b02c8",
"sha256": "c8b292d295f775ad7794afd41ccb95ad5441c7a3e42ffd0a2ca5e240f10d7872"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "aa558606fc9ef4d252a2bc2ad49b02c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 452440,
"upload_time": "2025-01-26T15:37:54",
"upload_time_iso_8601": "2025-01-26T15:37:54.773244Z",
"url": "https://files.pythonhosted.org/packages/02/d0/2ace1b117d5edba74f61b3eab3bc3247889412a0be5d751b885991038bde/wkbparse-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5936f690d94aebf73ccecc034ca145a813731cbc33dab641c38a1b4f5597d9bb",
"md5": "ad1e2681df692c24975cdeca9514eaef",
"sha256": "328cac091c30789ba873a12ad2fb08a15839c4e8fdc76822d7671d9740af3ee9"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ad1e2681df692c24975cdeca9514eaef",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 432932,
"upload_time": "2025-01-26T15:38:10",
"upload_time_iso_8601": "2025-01-26T15:38:10.945038Z",
"url": "https://files.pythonhosted.org/packages/59/36/f690d94aebf73ccecc034ca145a813731cbc33dab641c38a1b4f5597d9bb/wkbparse-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38ed18e67ac753391d620d8f788f2405c2872ae6576c1810a5ff2dcc551e6fd5",
"md5": "20bb6b7157d3257ac09c9854954bc133",
"sha256": "3610e133277b189e9e904dbe60b10708a6f2febd136c1292992d54cecd38fd17"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "20bb6b7157d3257ac09c9854954bc133",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 139765,
"upload_time": "2025-01-26T15:38:37",
"upload_time_iso_8601": "2025-01-26T15:38:37.673564Z",
"url": "https://files.pythonhosted.org/packages/38/ed/18e67ac753391d620d8f788f2405c2872ae6576c1810a5ff2dcc551e6fd5/wkbparse-0.2.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c51e38f49d8db00585751bfcab35373a7c8490b35c3baf18575c3e770b8abd4",
"md5": "105ef4da6829243d7819aee59be23890",
"sha256": "41cc697e75f1270bdb257081c248de5d12948b48cf0649322f82f6029c054cf4"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "105ef4da6829243d7819aee59be23890",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 146431,
"upload_time": "2025-01-26T15:38:29",
"upload_time_iso_8601": "2025-01-26T15:38:29.169217Z",
"url": "https://files.pythonhosted.org/packages/4c/51/e38f49d8db00585751bfcab35373a7c8490b35c3baf18575c3e770b8abd4/wkbparse-0.2.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "070c3460dff72899f1fab644eb2375c6dde93209501db4f3768cffb873b69991",
"md5": "d2974ec2849b30dab802db35ddb2d7cb",
"sha256": "646e72f2e575a1475c121c6d16dd480dabbb2fd93efe5ef6770603012390796f"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d2974ec2849b30dab802db35ddb2d7cb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 235513,
"upload_time": "2025-01-26T15:37:18",
"upload_time_iso_8601": "2025-01-26T15:37:18.599033Z",
"url": "https://files.pythonhosted.org/packages/07/0c/3460dff72899f1fab644eb2375c6dde93209501db4f3768cffb873b69991/wkbparse-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68e2e93df1e383410f9fc719509c566561f2033a18c80c88f33fc95e771e42a8",
"md5": "f264b0e8d5246ebcdac844dcb06c7b95",
"sha256": "d7243fac8f110e4117d7948fcf22b9036b075239e54a0df6e693491a74d2d9a9"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f264b0e8d5246ebcdac844dcb06c7b95",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 261005,
"upload_time": "2025-01-26T15:35:40",
"upload_time_iso_8601": "2025-01-26T15:35:40.451655Z",
"url": "https://files.pythonhosted.org/packages/68/e2/e93df1e383410f9fc719509c566561f2033a18c80c88f33fc95e771e42a8/wkbparse-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3405a068ced4a656fedf9b2a208e34b0159480ebc8d7c10524829dc5c4bf95a",
"md5": "a23b74ee774dd108b5d6a0216c18bf3b",
"sha256": "fad1072f9fa556149fec0d61bd4a07720899f86ac789870974c56a7b0d8a70cb"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a23b74ee774dd108b5d6a0216c18bf3b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 273640,
"upload_time": "2025-01-26T15:35:57",
"upload_time_iso_8601": "2025-01-26T15:35:57.978508Z",
"url": "https://files.pythonhosted.org/packages/d3/40/5a068ced4a656fedf9b2a208e34b0159480ebc8d7c10524829dc5c4bf95a/wkbparse-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8bee115f17fc1d2363fca5765d8c152e33f441429d1e5c2d8cde737be08e2cbf",
"md5": "3b78d24cfece0a229a61436cd40022fc",
"sha256": "6b8d8849b9f02d0239c22001a054f825a991b8a9daecba97c511811798aab14c"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3b78d24cfece0a229a61436cd40022fc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 288748,
"upload_time": "2025-01-26T15:36:19",
"upload_time_iso_8601": "2025-01-26T15:36:19.131187Z",
"url": "https://files.pythonhosted.org/packages/8b/ee/115f17fc1d2363fca5765d8c152e33f441429d1e5c2d8cde737be08e2cbf/wkbparse-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e713124c04e7f2e70ec839744612aec808bbe5a4cc1f840e8263a66fef450be6",
"md5": "7e9b875caf7ff3dc49f584146c22e081",
"sha256": "f5d715a3a0a42d5895d5733f97232306c5aeaccd8b25d32b1e6962fa824ac042"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7e9b875caf7ff3dc49f584146c22e081",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 361545,
"upload_time": "2025-01-26T15:36:35",
"upload_time_iso_8601": "2025-01-26T15:36:35.958912Z",
"url": "https://files.pythonhosted.org/packages/e7/13/124c04e7f2e70ec839744612aec808bbe5a4cc1f840e8263a66fef450be6/wkbparse-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2003ef29f8ec1f4faea34d603d9d8e7e9862368d41941313cf2c1f60a7657f17",
"md5": "ec4a90d2b1d42b3c04294bf4929624fc",
"sha256": "fc5d698462592c7825c7222b66e89deefb388f3bc2b7c61349243f756fb6083d"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ec4a90d2b1d42b3c04294bf4929624fc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 266535,
"upload_time": "2025-01-26T15:37:07",
"upload_time_iso_8601": "2025-01-26T15:37:07.222661Z",
"url": "https://files.pythonhosted.org/packages/20/03/ef29f8ec1f4faea34d603d9d8e7e9862368d41941313cf2c1f60a7657f17/wkbparse-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7578dad0c3fb54c6ac77329b2482e618220ca8d1cdf9746f093872caa4853646",
"md5": "14ac9387d4b2a8961e377572d4f4a194",
"sha256": "c49fa65b47635fc25f0e4c565d9d800d2ac3a727cd1ac95029d0c09219bddbf6"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "14ac9387d4b2a8961e377572d4f4a194",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 276736,
"upload_time": "2025-01-26T15:36:54",
"upload_time_iso_8601": "2025-01-26T15:36:54.166636Z",
"url": "https://files.pythonhosted.org/packages/75/78/dad0c3fb54c6ac77329b2482e618220ca8d1cdf9746f093872caa4853646/wkbparse-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de9f47aefd372d434fb9b19b274b204916c7a45e2dd55312af8497c03ad8d0ce",
"md5": "7b1c9cfe71bb62972b2f27e6878eeb3e",
"sha256": "621a3a02f6e2469a2df8b23dd26844d37c07ef26fc4b5461f81080d9671a78b0"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7b1c9cfe71bb62972b2f27e6878eeb3e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 433776,
"upload_time": "2025-01-26T15:37:26",
"upload_time_iso_8601": "2025-01-26T15:37:26.059908Z",
"url": "https://files.pythonhosted.org/packages/de/9f/47aefd372d434fb9b19b274b204916c7a45e2dd55312af8497c03ad8d0ce/wkbparse-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "417237f72d67db0b57990a83987ecc6d5197e45ed6d1f27328986bc9ed3199ab",
"md5": "816e5661d5133ca36f88c6e9f5f51cba",
"sha256": "372317bd5a613eacd15bb3a03b34c70ebf4c6e93161831ba4b413b823f200891"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "816e5661d5133ca36f88c6e9f5f51cba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 532010,
"upload_time": "2025-01-26T15:37:40",
"upload_time_iso_8601": "2025-01-26T15:37:40.655081Z",
"url": "https://files.pythonhosted.org/packages/41/72/37f72d67db0b57990a83987ecc6d5197e45ed6d1f27328986bc9ed3199ab/wkbparse-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e6d76405bac39a74dc10c1182b3c19f5a45594755cb9d7b29d1459b59e07c53",
"md5": "0e038a429faf6774ebb6a8139cc9f052",
"sha256": "bda1984e8aaabc17de6db653500a8137f4f818984f3512f662d5ef9e152e18e3"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0e038a429faf6774ebb6a8139cc9f052",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 452441,
"upload_time": "2025-01-26T15:37:56",
"upload_time_iso_8601": "2025-01-26T15:37:56.288715Z",
"url": "https://files.pythonhosted.org/packages/7e/6d/76405bac39a74dc10c1182b3c19f5a45594755cb9d7b29d1459b59e07c53/wkbparse-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9be54c0c1f46ef83c14caa498b8fabc5415f5831a5c0a23e647264cc9bb6ba9",
"md5": "41b65ac7037986774b717f8bb09ae0d7",
"sha256": "3fd70177f6b9b2d1f78aa9b8606a6d26d7dd8ddfb7b7c4d6b9d65218f0c6b57e"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "41b65ac7037986774b717f8bb09ae0d7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 432933,
"upload_time": "2025-01-26T15:38:12",
"upload_time_iso_8601": "2025-01-26T15:38:12.546350Z",
"url": "https://files.pythonhosted.org/packages/c9/be/54c0c1f46ef83c14caa498b8fabc5415f5831a5c0a23e647264cc9bb6ba9/wkbparse-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2d5661bbdca9db6c3e42099fb49364419519c6f562ba457eaa9a0c91670a03a",
"md5": "9f18a45f942a2f5fb176d66528cf0298",
"sha256": "ad722c56a221e66f370f362016ffc331f5325b09dcb0027e7b03344a632a5ad8"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "9f18a45f942a2f5fb176d66528cf0298",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 139765,
"upload_time": "2025-01-26T15:38:39",
"upload_time_iso_8601": "2025-01-26T15:38:39.088570Z",
"url": "https://files.pythonhosted.org/packages/a2/d5/661bbdca9db6c3e42099fb49364419519c6f562ba457eaa9a0c91670a03a/wkbparse-0.2.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b54e00e81198efabe1c41e482e70ee8d33132d555004a87b4c821a27747f9ae9",
"md5": "e2ba16243e428cc5dbed37173968e7a4",
"sha256": "c8155d180de0e30a2324a3747c317a9766b18fc6ac0409604cca62340cc985e5"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e2ba16243e428cc5dbed37173968e7a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 146441,
"upload_time": "2025-01-26T15:38:30",
"upload_time_iso_8601": "2025-01-26T15:38:30.559705Z",
"url": "https://files.pythonhosted.org/packages/b5/4e/00e81198efabe1c41e482e70ee8d33132d555004a87b4c821a27747f9ae9/wkbparse-0.2.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8be526ef5fb09f35155b0e11e894c1660b8ce1cdc6549ae037036fc041df3f5",
"md5": "8bc9d05eea174f78573ec8aa75d03aa9",
"sha256": "90706336322de9d4330e8c071b9f2b48c0b2970b13f206c57ff4ae55f5d1a113"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8bc9d05eea174f78573ec8aa75d03aa9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 234594,
"upload_time": "2025-01-26T15:37:20",
"upload_time_iso_8601": "2025-01-26T15:37:20.069489Z",
"url": "https://files.pythonhosted.org/packages/c8/be/526ef5fb09f35155b0e11e894c1660b8ce1cdc6549ae037036fc041df3f5/wkbparse-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf40e076f98656fc078c8257f79ceffff9b733ddb39ad70332fe4df4c6e0c5c2",
"md5": "8671505f693400fffc96d67c08a0f02b",
"sha256": "73a130d4d25fbfb42606246aaaf17bde079bfedfcb7e714d980befab971c9036"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8671505f693400fffc96d67c08a0f02b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 260185,
"upload_time": "2025-01-26T15:35:42",
"upload_time_iso_8601": "2025-01-26T15:35:42.770285Z",
"url": "https://files.pythonhosted.org/packages/bf/40/e076f98656fc078c8257f79ceffff9b733ddb39ad70332fe4df4c6e0c5c2/wkbparse-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "998083aa767325756fdf3f8d4a19600953e7bb8f9fa417f47c9179b5a3ada651",
"md5": "771e67505ad80e156fc34f4634812715",
"sha256": "44be35b5756305bb47dff6a1d7518a92a28cd07c9f11d6817d7cbaf2534675ee"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "771e67505ad80e156fc34f4634812715",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 272527,
"upload_time": "2025-01-26T15:36:00",
"upload_time_iso_8601": "2025-01-26T15:36:00.133120Z",
"url": "https://files.pythonhosted.org/packages/99/80/83aa767325756fdf3f8d4a19600953e7bb8f9fa417f47c9179b5a3ada651/wkbparse-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f85237add63da34fea390e21bb58efc45bc288aae881e60841d87e87e2fc85ef",
"md5": "f950e602c679199b1d50b3c8cc041132",
"sha256": "f095fc1aa5c78da10628aabc31d39d2333efc3a5aea66374222decca80de71b1"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f950e602c679199b1d50b3c8cc041132",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 287499,
"upload_time": "2025-01-26T15:36:21",
"upload_time_iso_8601": "2025-01-26T15:36:21.609786Z",
"url": "https://files.pythonhosted.org/packages/f8/52/37add63da34fea390e21bb58efc45bc288aae881e60841d87e87e2fc85ef/wkbparse-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77b4d66517f107518f90fc287a45bbaa437cfe3fe85610bc28e9d66332ecfb43",
"md5": "6d048021999c6fc25b30e8917432813d",
"sha256": "bed79710ae6dc251a989a62e4d1773993aee61503f3a0bc4f69eb9023dbd4492"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6d048021999c6fc25b30e8917432813d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 351877,
"upload_time": "2025-01-26T15:36:37",
"upload_time_iso_8601": "2025-01-26T15:36:37.741391Z",
"url": "https://files.pythonhosted.org/packages/77/b4/d66517f107518f90fc287a45bbaa437cfe3fe85610bc28e9d66332ecfb43/wkbparse-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a86ecdd9f86921cbe82541d748317a789a9b875d40d375f3cfeeb0db734ef75",
"md5": "f7a1d2b70a6cfb1c61de8992d193ceff",
"sha256": "15c38c48c75980fe8a3e9f09c14fa1a99639f7794e41a843484ea36326fa797d"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7a1d2b70a6cfb1c61de8992d193ceff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 265766,
"upload_time": "2025-01-26T15:37:08",
"upload_time_iso_8601": "2025-01-26T15:37:08.967227Z",
"url": "https://files.pythonhosted.org/packages/1a/86/ecdd9f86921cbe82541d748317a789a9b875d40d375f3cfeeb0db734ef75/wkbparse-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ca61ddd7d567bf3acfa994bca99f8d7f576f7ef6874359f678a0e00af7615ef",
"md5": "d328b64c545d9ec9c6c5499e4b7673da",
"sha256": "d4dd5eb6eaeebf07918f147d53bdbee54f0a81940cd73ac4ebae275f65cd8b11"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d328b64c545d9ec9c6c5499e4b7673da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 275749,
"upload_time": "2025-01-26T15:36:55",
"upload_time_iso_8601": "2025-01-26T15:36:55.736554Z",
"url": "https://files.pythonhosted.org/packages/6c/a6/1ddd7d567bf3acfa994bca99f8d7f576f7ef6874359f678a0e00af7615ef/wkbparse-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c00dfcf55832b929aaf6db411efce614bedd679714d01a6a398e2199d028b3d",
"md5": "b59f323edea0079dfe5afd1d8813f195",
"sha256": "ad7b1f2e8fba17aad2023854e59746be06149e423a26a0d7238223b5729c7d2a"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b59f323edea0079dfe5afd1d8813f195",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 432891,
"upload_time": "2025-01-26T15:37:27",
"upload_time_iso_8601": "2025-01-26T15:37:27.602900Z",
"url": "https://files.pythonhosted.org/packages/4c/00/dfcf55832b929aaf6db411efce614bedd679714d01a6a398e2199d028b3d/wkbparse-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0c3cd7826f9aa5b816b5793e47336750d2c88f1e4b4a553d3f56d39d90e16d7",
"md5": "d517411249d5ef818316397097a8de16",
"sha256": "fe5bad861dfae932c84ad9d0666fa886f657483a082fb93372222ec32644ad2e"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d517411249d5ef818316397097a8de16",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 530625,
"upload_time": "2025-01-26T15:37:42",
"upload_time_iso_8601": "2025-01-26T15:37:42.536960Z",
"url": "https://files.pythonhosted.org/packages/a0/c3/cd7826f9aa5b816b5793e47336750d2c88f1e4b4a553d3f56d39d90e16d7/wkbparse-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e0c1bc520ee5d286b9662f6ba4679a2b026d66510e9d3c6efd56c6fdc74e6c0",
"md5": "1441bc6167b317da1ec327fa660cafcd",
"sha256": "30f34c2a205caf3eeebc0233d78c394dba161e516550c4a475c321802d5a6a89"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1441bc6167b317da1ec327fa660cafcd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 451525,
"upload_time": "2025-01-26T15:37:58",
"upload_time_iso_8601": "2025-01-26T15:37:58.452063Z",
"url": "https://files.pythonhosted.org/packages/1e/0c/1bc520ee5d286b9662f6ba4679a2b026d66510e9d3c6efd56c6fdc74e6c0/wkbparse-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fc841d6d614cf29cb113e4add05c7688e6032d1e7bec41c0c9901a6d3144cfe",
"md5": "ebd645958126a49ce413f2e89909cdf7",
"sha256": "170d4d6afd4416928ad9f3a7108cad6a8127e8015700605635d7d3b16b9229ed"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ebd645958126a49ce413f2e89909cdf7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 431519,
"upload_time": "2025-01-26T15:38:14",
"upload_time_iso_8601": "2025-01-26T15:38:14.163813Z",
"url": "https://files.pythonhosted.org/packages/4f/c8/41d6d614cf29cb113e4add05c7688e6032d1e7bec41c0c9901a6d3144cfe/wkbparse-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "130e0e50072b4c45ada9d56b92bcc2215b053815b546e2f22a6f0f3391d8ab58",
"md5": "d34ea57143ef94d1fc5046230af67f79",
"sha256": "d55a57074cac42a9a577aad24714076bb77a3797e8a3cb37a058cb6dea5b0586"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "d34ea57143ef94d1fc5046230af67f79",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 140039,
"upload_time": "2025-01-26T15:38:41",
"upload_time_iso_8601": "2025-01-26T15:38:41.709704Z",
"url": "https://files.pythonhosted.org/packages/13/0e/0e50072b4c45ada9d56b92bcc2215b053815b546e2f22a6f0f3391d8ab58/wkbparse-0.2.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "972f428908295743ec4b8bb8a5c9b51c1362222eface3290b11e3ca0f44bba94",
"md5": "ead7fde896a4a89d82a54eba5257eaa2",
"sha256": "9ad60e11898516abebeadda739e07b1ce7e5b62ca4807142fa02b259c0f7d22a"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "ead7fde896a4a89d82a54eba5257eaa2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 146774,
"upload_time": "2025-01-26T15:38:31",
"upload_time_iso_8601": "2025-01-26T15:38:31.894789Z",
"url": "https://files.pythonhosted.org/packages/97/2f/428908295743ec4b8bb8a5c9b51c1362222eface3290b11e3ca0f44bba94/wkbparse-0.2.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42b1d4a471440224cef4dbf53718a2bb51980ec056ed622a173da4fef39c0aa0",
"md5": "014062c9994e70d7a97e63b40e1de74d",
"sha256": "8fd9866152f3af4b0391d01d3a171b45c956396a9df7cef2aafd3dd4b15a1f1b"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "014062c9994e70d7a97e63b40e1de74d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 234591,
"upload_time": "2025-01-26T15:37:22",
"upload_time_iso_8601": "2025-01-26T15:37:22.050079Z",
"url": "https://files.pythonhosted.org/packages/42/b1/d4a471440224cef4dbf53718a2bb51980ec056ed622a173da4fef39c0aa0/wkbparse-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4e1a6ba14078743452310b7e175ec046b908c14bbcd27dd58652e29379bb179",
"md5": "03776e5fafd8a6070345f9850b24e0fb",
"sha256": "15a901e49873ea2549d8e934d6964e248c248aa66faf7766d2a9b4220754dfb9"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "03776e5fafd8a6070345f9850b24e0fb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 260185,
"upload_time": "2025-01-26T15:35:45",
"upload_time_iso_8601": "2025-01-26T15:35:45.129056Z",
"url": "https://files.pythonhosted.org/packages/b4/e1/a6ba14078743452310b7e175ec046b908c14bbcd27dd58652e29379bb179/wkbparse-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "563e00b9c7607fe826567589df78ab98b3b3c5840a70a52ef0263aaa3381253e",
"md5": "73e225ef68563aba613072cd29f8c686",
"sha256": "2717a269262d5526599e1211d32299a1e6bdfade56d069532978e26d5ff6447b"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "73e225ef68563aba613072cd29f8c686",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 272526,
"upload_time": "2025-01-26T15:36:02",
"upload_time_iso_8601": "2025-01-26T15:36:02.778954Z",
"url": "https://files.pythonhosted.org/packages/56/3e/00b9c7607fe826567589df78ab98b3b3c5840a70a52ef0263aaa3381253e/wkbparse-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c517491311070fdf591133860f856d7c1d162c62084886a049f6fd5f9042c9db",
"md5": "f14e03bb82020bc9120024449848c87c",
"sha256": "c591bb3adcc0ac99fa9d249c0b53389c97344699cb2c06115df3dca41c3f013d"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f14e03bb82020bc9120024449848c87c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 287500,
"upload_time": "2025-01-26T15:36:24",
"upload_time_iso_8601": "2025-01-26T15:36:24.007056Z",
"url": "https://files.pythonhosted.org/packages/c5/17/491311070fdf591133860f856d7c1d162c62084886a049f6fd5f9042c9db/wkbparse-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "671922a524349b31ada5c38a6703c41bf7c58c3d778ebda83ea3f95e71e87a7c",
"md5": "0fc567af5fe788932513348593d5fbfb",
"sha256": "36c0a50ad595dc1da619f0555dea23b9c3f1e6b49b3a43f9940a86e31edbd89c"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0fc567af5fe788932513348593d5fbfb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 351877,
"upload_time": "2025-01-26T15:36:39",
"upload_time_iso_8601": "2025-01-26T15:36:39.345239Z",
"url": "https://files.pythonhosted.org/packages/67/19/22a524349b31ada5c38a6703c41bf7c58c3d778ebda83ea3f95e71e87a7c/wkbparse-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59211f69c7886e5fde814e81543dedcc47689a0e016cc05dab4ba21ae090d993",
"md5": "7708c3fca69978389002937fa25ba8b3",
"sha256": "482af95c4b95b763537f702be7711600a383f8f5e4c9189da590b56f58dac524"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7708c3fca69978389002937fa25ba8b3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 265767,
"upload_time": "2025-01-26T15:37:10",
"upload_time_iso_8601": "2025-01-26T15:37:10.501113Z",
"url": "https://files.pythonhosted.org/packages/59/21/1f69c7886e5fde814e81543dedcc47689a0e016cc05dab4ba21ae090d993/wkbparse-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "66c4c55cc97514e947ef5b065a854a0981fd21a463d9959907e681198f5dac4a",
"md5": "e80c084231b5954584a571cc83ccdb51",
"sha256": "50e0d5c93eb9a62878469d2af4177587cf08d0953c2234de7310493a76ba2d86"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e80c084231b5954584a571cc83ccdb51",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 275750,
"upload_time": "2025-01-26T15:36:58",
"upload_time_iso_8601": "2025-01-26T15:36:58.005388Z",
"url": "https://files.pythonhosted.org/packages/66/c4/c55cc97514e947ef5b065a854a0981fd21a463d9959907e681198f5dac4a/wkbparse-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42d272a9430973fdfa7ef8ec8eed39c7d4847f4498de800f76ae4c7389228db2",
"md5": "9a22536ac1eb0e5e79d5c500c9f538ec",
"sha256": "fdd5b874bf39fc316bdc8c950db6370c77864feaa7ff3fe29c5ebf6aea85674b"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9a22536ac1eb0e5e79d5c500c9f538ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 432890,
"upload_time": "2025-01-26T15:37:29",
"upload_time_iso_8601": "2025-01-26T15:37:29.136912Z",
"url": "https://files.pythonhosted.org/packages/42/d2/72a9430973fdfa7ef8ec8eed39c7d4847f4498de800f76ae4c7389228db2/wkbparse-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d47c193866a662892151617ea65a02597f11a6fb5dc61684a052f4bf5df119ab",
"md5": "abf4bbebe7d8531dddde402626324b24",
"sha256": "1e2e909533fe1716f4290d400d63b36f177e36fb8861dacec7751b7b1649ee02"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "abf4bbebe7d8531dddde402626324b24",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 530626,
"upload_time": "2025-01-26T15:37:44",
"upload_time_iso_8601": "2025-01-26T15:37:44.170795Z",
"url": "https://files.pythonhosted.org/packages/d4/7c/193866a662892151617ea65a02597f11a6fb5dc61684a052f4bf5df119ab/wkbparse-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be0d4fdee847707d3e1fade382abab4ba7c297a42c3aad1349ecdfe53d9a1d72",
"md5": "bde6b6bd3e3d43892689025d3533d61a",
"sha256": "8991c33b85d0a6fdcdd3c6d684c6e9bfd3cae45d62f4c16e40cbda0633e9e4e9"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bde6b6bd3e3d43892689025d3533d61a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 451527,
"upload_time": "2025-01-26T15:38:00",
"upload_time_iso_8601": "2025-01-26T15:38:00.133468Z",
"url": "https://files.pythonhosted.org/packages/be/0d/4fdee847707d3e1fade382abab4ba7c297a42c3aad1349ecdfe53d9a1d72/wkbparse-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dde1c9927386a394ce25fbd664fb0d52ca505f108fda2ff4d52d759118486e7",
"md5": "e7af09ca36fb04fc8a429a59e19077b0",
"sha256": "93fab8844ad6675d1c3af3d334350ab82f278dbdd11314a8e37958e9599362f5"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e7af09ca36fb04fc8a429a59e19077b0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 431519,
"upload_time": "2025-01-26T15:38:15",
"upload_time_iso_8601": "2025-01-26T15:38:15.937400Z",
"url": "https://files.pythonhosted.org/packages/8d/de/1c9927386a394ce25fbd664fb0d52ca505f108fda2ff4d52d759118486e7/wkbparse-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84561bf087b2af643925186253f57da42ee53fde28b8caf33bb5d35f6701560c",
"md5": "4e814ce5c2596348c208459c666eacd3",
"sha256": "78a638551a75c394213e68fc2e210bf94db7cc3771e60c622cddb7e1abbe0b20"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e814ce5c2596348c208459c666eacd3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 260519,
"upload_time": "2025-01-26T15:35:46",
"upload_time_iso_8601": "2025-01-26T15:35:46.488905Z",
"url": "https://files.pythonhosted.org/packages/84/56/1bf087b2af643925186253f57da42ee53fde28b8caf33bb5d35f6701560c/wkbparse-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5525ca9289395e87c0a949181f46c2239a02c07eb45b9aad555ecb6a31ff835a",
"md5": "a6b37e131cebc62276f07da9252900e5",
"sha256": "914d78e1808092b1e3fa6910e3ea91fc26a2e32a9be54befe9d63b003771b806"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a6b37e131cebc62276f07da9252900e5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 273421,
"upload_time": "2025-01-26T15:36:04",
"upload_time_iso_8601": "2025-01-26T15:36:04.470098Z",
"url": "https://files.pythonhosted.org/packages/55/25/ca9289395e87c0a949181f46c2239a02c07eb45b9aad555ecb6a31ff835a/wkbparse-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87408d1be04c09c71e667502acc1ea443e923716751feced943bbf882b81b7a5",
"md5": "94d1563f5f51d8981a350cc76b9f1398",
"sha256": "1ce1f46508ea2c787b4b1a49f26e8ec8979ffbb49782992c686fbf569025acb8"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "94d1563f5f51d8981a350cc76b9f1398",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 288267,
"upload_time": "2025-01-26T15:36:25",
"upload_time_iso_8601": "2025-01-26T15:36:25.466558Z",
"url": "https://files.pythonhosted.org/packages/87/40/8d1be04c09c71e667502acc1ea443e923716751feced943bbf882b81b7a5/wkbparse-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0182eed62c4295eb118f612525c470df5be231c280b8f834bf477c1fe5ff6c86",
"md5": "55a558a4fdde7f6d71b1412d89be9f9d",
"sha256": "074670424d4903f304464fb8730880a0f8e56d2eefdd61f95a0fede864d9acd5"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "55a558a4fdde7f6d71b1412d89be9f9d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 361841,
"upload_time": "2025-01-26T15:36:40",
"upload_time_iso_8601": "2025-01-26T15:36:40.913163Z",
"url": "https://files.pythonhosted.org/packages/01/82/eed62c4295eb118f612525c470df5be231c280b8f834bf477c1fe5ff6c86/wkbparse-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc81e991c06c0e7c5eb7bb8ced7e14e98499082307bad90dbc900dd6643a6a96",
"md5": "3294d42b478b6f530aae9fe1298fcf98",
"sha256": "e710fcc7b03fb9a82128de7980196e5d889230c88480cabff9261252026d52e7"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3294d42b478b6f530aae9fe1298fcf98",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 265984,
"upload_time": "2025-01-26T15:37:12",
"upload_time_iso_8601": "2025-01-26T15:37:12.040694Z",
"url": "https://files.pythonhosted.org/packages/cc/81/e991c06c0e7c5eb7bb8ced7e14e98499082307bad90dbc900dd6643a6a96/wkbparse-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "263b2fe7b0c52efa625752d439e7649be3ec134af8281a836adca12c4f435ad9",
"md5": "3d2a41331efbb635204c0c9e0f036ca3",
"sha256": "994fdd0ec91b5bf64d7a6324d9962ae3bcf900b05404f48f0c5eb2d2cab958f5"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3d2a41331efbb635204c0c9e0f036ca3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 276710,
"upload_time": "2025-01-26T15:36:59",
"upload_time_iso_8601": "2025-01-26T15:36:59.666571Z",
"url": "https://files.pythonhosted.org/packages/26/3b/2fe7b0c52efa625752d439e7649be3ec134af8281a836adca12c4f435ad9/wkbparse-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80c66aea134887ec9f28429c84f71c48d68854ee350a30836f04d28731f03b16",
"md5": "b39dbce450527325428209b55204a471",
"sha256": "2be3280ab0d204ef7b0be705ea7308888e91884598f072a507ac52aa66c8e164"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b39dbce450527325428209b55204a471",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 434153,
"upload_time": "2025-01-26T15:37:30",
"upload_time_iso_8601": "2025-01-26T15:37:30.721690Z",
"url": "https://files.pythonhosted.org/packages/80/c6/6aea134887ec9f28429c84f71c48d68854ee350a30836f04d28731f03b16/wkbparse-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c7c6ee1246076e8921d68882a1b21fad763164818960629b9bbf92742fb178b",
"md5": "b3728968f1901eebdddfb701dc1390d1",
"sha256": "7207cf58bf62d5e32f1b037019295bc973d2c3b911b6a12919f38cddd7270647"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b3728968f1901eebdddfb701dc1390d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 531639,
"upload_time": "2025-01-26T15:37:45",
"upload_time_iso_8601": "2025-01-26T15:37:45.723945Z",
"url": "https://files.pythonhosted.org/packages/0c/7c/6ee1246076e8921d68882a1b21fad763164818960629b9bbf92742fb178b/wkbparse-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7327e18d662b414c74af22955a70126489f6141e40b3d8029a1ab64cccc1fc4f",
"md5": "5458ed9ab876695de208acc9711bc9a2",
"sha256": "ed62d3fd1122c3ddf63947cf6a13331c67610ffbe04ae2dd8af57f04f214e414"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5458ed9ab876695de208acc9711bc9a2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 452563,
"upload_time": "2025-01-26T15:38:01",
"upload_time_iso_8601": "2025-01-26T15:38:01.673800Z",
"url": "https://files.pythonhosted.org/packages/73/27/e18d662b414c74af22955a70126489f6141e40b3d8029a1ab64cccc1fc4f/wkbparse-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcba229af627933ba140d7a97d196dac05ae204701c1949347912f9f6df4a2e2",
"md5": "d456a47e8287461d844270fcb415a0d6",
"sha256": "1c809a395389ab5114e2f7f995c3a6eb510762c7b223764952efbb14f7f35f38"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d456a47e8287461d844270fcb415a0d6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 432697,
"upload_time": "2025-01-26T15:38:18",
"upload_time_iso_8601": "2025-01-26T15:38:18.004902Z",
"url": "https://files.pythonhosted.org/packages/fc/ba/229af627933ba140d7a97d196dac05ae204701c1949347912f9f6df4a2e2/wkbparse-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "325fed5e7f86c547ba49b61756c17bd55b1737e9954104c143385b45ffaf6ff5",
"md5": "2bd350d2a5cc76df68bde2add8bd6427",
"sha256": "967cf83ba4b42355cf0516aa35858788fa1b32e5c9f6370d8b55ba70e6300ff7"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "2bd350d2a5cc76df68bde2add8bd6427",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 139542,
"upload_time": "2025-01-26T15:38:43",
"upload_time_iso_8601": "2025-01-26T15:38:43.201438Z",
"url": "https://files.pythonhosted.org/packages/32/5f/ed5e7f86c547ba49b61756c17bd55b1737e9954104c143385b45ffaf6ff5/wkbparse-0.2.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cdb48d395520998bdea344a9849c3ae3af0bc49661bdabe79095b78a641f0f3f",
"md5": "9110f61101f03b2540411e515a83c943",
"sha256": "c9405fd231e76684ac9731a188283665215dd54520bfb84e3a7cd77361006abd"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9110f61101f03b2540411e515a83c943",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 147269,
"upload_time": "2025-01-26T15:38:33",
"upload_time_iso_8601": "2025-01-26T15:38:33.235234Z",
"url": "https://files.pythonhosted.org/packages/cd/b4/8d395520998bdea344a9849c3ae3af0bc49661bdabe79095b78a641f0f3f/wkbparse-0.2.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "395f198898b9a043e17803267ea331b93740b3bf02ad27f8cfc18a01d9c3bf52",
"md5": "7459334b1a1b080c4bc08e178792abb4",
"sha256": "e7afddb63283175506e71c34ca1f534e5ac9cc83997dfecf6ffb598b9b4b4ecc"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7459334b1a1b080c4bc08e178792abb4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 260421,
"upload_time": "2025-01-26T15:35:48",
"upload_time_iso_8601": "2025-01-26T15:35:48.808661Z",
"url": "https://files.pythonhosted.org/packages/39/5f/198898b9a043e17803267ea331b93740b3bf02ad27f8cfc18a01d9c3bf52/wkbparse-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b55244bf9d97c320ed7239864bb8422d3becc661551ecf4a22b8778bca2da2f",
"md5": "eea880d13811800c1ad336d3bb2ca045",
"sha256": "cecfcf7c0d6d16a716083df9457208906173d5881be0a27be26fce93b51bdb0f"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "eea880d13811800c1ad336d3bb2ca045",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 273621,
"upload_time": "2025-01-26T15:36:06",
"upload_time_iso_8601": "2025-01-26T15:36:06.066090Z",
"url": "https://files.pythonhosted.org/packages/4b/55/244bf9d97c320ed7239864bb8422d3becc661551ecf4a22b8778bca2da2f/wkbparse-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbbb40b6bad9a0f85e1d98b3d2a82671d063cbade1bcefa293423e1798dc7a11",
"md5": "9a017786a8886a5b456be6d00e84d139",
"sha256": "a7e03fb451232401f1a4a01bf4e9ab045865cbb17717fc684ef2b714fee2ebbd"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9a017786a8886a5b456be6d00e84d139",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 288740,
"upload_time": "2025-01-26T15:36:26",
"upload_time_iso_8601": "2025-01-26T15:36:26.903660Z",
"url": "https://files.pythonhosted.org/packages/cb/bb/40b6bad9a0f85e1d98b3d2a82671d063cbade1bcefa293423e1798dc7a11/wkbparse-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1522a09c40b36791c22c901089e79e653fdb927ca61c96cc692362aebcf7a182",
"md5": "a07dccb678458529b1d7583f2fa2b60b",
"sha256": "e7c1219ade8499fe0484ed9339f55fa908a7e75579c21d705466b074814becac"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a07dccb678458529b1d7583f2fa2b60b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 361678,
"upload_time": "2025-01-26T15:36:42",
"upload_time_iso_8601": "2025-01-26T15:36:42.581473Z",
"url": "https://files.pythonhosted.org/packages/15/22/a09c40b36791c22c901089e79e653fdb927ca61c96cc692362aebcf7a182/wkbparse-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8d118ed2ae15a09ea0d781bb560f1889250793b243a4f370a32cffbe790e900",
"md5": "4cb72f5580ee2252bade1eb8fbd83968",
"sha256": "435083441d40ce721fc27b248083a33d2b37d27b66d6167501c75e4edab494fe"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4cb72f5580ee2252bade1eb8fbd83968",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 266614,
"upload_time": "2025-01-26T15:37:14",
"upload_time_iso_8601": "2025-01-26T15:37:14.234143Z",
"url": "https://files.pythonhosted.org/packages/f8/d1/18ed2ae15a09ea0d781bb560f1889250793b243a4f370a32cffbe790e900/wkbparse-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e5b13c9be2fce6719ccc730f3aa312b9a018e7128257dca0685a021e64ecfca",
"md5": "20fdb2dbe1c3bfa817d58c43c6a9fe99",
"sha256": "2c1d577bbecb96020fdb4f1e65ddb9a509f6692f6aeaef291edee1d796c38afa"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "20fdb2dbe1c3bfa817d58c43c6a9fe99",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 276880,
"upload_time": "2025-01-26T15:37:01",
"upload_time_iso_8601": "2025-01-26T15:37:01.389105Z",
"url": "https://files.pythonhosted.org/packages/4e/5b/13c9be2fce6719ccc730f3aa312b9a018e7128257dca0685a021e64ecfca/wkbparse-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6939fd1d5c77dd36abbff2c147ec50c3a0ae08aa15e6cf860b26f1e1c03ccd12",
"md5": "6aea4626928a9e0f2876bb769ad9dede",
"sha256": "f1c385ae677d7283ca65a5e7275192131016ca0e67cf22e16b636e9b5093da7d"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6aea4626928a9e0f2876bb769ad9dede",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 433623,
"upload_time": "2025-01-26T15:37:32",
"upload_time_iso_8601": "2025-01-26T15:37:32.286400Z",
"url": "https://files.pythonhosted.org/packages/69/39/fd1d5c77dd36abbff2c147ec50c3a0ae08aa15e6cf860b26f1e1c03ccd12/wkbparse-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a856404594a5f1029f234efd62f296f3121a6a2df9aa3723f6332a9b00e36d9f",
"md5": "120284796d2fe3047d363b40c1b8b3af",
"sha256": "c20a24a61e59577b2b3001f1c369dffe3bf9ccafdf76429dcea4ce5905b81b89"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "120284796d2fe3047d363b40c1b8b3af",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 531999,
"upload_time": "2025-01-26T15:37:47",
"upload_time_iso_8601": "2025-01-26T15:37:47.375064Z",
"url": "https://files.pythonhosted.org/packages/a8/56/404594a5f1029f234efd62f296f3121a6a2df9aa3723f6332a9b00e36d9f/wkbparse-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b192f4b86cbd0f56b49dd40a46fc47883e7c7674fb86b68b19f20e22d1a27540",
"md5": "bd81d9013b0ae8cee422fc6ff050654d",
"sha256": "526dff6de72acc279aa3f709c8a79caa46f6d95f11fffdfe3246cc93c763d949"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bd81d9013b0ae8cee422fc6ff050654d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 452571,
"upload_time": "2025-01-26T15:38:03",
"upload_time_iso_8601": "2025-01-26T15:38:03.308065Z",
"url": "https://files.pythonhosted.org/packages/b1/92/f4b86cbd0f56b49dd40a46fc47883e7c7674fb86b68b19f20e22d1a27540/wkbparse-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05e1bc583525a6f993cbd06ed1920dd53e8b7afb312025acbdd64867c37091cd",
"md5": "821836a2703beea9faece764bc746e28",
"sha256": "e2b3a1e598e42d1973cb5b78ec705f45b398c0bdb403b309afb4404f74d63951"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "821836a2703beea9faece764bc746e28",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 432628,
"upload_time": "2025-01-26T15:38:19",
"upload_time_iso_8601": "2025-01-26T15:38:19.712906Z",
"url": "https://files.pythonhosted.org/packages/05/e1/bc583525a6f993cbd06ed1920dd53e8b7afb312025acbdd64867c37091cd/wkbparse-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33955f6971fda536aa7810265c4eae5fad92c408a0fe9e4eec0bf89ad027d3d2",
"md5": "601db91d3f619ad89dde44813726ca39",
"sha256": "76055a92a489247465a980fd0123bf4252cedb396769bb652c13586836b42673"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "601db91d3f619ad89dde44813726ca39",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 139509,
"upload_time": "2025-01-26T15:38:45",
"upload_time_iso_8601": "2025-01-26T15:38:45.327008Z",
"url": "https://files.pythonhosted.org/packages/33/95/5f6971fda536aa7810265c4eae5fad92c408a0fe9e4eec0bf89ad027d3d2/wkbparse-0.2.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06b7bf1c27b61694bddcc0fc408ee131b953f5e5ea899f9adfb7a664465b57be",
"md5": "89ad40cd43c0eb89bb15d866b7027d0d",
"sha256": "87f17e790b09e29b0bf12526e4df559abf3c2a3dd85d2e24a48d81d1dd369f38"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "89ad40cd43c0eb89bb15d866b7027d0d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 146561,
"upload_time": "2025-01-26T15:38:34",
"upload_time_iso_8601": "2025-01-26T15:38:34.985713Z",
"url": "https://files.pythonhosted.org/packages/06/b7/bf1c27b61694bddcc0fc408ee131b953f5e5ea899f9adfb7a664465b57be/wkbparse-0.2.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "887d59dc619abe11af71dd70fc58f26c97ec29a65cbfa355ab9751e019b148db",
"md5": "a5702f621a66a70cb79c17b12ff8d6f9",
"sha256": "a65001c1cd016583a2f30f3ca5d20212bb4d28a507ca7bd58570803464036988"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a5702f621a66a70cb79c17b12ff8d6f9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 261067,
"upload_time": "2025-01-26T15:35:50",
"upload_time_iso_8601": "2025-01-26T15:35:50.460990Z",
"url": "https://files.pythonhosted.org/packages/88/7d/59dc619abe11af71dd70fc58f26c97ec29a65cbfa355ab9751e019b148db/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9f8bcac37dcdbed9e1bde8dc2f73d5a2872f35805f19fbac09e1bbd96a4e4d7",
"md5": "0631d3fda562c7240c015a6a8ea29ae4",
"sha256": "e09806ab7fddac3d899c5789354ea4aebd8fd25ceb0be0d0e601d32471d30261"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0631d3fda562c7240c015a6a8ea29ae4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 273591,
"upload_time": "2025-01-26T15:36:07",
"upload_time_iso_8601": "2025-01-26T15:36:07.512146Z",
"url": "https://files.pythonhosted.org/packages/e9/f8/bcac37dcdbed9e1bde8dc2f73d5a2872f35805f19fbac09e1bbd96a4e4d7/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56d23080952a19d35bbd79a72bda25e130993f646e81e311c9268592c7f627d2",
"md5": "9d3ef734ed5b3fcc9efeaf7ee2b1c871",
"sha256": "bffd260372d392ac2b2baba1aa915d1e14f0d0ccfd915a059a415a804e07b616"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9d3ef734ed5b3fcc9efeaf7ee2b1c871",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 288860,
"upload_time": "2025-01-26T15:36:28",
"upload_time_iso_8601": "2025-01-26T15:36:28.578743Z",
"url": "https://files.pythonhosted.org/packages/56/d2/3080952a19d35bbd79a72bda25e130993f646e81e311c9268592c7f627d2/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a868c311dbf6bf3404f93bb97c108abd7c53280bbe7f91e34739c6115b79b1e",
"md5": "846ee282d37f47fe819a0c03ddbd8f28",
"sha256": "13f9ea711c12b1d62f19f533b258d7f6b4d39d21f53369c2796027b802ddd409"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "846ee282d37f47fe819a0c03ddbd8f28",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 360568,
"upload_time": "2025-01-26T15:36:44",
"upload_time_iso_8601": "2025-01-26T15:36:44.092309Z",
"url": "https://files.pythonhosted.org/packages/5a/86/8c311dbf6bf3404f93bb97c108abd7c53280bbe7f91e34739c6115b79b1e/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9327ea4ca30bff0ea65a914504018240be1a4cdb59aa40e0536d3422607fcac9",
"md5": "4507a19cd220459acb79c9154875d8b8",
"sha256": "7ebc6c5a6ed5dc81f34e8f7bc3200df4f09035bf8179382b98a1e234a02f3585"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4507a19cd220459acb79c9154875d8b8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 266969,
"upload_time": "2025-01-26T15:37:15",
"upload_time_iso_8601": "2025-01-26T15:37:15.936638Z",
"url": "https://files.pythonhosted.org/packages/93/27/ea4ca30bff0ea65a914504018240be1a4cdb59aa40e0536d3422607fcac9/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "982e03c0962de43df3652d949bc1c5dc97f253912e51261d21a93394a5fc8ba3",
"md5": "5ee696131c95cf750f3d015cafbd8639",
"sha256": "71cc20fdab547482fa4361b3270a35d25a5cc9d94e17ebb08950d20de62331ce"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "5ee696131c95cf750f3d015cafbd8639",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 276565,
"upload_time": "2025-01-26T15:37:02",
"upload_time_iso_8601": "2025-01-26T15:37:02.903608Z",
"url": "https://files.pythonhosted.org/packages/98/2e/03c0962de43df3652d949bc1c5dc97f253912e51261d21a93394a5fc8ba3/wkbparse-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1eaf03fcd9562d5ac688a3ae923d2e542efa52f977864837146eea568b84e933",
"md5": "8311c4c86e522d87fa53f8385472454f",
"sha256": "2dfaf73c0f5463dd999e40949488cf82654ad94276abe5d2a1cf132fcaa08d4c"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8311c4c86e522d87fa53f8385472454f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 434397,
"upload_time": "2025-01-26T15:37:33",
"upload_time_iso_8601": "2025-01-26T15:37:33.906021Z",
"url": "https://files.pythonhosted.org/packages/1e/af/03fcd9562d5ac688a3ae923d2e542efa52f977864837146eea568b84e933/wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a189fc041e3a3d11ad007f678b47ac638fe61934bb1217b94a39d75ba6e198b",
"md5": "7eb60883fbb102151eb1bbc8a4e55a01",
"sha256": "7ede9682658b926869dc065f1eb918743499b71e3072427f648ae692cbe7df04"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7eb60883fbb102151eb1bbc8a4e55a01",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 531403,
"upload_time": "2025-01-26T15:37:48",
"upload_time_iso_8601": "2025-01-26T15:37:48.967336Z",
"url": "https://files.pythonhosted.org/packages/4a/18/9fc041e3a3d11ad007f678b47ac638fe61934bb1217b94a39d75ba6e198b/wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9556201fd50170cae68cfe0c2493eedeca0c16f1656260959cebbd250914b969",
"md5": "cd562606fe58cb636037f31690c7814b",
"sha256": "1e1e52c7502b1a657973ced5b9324d93c8e0a8a875eb0e8d503b43c935a6740e"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "cd562606fe58cb636037f31690c7814b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 452076,
"upload_time": "2025-01-26T15:38:04",
"upload_time_iso_8601": "2025-01-26T15:38:04.873809Z",
"url": "https://files.pythonhosted.org/packages/95/56/201fd50170cae68cfe0c2493eedeca0c16f1656260959cebbd250914b969/wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62b992c3066c3e2f5039c16359882bea7aba74c5356835bc58c9933996824bf2",
"md5": "c305c926fb875d914baf860cee875b67",
"sha256": "42e3abe483d1f9f86e0afd510d63e9b890bca837894d2db1e7f8658aaba802c7"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c305c926fb875d914baf860cee875b67",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 432900,
"upload_time": "2025-01-26T15:38:21",
"upload_time_iso_8601": "2025-01-26T15:38:21.902849Z",
"url": "https://files.pythonhosted.org/packages/62/b9/92c3066c3e2f5039c16359882bea7aba74c5356835bc58c9933996824bf2/wkbparse-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abd74c4e23b5e328d7a2a1bf55e714c8ceb929ab4650a664a2901ede03e5c242",
"md5": "4d5147a276abbda1d399613421f5e827",
"sha256": "b08f05e240733b84f3849a9fcdd2804532900dc934f5a2daab5ba9f8c94f7915"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4d5147a276abbda1d399613421f5e827",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 261339,
"upload_time": "2025-01-26T15:35:51",
"upload_time_iso_8601": "2025-01-26T15:35:51.886965Z",
"url": "https://files.pythonhosted.org/packages/ab/d7/4c4e23b5e328d7a2a1bf55e714c8ceb929ab4650a664a2901ede03e5c242/wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64c60ad2f73b66776196ec7603c7496696a2879968832b8e60b04066330d2607",
"md5": "aab2969590740724455cc39901506130",
"sha256": "3d3cd6865d2e1efd1ad5cb79e3082227a9270c1feeda0567e4f7cfb825fc992a"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "aab2969590740724455cc39901506130",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 273565,
"upload_time": "2025-01-26T15:36:11",
"upload_time_iso_8601": "2025-01-26T15:36:11.074300Z",
"url": "https://files.pythonhosted.org/packages/64/c6/0ad2f73b66776196ec7603c7496696a2879968832b8e60b04066330d2607/wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c196c658ed7c6070f66d6c61e1a53ebf2f070d9ab8e8692cf3c7c871a2c89287",
"md5": "5bf022a6ed4a4f98775c9a93ca4e793f",
"sha256": "8eb74af7512485f048c6bfaf637b2ac4dbf6efd0878339f9294f61a7c60d8955"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5bf022a6ed4a4f98775c9a93ca4e793f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 288947,
"upload_time": "2025-01-26T15:36:31",
"upload_time_iso_8601": "2025-01-26T15:36:31.052791Z",
"url": "https://files.pythonhosted.org/packages/c1/96/c658ed7c6070f66d6c61e1a53ebf2f070d9ab8e8692cf3c7c871a2c89287/wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6130abc79bf16681c65169131f2d7cafb93e0f5640eeb274a6d809d9244e9fc5",
"md5": "ecced900d61fa127ddf0fad906f12d66",
"sha256": "9450a18f9c66fbaae77551ab86fb36c60b7920521bf229c78519fe4c1b112bab"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ecced900d61fa127ddf0fad906f12d66",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 359834,
"upload_time": "2025-01-26T15:36:46",
"upload_time_iso_8601": "2025-01-26T15:36:46.419627Z",
"url": "https://files.pythonhosted.org/packages/61/30/abc79bf16681c65169131f2d7cafb93e0f5640eeb274a6d809d9244e9fc5/wkbparse-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cfd70aaa5a12df182ce4a6f978d54a31036b93dbe68d2ccbc56830c8fe36526",
"md5": "6652c8101d7124adcfa0f94637ea941a",
"sha256": "27c0fd07b6cd8a8b514fe86b43c29403bd8f2bc9eb9097385dfe7cc7aef750c6"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6652c8101d7124adcfa0f94637ea941a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 434507,
"upload_time": "2025-01-26T15:37:35",
"upload_time_iso_8601": "2025-01-26T15:37:35.695689Z",
"url": "https://files.pythonhosted.org/packages/7c/fd/70aaa5a12df182ce4a6f978d54a31036b93dbe68d2ccbc56830c8fe36526/wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb9a7b93cb8940fe49278428a81cd480039b59aff6a38744c384ba6d6b8656b",
"md5": "4eeb898fa76c19c9ecd7c451ec89cf69",
"sha256": "b9a02f687f67c51341c2a2c6f2b72567eb6d54f60f2fbedf8bb9ce38c852a6da"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4eeb898fa76c19c9ecd7c451ec89cf69",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 531510,
"upload_time": "2025-01-26T15:37:50",
"upload_time_iso_8601": "2025-01-26T15:37:50.573378Z",
"url": "https://files.pythonhosted.org/packages/0c/b9/a7b93cb8940fe49278428a81cd480039b59aff6a38744c384ba6d6b8656b/wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fa1342e8e36a744a17cae2866dc71a857f3897bc1f4bd1fb90fc19fd66d3cd3",
"md5": "e3280ae6d74c5a0eadc20c2100d05ca4",
"sha256": "2b90501f45592be14a93a54a2dd80ff46508ee02bb3ed6dd212046488dd3c3d2"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e3280ae6d74c5a0eadc20c2100d05ca4",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 452061,
"upload_time": "2025-01-26T15:38:06",
"upload_time_iso_8601": "2025-01-26T15:38:06.608139Z",
"url": "https://files.pythonhosted.org/packages/6f/a1/342e8e36a744a17cae2866dc71a857f3897bc1f4bd1fb90fc19fd66d3cd3/wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d6c3d6f3b84df392333cefba8c2fd7610200b67ed93d543cc4441710ae953c1",
"md5": "285d4d8720d85ecd4842f4aaa64290fc",
"sha256": "ef21f8972203b576f8e06f1df977de8c2c1f5de466fe15f2e4c0fb3351a8254b"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "285d4d8720d85ecd4842f4aaa64290fc",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 432967,
"upload_time": "2025-01-26T15:38:24",
"upload_time_iso_8601": "2025-01-26T15:38:24.925816Z",
"url": "https://files.pythonhosted.org/packages/6d/6c/3d6f3b84df392333cefba8c2fd7610200b67ed93d543cc4441710ae953c1/wkbparse-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d1c1692174ca55263450441a68d665c57669f87ea2c521981f71d0aea2182da",
"md5": "a1120436d32c40c3a3d5a6c71b99c18b",
"sha256": "a244b59314f37f9206a1fecee9d5db73fa4109a464271ceed0c88bc84cf240e4"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a1120436d32c40c3a3d5a6c71b99c18b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 261065,
"upload_time": "2025-01-26T15:35:53",
"upload_time_iso_8601": "2025-01-26T15:35:53.270047Z",
"url": "https://files.pythonhosted.org/packages/0d/1c/1692174ca55263450441a68d665c57669f87ea2c521981f71d0aea2182da/wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2f1103435063cafef67666fa3f74d35458f4c5802e91724cee846e3f695c8d1",
"md5": "f60de54efafe434d6ac2b74e0c8991c9",
"sha256": "600e48a544334a6be040ff63e8aa048ccedabc73126161bcf179b059c4aabfbd"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f60de54efafe434d6ac2b74e0c8991c9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 273586,
"upload_time": "2025-01-26T15:36:13",
"upload_time_iso_8601": "2025-01-26T15:36:13.550189Z",
"url": "https://files.pythonhosted.org/packages/f2/f1/103435063cafef67666fa3f74d35458f4c5802e91724cee846e3f695c8d1/wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bc1435fb312aff191c6359a7cfc5fcdac654aaad32dee23293dc1af8a490a93",
"md5": "fd6159f825fc79d2ff7ff6c08b436172",
"sha256": "b5f8d319deb22f8e046701cc654ac5e101e21849f597f959ba8ad7d0527e5c8a"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fd6159f825fc79d2ff7ff6c08b436172",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 288881,
"upload_time": "2025-01-26T15:36:32",
"upload_time_iso_8601": "2025-01-26T15:36:32.576173Z",
"url": "https://files.pythonhosted.org/packages/5b/c1/435fb312aff191c6359a7cfc5fcdac654aaad32dee23293dc1af8a490a93/wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cda66a5cdc7294d110dac8b0226c1ee0c91a76b0b8ec4716e977c5ef6cbc5608",
"md5": "aadbf0de2c38ac15870d46e11613f95e",
"sha256": "13797f67b8fd75e4c7f892e24f0d4f4f96ba2351cfc623323da4e5ad684727c5"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "aadbf0de2c38ac15870d46e11613f95e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 360563,
"upload_time": "2025-01-26T15:36:48",
"upload_time_iso_8601": "2025-01-26T15:36:48.068215Z",
"url": "https://files.pythonhosted.org/packages/cd/a6/6a5cdc7294d110dac8b0226c1ee0c91a76b0b8ec4716e977c5ef6cbc5608/wkbparse-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8589f508e7e6c9801dd834686624ff3ebcb7dc86ad348139158928ecd7b86e78",
"md5": "2401c4cfc220dd0ba6b8b2476d81f648",
"sha256": "159f767568f120d780d64b405c6761cebcf0fda4290c823378c1fc252527c2d8"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2401c4cfc220dd0ba6b8b2476d81f648",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 434389,
"upload_time": "2025-01-26T15:37:37",
"upload_time_iso_8601": "2025-01-26T15:37:37.382395Z",
"url": "https://files.pythonhosted.org/packages/85/89/f508e7e6c9801dd834686624ff3ebcb7dc86ad348139158928ecd7b86e78/wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41eba16b62886136c9f02e63383604e882fb3ef3a2cdc1b7df083d1e19de8a13",
"md5": "d6bdd9ca0a75de70f46bcb69f3ded39d",
"sha256": "f488ec0448df9e510557fc3d4bf36018adc5508f2bd9731e47233ee829300728"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d6bdd9ca0a75de70f46bcb69f3ded39d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 531395,
"upload_time": "2025-01-26T15:37:52",
"upload_time_iso_8601": "2025-01-26T15:37:52.233461Z",
"url": "https://files.pythonhosted.org/packages/41/eb/a16b62886136c9f02e63383604e882fb3ef3a2cdc1b7df083d1e19de8a13/wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26f1b7a0090c3504dbef42873772a6cb00f44aaa405bb5ab8829253c16bdd447",
"md5": "eab0b44c1c8741b09f5a990c6e01ffc5",
"sha256": "0b30988557feb9eea4f122ff2ecffb326f9e6d9fa2c218c538336c38defb9c2b"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "eab0b44c1c8741b09f5a990c6e01ffc5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 452068,
"upload_time": "2025-01-26T15:38:08",
"upload_time_iso_8601": "2025-01-26T15:38:08.967795Z",
"url": "https://files.pythonhosted.org/packages/26/f1/b7a0090c3504dbef42873772a6cb00f44aaa405bb5ab8829253c16bdd447/wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d3e1acda481157d2923ad7426412c73d9a023c8349c3a4629ebd20044f2c57f",
"md5": "3c64de68ce37a85113f183faff20e996",
"sha256": "af9e1fbf9d5f8b42d6850dcc008f9d86ad1acf2b6a42a76441165047b682f98d"
},
"downloads": -1,
"filename": "wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3c64de68ce37a85113f183faff20e996",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 432894,
"upload_time": "2025-01-26T15:38:27",
"upload_time_iso_8601": "2025-01-26T15:38:27.264982Z",
"url": "https://files.pythonhosted.org/packages/7d/3e/1acda481157d2923ad7426412c73d9a023c8349c3a4629ebd20044f2c57f/wkbparse-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3a41c0fbef3722475e2cced67062f6ffcac876f0912e9a02664b5098f91d64c",
"md5": "f8788890e740cbdae6d7bcddafbc67a6",
"sha256": "07f41dd3ca4fecd6204badb44c171710f2c74f09319ffa3342f0a2f96fab47b1"
},
"downloads": -1,
"filename": "wkbparse-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "f8788890e740cbdae6d7bcddafbc67a6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 59495,
"upload_time": "2025-01-26T15:35:08",
"upload_time_iso_8601": "2025-01-26T15:35:08.921085Z",
"url": "https://files.pythonhosted.org/packages/f3/a4/1c0fbef3722475e2cced67062f6ffcac876f0912e9a02664b5098f91d64c/wkbparse-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-26 15:35:08",
"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"
}