# 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.
## 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/fc/fe/1d39a06b6b53cc3a305dbc5d29e00e41aabba1d4dc36c341f0ae290558b7/wkbparse-0.2.1.tar.gz",
"platform": null,
"description": "# wkbparse\n\n`wkbparse` is a Python module written in Rust for parsing [EWKB](https://postgis.net/docs/using_postgis_dbmanagement.html#EWKB_EWKT) and [TWKB](https://github.com/TWKB/Specification/blob/master/twkb.md) geometries into GeoJSON strings or GeoJSON-like Python dictionaries in a performant fashion.\n\nOriginal EWKB/TWKB encoding code forked from [https://github.com/Mortal/rust-ewkb](Mortal/rust-ewkb) which in turn originates from [https://github.com/andelf/rust-postgis](andelf/rust-postgis).\n\n`wkbparse` is developed mainly for usage with PostGIS and has been tested with geometries generated with one. However, it has no explicit dependencies towards PostgreSQL or PostGIS and can be used with EWKB/TWKB geometries originating from any system. In such case it is advisable to validate results carefully before using for anything serious.\n\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## 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.1",
"project_urls": {
"Homepage": "https://github.com/arjuote/wkbparse",
"Source": "https://github.com/arjuote/wkbparse"
},
"split_keywords": [
"postgresql",
" postgis",
" gis",
" geo",
" wkb",
" twkb",
" geojson"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "085e2e09b375b546b3fe16d311cde42e405f0deb1824f421d4fe300036b7758e",
"md5": "847fdc0b835f123f6fffb712f644134a",
"sha256": "d7f65e8d7f4641b2caf6e10686566e8bbbd345b22d875da9626d1540d7d5b67c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "847fdc0b835f123f6fffb712f644134a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 261118,
"upload_time": "2025-02-09T16:28:14",
"upload_time_iso_8601": "2025-02-09T16:28:14.441525Z",
"url": "https://files.pythonhosted.org/packages/08/5e/2e09b375b546b3fe16d311cde42e405f0deb1824f421d4fe300036b7758e/wkbparse-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f14eb85ae5bae77a57f031a2b66d4d210f2197eb78a46fd9383ad70f5edbbae9",
"md5": "93936a38bd9bc2768b7afae0b9af1637",
"sha256": "8190155e50166f3832041351862919ca9b3f818cd73d3de789bf062ca7929a0d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "93936a38bd9bc2768b7afae0b9af1637",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 273678,
"upload_time": "2025-02-09T16:28:31",
"upload_time_iso_8601": "2025-02-09T16:28:31.562267Z",
"url": "https://files.pythonhosted.org/packages/f1/4e/b85ae5bae77a57f031a2b66d4d210f2197eb78a46fd9383ad70f5edbbae9/wkbparse-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b11ebfba02a70deb4f9be0865f10be12499b56294c06a933b8d3ac23ae129a5",
"md5": "65c6e9983e606ef1580e7cc7d88ada74",
"sha256": "4c08d9eda4872272eeaa85f9b8719b3b30db25868743da0f77ccce07976e16eb"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "65c6e9983e606ef1580e7cc7d88ada74",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 288916,
"upload_time": "2025-02-09T16:28:44",
"upload_time_iso_8601": "2025-02-09T16:28:44.015484Z",
"url": "https://files.pythonhosted.org/packages/8b/11/ebfba02a70deb4f9be0865f10be12499b56294c06a933b8d3ac23ae129a5/wkbparse-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea22c274cba60f2747d27b47b149c66db67f63687dc7ab3833e896fc9d77f071",
"md5": "27f1649aa3e436ab7e2d171595246311",
"sha256": "960814e23dceaec77b4598a75bd08a1e512a5fa43aa5cdf6f19ce0279a171d06"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "27f1649aa3e436ab7e2d171595246311",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 361661,
"upload_time": "2025-02-09T16:28:56",
"upload_time_iso_8601": "2025-02-09T16:28:56.500818Z",
"url": "https://files.pythonhosted.org/packages/ea/22/c274cba60f2747d27b47b149c66db67f63687dc7ab3833e896fc9d77f071/wkbparse-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0baca4de35d5ae099934452a3242326899c6c1472ea78984f1d366fa09f958e",
"md5": "dcee5f127fcea41f81b5497b5f540bb9",
"sha256": "8a9a0df91a1eea255620b11001456f0d7c7eabfef1ad29b71605d25b57e58b88"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dcee5f127fcea41f81b5497b5f540bb9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 266491,
"upload_time": "2025-02-09T16:29:21",
"upload_time_iso_8601": "2025-02-09T16:29:21.566847Z",
"url": "https://files.pythonhosted.org/packages/d0/ba/ca4de35d5ae099934452a3242326899c6c1472ea78984f1d366fa09f958e/wkbparse-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f7856609900f0df95800b8934a4ca38928f3bfdf6cc9405a46265ee75ba72828",
"md5": "1e1b2cd9b58e960307ae2343e2263836",
"sha256": "1b4d70ef9ac552371477b2d2ced351d7e2290a96361d5811b25484a669a4c292"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1e1b2cd9b58e960307ae2343e2263836",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 276749,
"upload_time": "2025-02-09T16:29:11",
"upload_time_iso_8601": "2025-02-09T16:29:11.518666Z",
"url": "https://files.pythonhosted.org/packages/f7/85/6609900f0df95800b8934a4ca38928f3bfdf6cc9405a46265ee75ba72828/wkbparse-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a0af71ceed1ce82b53a9dd0bff523c7dbaa96f403cb1a874055b399cae013c6",
"md5": "36abd122764a37fcab267ac023ac0734",
"sha256": "ff04b82bfe146c4d9f8151036ca94e0f4c238fa438e3aa0e1fe911926231f561"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "36abd122764a37fcab267ac023ac0734",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 433656,
"upload_time": "2025-02-09T16:29:37",
"upload_time_iso_8601": "2025-02-09T16:29:37.708846Z",
"url": "https://files.pythonhosted.org/packages/1a/0a/f71ceed1ce82b53a9dd0bff523c7dbaa96f403cb1a874055b399cae013c6/wkbparse-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9cb013e1b9761670945de0f3e8fa0fce80637c00d79c57f9434a313a98a7ab8",
"md5": "6853e789088d8635cdc24d71fb1a54f3",
"sha256": "5cf72c585a388db32abf107fb087370e97d661a05aa7361a949ed5db5cb60560"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6853e789088d8635cdc24d71fb1a54f3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 531619,
"upload_time": "2025-02-09T16:29:54",
"upload_time_iso_8601": "2025-02-09T16:29:54.212672Z",
"url": "https://files.pythonhosted.org/packages/b9/cb/013e1b9761670945de0f3e8fa0fce80637c00d79c57f9434a313a98a7ab8/wkbparse-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eff4fd0d700136ec0a37c45a1af98e7935968b882e9a22454ec4c3e28495b08c",
"md5": "0a442c4fc695725f5c3cba7af49d2612",
"sha256": "2cc774e3cf5773212038a886dab206a20cae964e3d24dd3814b18bb76709dc9d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0a442c4fc695725f5c3cba7af49d2612",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 452391,
"upload_time": "2025-02-09T16:30:14",
"upload_time_iso_8601": "2025-02-09T16:30:14.422909Z",
"url": "https://files.pythonhosted.org/packages/ef/f4/fd0d700136ec0a37c45a1af98e7935968b882e9a22454ec4c3e28495b08c/wkbparse-0.2.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db33665228b33398afc7705723802d965e28c45750d8202407a7ec84e4709bca",
"md5": "03d9ecbd29e1379de644227b7fcdf238",
"sha256": "138e783ed46c8b210992d88fb3376e9aebb28677c5f159e2a69ed88b052ae2ce"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "03d9ecbd29e1379de644227b7fcdf238",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 432830,
"upload_time": "2025-02-09T16:30:27",
"upload_time_iso_8601": "2025-02-09T16:30:27.730732Z",
"url": "https://files.pythonhosted.org/packages/db/33/665228b33398afc7705723802d965e28c45750d8202407a7ec84e4709bca/wkbparse-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7f844f28bb5d5856d91bda3c9bbebdd1aa2b2d296509fd24d18324d22362e13",
"md5": "c440fce7e5001f89aad174ce9bf57682",
"sha256": "01996fc3708d8e171fa5512b1be2a5cca0b67ea267bde6e7e3092143e7c5344f"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "c440fce7e5001f89aad174ce9bf57682",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 139598,
"upload_time": "2025-02-09T16:30:51",
"upload_time_iso_8601": "2025-02-09T16:30:51.360563Z",
"url": "https://files.pythonhosted.org/packages/c7/f8/44f28bb5d5856d91bda3c9bbebdd1aa2b2d296509fd24d18324d22362e13/wkbparse-0.2.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3edce8b833b83be18ce17e57c28ffe0705185b75a5a3b1b0dbf97f76f9534f5",
"md5": "d23492a5b6a89d53a9a7874bcd6d54ad",
"sha256": "d6df526da5aaf89ea43ee4ad5aade9daa57a41a08ff88bc1a1447ce53ac0cc6b"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "d23492a5b6a89d53a9a7874bcd6d54ad",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 146373,
"upload_time": "2025-02-09T16:30:41",
"upload_time_iso_8601": "2025-02-09T16:30:41.686589Z",
"url": "https://files.pythonhosted.org/packages/a3/ed/ce8b833b83be18ce17e57c28ffe0705185b75a5a3b1b0dbf97f76f9534f5/wkbparse-0.2.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5035f0eef368ebe391a7b50b6b5ae2c97fd47c804145ef5a256a16d19be6e037",
"md5": "860e7ac0c72dc240d36a1b8611fc1a34",
"sha256": "8142df1b59a4846981fbb0b48152d42eb4746e0b5f4657130447eaf2f7328f5a"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "860e7ac0c72dc240d36a1b8611fc1a34",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 235314,
"upload_time": "2025-02-09T16:29:32",
"upload_time_iso_8601": "2025-02-09T16:29:32.810968Z",
"url": "https://files.pythonhosted.org/packages/50/35/f0eef368ebe391a7b50b6b5ae2c97fd47c804145ef5a256a16d19be6e037/wkbparse-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3320575aa46ed431d6f08af65c007844e833e3420b79539a0d74e059f6bd441",
"md5": "dbcf0aa7db955c5ad8a0efeed874d60b",
"sha256": "17d7f29c743cf846d4078367099bca37b47744d701fc9e64e750536e8bd2bd5e"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dbcf0aa7db955c5ad8a0efeed874d60b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 261117,
"upload_time": "2025-02-09T16:28:16",
"upload_time_iso_8601": "2025-02-09T16:28:16.520548Z",
"url": "https://files.pythonhosted.org/packages/a3/32/0575aa46ed431d6f08af65c007844e833e3420b79539a0d74e059f6bd441/wkbparse-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98003d8e5eb9cbee42ce30467dd312515d0dde8bd8bd12d42cb5fa7777edf29c",
"md5": "2221862d6da0bf8836cc16f577887a33",
"sha256": "f38da666947c873743c5e3b221fa94c04ce6f6ee4677e25e3181f1359b20ba21"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2221862d6da0bf8836cc16f577887a33",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 273677,
"upload_time": "2025-02-09T16:28:33",
"upload_time_iso_8601": "2025-02-09T16:28:33.533005Z",
"url": "https://files.pythonhosted.org/packages/98/00/3d8e5eb9cbee42ce30467dd312515d0dde8bd8bd12d42cb5fa7777edf29c/wkbparse-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f0a30f33de9728cb9393d5ca04263ca83572ee76c0dea8399865e549cf839df",
"md5": "e6a6bfe4e98632a00ba41f95a85c63b0",
"sha256": "7f20cd4b8e13caa80f9dcc13f69a020e77aee2d11bff4c0514cafa1b8176276e"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e6a6bfe4e98632a00ba41f95a85c63b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 288915,
"upload_time": "2025-02-09T16:28:45",
"upload_time_iso_8601": "2025-02-09T16:28:45.213568Z",
"url": "https://files.pythonhosted.org/packages/4f/0a/30f33de9728cb9393d5ca04263ca83572ee76c0dea8399865e549cf839df/wkbparse-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c320d9bcd56e0b2ee74b925f2157d0cacd7ebfb87a334e4778afc912ddf55906",
"md5": "df4231674a6b16d8a20aed3674e71ad4",
"sha256": "55514cd4cbe9daedccbe25e06505255cc772df618e53fe99fda3f3cfd164dc52"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "df4231674a6b16d8a20aed3674e71ad4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 361660,
"upload_time": "2025-02-09T16:28:58",
"upload_time_iso_8601": "2025-02-09T16:28:58.545985Z",
"url": "https://files.pythonhosted.org/packages/c3/20/d9bcd56e0b2ee74b925f2157d0cacd7ebfb87a334e4778afc912ddf55906/wkbparse-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14695a7fdc4f8e85563233485af376ee551d4785ef59ebbaf1914fbe7f33f4a5",
"md5": "e0b263a1a176b36defa1b4ba82240360",
"sha256": "ab4d9907f42999f024b805542092b673c66c32d62f10a1e0ff4cb9fa096d4467"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e0b263a1a176b36defa1b4ba82240360",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 266491,
"upload_time": "2025-02-09T16:29:22",
"upload_time_iso_8601": "2025-02-09T16:29:22.892451Z",
"url": "https://files.pythonhosted.org/packages/14/69/5a7fdc4f8e85563233485af376ee551d4785ef59ebbaf1914fbe7f33f4a5/wkbparse-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98cd2f48b24ad328ef3a6ac81c8d0acc278481bd86079032029a46a741636192",
"md5": "aa27f22e9dc68e98c321c33adac719eb",
"sha256": "d7ab32cf65fec5203149e4233f4db08d53e8a219c921164436b01824b233aa98"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "aa27f22e9dc68e98c321c33adac719eb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 276747,
"upload_time": "2025-02-09T16:29:12",
"upload_time_iso_8601": "2025-02-09T16:29:12.705391Z",
"url": "https://files.pythonhosted.org/packages/98/cd/2f48b24ad328ef3a6ac81c8d0acc278481bd86079032029a46a741636192/wkbparse-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a90bdd27401dfad26db16db0be00ce5ffe1f34878fea52ba1335669a33d5ca50",
"md5": "e7e429be46413f159982626275af0e47",
"sha256": "8c39c1c18c851767c280fd4a8812537fcb59f5e113893e1cd0db0a5a18e5de1c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e7e429be46413f159982626275af0e47",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 433657,
"upload_time": "2025-02-09T16:29:39",
"upload_time_iso_8601": "2025-02-09T16:29:39.671379Z",
"url": "https://files.pythonhosted.org/packages/a9/0b/dd27401dfad26db16db0be00ce5ffe1f34878fea52ba1335669a33d5ca50/wkbparse-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "538393321da587920b93319f1dea22d52f24739a0d4070293126bccf82b726cc",
"md5": "07adcb589a7f3f328735cd956ed2ac8e",
"sha256": "d4e25709fee50730b018f2fc880210690bfd2802b83b3e8e945529bc40d8e46b"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "07adcb589a7f3f328735cd956ed2ac8e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 531622,
"upload_time": "2025-02-09T16:29:55",
"upload_time_iso_8601": "2025-02-09T16:29:55.444895Z",
"url": "https://files.pythonhosted.org/packages/53/83/93321da587920b93319f1dea22d52f24739a0d4070293126bccf82b726cc/wkbparse-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a4722df9c61f6a998904c5e3c0eab709c37042d567d54bdadc463e5a34c62a2",
"md5": "4178664b5530f4a680a767c0f080cc5b",
"sha256": "31e233810b3f7ea7d03fde26609d2ca8e44e6c5439465ef02782c75099d980a1"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4178664b5530f4a680a767c0f080cc5b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 452393,
"upload_time": "2025-02-09T16:30:16",
"upload_time_iso_8601": "2025-02-09T16:30:16.231313Z",
"url": "https://files.pythonhosted.org/packages/8a/47/22df9c61f6a998904c5e3c0eab709c37042d567d54bdadc463e5a34c62a2/wkbparse-0.2.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7785174a886d52b8b2118b9e7c62b8f22e53b4c197e882b0cff96c8c2ec42792",
"md5": "d0294b863fba3a55c803797e3a3e71f3",
"sha256": "67750fd143da7e90f8dce931565377a8462a648da237c0d05d23e8107d72aed0"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d0294b863fba3a55c803797e3a3e71f3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 432833,
"upload_time": "2025-02-09T16:30:28",
"upload_time_iso_8601": "2025-02-09T16:30:28.927010Z",
"url": "https://files.pythonhosted.org/packages/77/85/174a886d52b8b2118b9e7c62b8f22e53b4c197e882b0cff96c8c2ec42792/wkbparse-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb1957877a060b953148327f35e0faa4bfee27014ae8431646256c8da8053116",
"md5": "7b75f407b4c970037edc400b90d402ce",
"sha256": "f0777e7ee474c8d24beb2e3ab47c9e4e55dcd635bc95ea67f57f9c5519bea3ed"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "7b75f407b4c970037edc400b90d402ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 139594,
"upload_time": "2025-02-09T16:30:54",
"upload_time_iso_8601": "2025-02-09T16:30:54.289231Z",
"url": "https://files.pythonhosted.org/packages/cb/19/57877a060b953148327f35e0faa4bfee27014ae8431646256c8da8053116/wkbparse-0.2.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b02f228da516138368e9c786c706a267746258e7a416e173834106a968eb179",
"md5": "c4f661b5d563fd62f67a0ae6758c03e6",
"sha256": "3d71a54a48fdd964d801c68555a526201b1bcab7931e6d937e5956e1bf57d16f"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c4f661b5d563fd62f67a0ae6758c03e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 146376,
"upload_time": "2025-02-09T16:30:42",
"upload_time_iso_8601": "2025-02-09T16:30:42.928827Z",
"url": "https://files.pythonhosted.org/packages/6b/02/f228da516138368e9c786c706a267746258e7a416e173834106a968eb179/wkbparse-0.2.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "318e03776e551a0696b13ebe76f5f74e335c1c72901abe55fc5885108f952956",
"md5": "19f4736fe8dba755e0caaf5421961383",
"sha256": "d7751f1ff71622e57ec06a443f482303e7304da5208b4462ac2e35964615b2e2"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "19f4736fe8dba755e0caaf5421961383",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 234555,
"upload_time": "2025-02-09T16:29:34",
"upload_time_iso_8601": "2025-02-09T16:29:34.027823Z",
"url": "https://files.pythonhosted.org/packages/31/8e/03776e551a0696b13ebe76f5f74e335c1c72901abe55fc5885108f952956/wkbparse-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7cbf7686c609dcd61ec9ccc8559c2eeda1890a888708547d9b741734db4b6f0",
"md5": "cca92e0696215af1ec937297cfdee29b",
"sha256": "6c5850ce9f440b216e62926fa87b5d13764594149679c49f669b0d2ac7e4ad34"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cca92e0696215af1ec937297cfdee29b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 260179,
"upload_time": "2025-02-09T16:28:18",
"upload_time_iso_8601": "2025-02-09T16:28:18.535256Z",
"url": "https://files.pythonhosted.org/packages/a7/cb/f7686c609dcd61ec9ccc8559c2eeda1890a888708547d9b741734db4b6f0/wkbparse-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "288c240c8567d4bb58eaf790833600acdc5712cbf40a2200f47856cfa27376b6",
"md5": "50680da881f0d1d01f89da1336f8fbdf",
"sha256": "273322b997c9283f87066de0da3457bc200b82bcba2598463665deceeb944a0d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "50680da881f0d1d01f89da1336f8fbdf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 272632,
"upload_time": "2025-02-09T16:28:34",
"upload_time_iso_8601": "2025-02-09T16:28:34.885528Z",
"url": "https://files.pythonhosted.org/packages/28/8c/240c8567d4bb58eaf790833600acdc5712cbf40a2200f47856cfa27376b6/wkbparse-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a9f136d8d229f329b62e235b0fc54841c8ec6a98aabcb0c15c44398d759ac35",
"md5": "ffa8ed66d15afc5adc1709b6e773cecf",
"sha256": "a07ee761e98c89078201077bdf6a54a8d7c0dbdc906fa1ada33d97be7d38dccb"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ffa8ed66d15afc5adc1709b6e773cecf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 287651,
"upload_time": "2025-02-09T16:28:47",
"upload_time_iso_8601": "2025-02-09T16:28:47.145781Z",
"url": "https://files.pythonhosted.org/packages/5a/9f/136d8d229f329b62e235b0fc54841c8ec6a98aabcb0c15c44398d759ac35/wkbparse-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25c217187537023cd98352be65a0d328938d14f1981b5268bd80540d07f86591",
"md5": "bcff0b8dfcc83415c94d7cea343b5f14",
"sha256": "593d6c4c2ea44a6a84cf653ac59eee229e1e4289a50d4a2aa9ffce8749ad69a4"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bcff0b8dfcc83415c94d7cea343b5f14",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 351791,
"upload_time": "2025-02-09T16:28:59",
"upload_time_iso_8601": "2025-02-09T16:28:59.755773Z",
"url": "https://files.pythonhosted.org/packages/25/c2/17187537023cd98352be65a0d328938d14f1981b5268bd80540d07f86591/wkbparse-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75539675a267f2eb5c4ebff00a704350fb5069389d192867b3510013256b281b",
"md5": "59495b64276cc70fd5e78aa6b325fc6a",
"sha256": "e01cfb55975b4c60214b7bb489158e88af73ef1390f3ff199081c6ab14b9135d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "59495b64276cc70fd5e78aa6b325fc6a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 265833,
"upload_time": "2025-02-09T16:29:24",
"upload_time_iso_8601": "2025-02-09T16:29:24.772757Z",
"url": "https://files.pythonhosted.org/packages/75/53/9675a267f2eb5c4ebff00a704350fb5069389d192867b3510013256b281b/wkbparse-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de91ba4ddae5c8e3ceb32fac24391e58d652e4e07954b6ea9c16e9459e5c85e6",
"md5": "89f3023f8748be8bb05ec92b3745a04a",
"sha256": "e5d2a15dcb7a30726b32f5c6bcbd71d3bf986aa2b1a756088a90eb8b9e6acba4"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "89f3023f8748be8bb05ec92b3745a04a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 275705,
"upload_time": "2025-02-09T16:29:13",
"upload_time_iso_8601": "2025-02-09T16:29:13.888606Z",
"url": "https://files.pythonhosted.org/packages/de/91/ba4ddae5c8e3ceb32fac24391e58d652e4e07954b6ea9c16e9459e5c85e6/wkbparse-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "857d4821731b555b0411bc6b77c0f100c3744faa762e87d1c66bbc83fc9050c4",
"md5": "0f84eea5f737aa275248fbf418ae80bf",
"sha256": "d9b02d02f62c66724e58adf3f0db47f5e6c6a506e129af4b414df050e88a282e"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0f84eea5f737aa275248fbf418ae80bf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 432882,
"upload_time": "2025-02-09T16:29:40",
"upload_time_iso_8601": "2025-02-09T16:29:40.850037Z",
"url": "https://files.pythonhosted.org/packages/85/7d/4821731b555b0411bc6b77c0f100c3744faa762e87d1c66bbc83fc9050c4/wkbparse-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8a7569a2774df14fdb6861de54f83d2bdae08a1e24a076d364ef453976d72f7",
"md5": "73f03758e4747cadbb447b8a6b6b36db",
"sha256": "0efa442613928f511b3aa22f6e7a0f40606c0196b96b01941212444ce7e384b9"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "73f03758e4747cadbb447b8a6b6b36db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 530379,
"upload_time": "2025-02-09T16:30:03",
"upload_time_iso_8601": "2025-02-09T16:30:03.836395Z",
"url": "https://files.pythonhosted.org/packages/d8/a7/569a2774df14fdb6861de54f83d2bdae08a1e24a076d364ef453976d72f7/wkbparse-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9281ce92340600e8f565e6dad1b3427712a54597cc42b24c543a8e47c407622a",
"md5": "6f9f81ca3cf4d0890da68fa962042236",
"sha256": "d614e41927cd121e4309ff27292c3e27c36e8f994c363e3aecbdfbeb52c62265"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6f9f81ca3cf4d0890da68fa962042236",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 451528,
"upload_time": "2025-02-09T16:30:17",
"upload_time_iso_8601": "2025-02-09T16:30:17.457501Z",
"url": "https://files.pythonhosted.org/packages/92/81/ce92340600e8f565e6dad1b3427712a54597cc42b24c543a8e47c407622a/wkbparse-0.2.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "940194a5a8dcdac72b292e814d8524bc2ec0ccfdc639c4133f0fc8ac1d71b6e7",
"md5": "5deeebef590cf9c71c201148ffc83c41",
"sha256": "4b81b462cecfc9dcd5253e208e9ea80155934759e75576a8f60e0901ae68d639"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5deeebef590cf9c71c201148ffc83c41",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 431517,
"upload_time": "2025-02-09T16:30:30",
"upload_time_iso_8601": "2025-02-09T16:30:30.811065Z",
"url": "https://files.pythonhosted.org/packages/94/01/94a5a8dcdac72b292e814d8524bc2ec0ccfdc639c4133f0fc8ac1d71b6e7/wkbparse-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffb7e538d43300cd7a73e26d6f373fe1511e7d2034a32e1aa9ea949ae5144ea8",
"md5": "3ccce8e8eb12ef38a0990f66877f9e12",
"sha256": "ceb84dfa36c6748af328d592cef7211a129e95bdce308a1b7699a2eb899fcd0e"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "3ccce8e8eb12ef38a0990f66877f9e12",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 139826,
"upload_time": "2025-02-09T16:30:55",
"upload_time_iso_8601": "2025-02-09T16:30:55.425364Z",
"url": "https://files.pythonhosted.org/packages/ff/b7/e538d43300cd7a73e26d6f373fe1511e7d2034a32e1aa9ea949ae5144ea8/wkbparse-0.2.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a789dac9efe3fcbb532e75714170b8bfe49f995d9b6ab3c633698487bf0d128c",
"md5": "a69b116e19287a1557f968f29f9416ca",
"sha256": "eb8b34e25abc69e319b32c34a91a8086453699febe8fc0c467ca981d1240e4af"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a69b116e19287a1557f968f29f9416ca",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 146657,
"upload_time": "2025-02-09T16:30:44",
"upload_time_iso_8601": "2025-02-09T16:30:44.107024Z",
"url": "https://files.pythonhosted.org/packages/a7/89/dac9efe3fcbb532e75714170b8bfe49f995d9b6ab3c633698487bf0d128c/wkbparse-0.2.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8028999ee3961a033b7f36fa2e1a5729388e24d748fe8f5c1c24f8aef66153b9",
"md5": "3e9833ddd6b3f836f91f99893c7d6dc5",
"sha256": "4ce9737b35c508fa1c64e73c2a2f6a751ac4ee2bde11fe6e2f48483ebe6b90e4"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3e9833ddd6b3f836f91f99893c7d6dc5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 234557,
"upload_time": "2025-02-09T16:29:35",
"upload_time_iso_8601": "2025-02-09T16:29:35.179414Z",
"url": "https://files.pythonhosted.org/packages/80/28/999ee3961a033b7f36fa2e1a5729388e24d748fe8f5c1c24f8aef66153b9/wkbparse-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3958ebbd89207f84adef916a609cc61b078328f299a61b174cbe641e605f69e",
"md5": "6f9d546841c3dbc8c4f474f2f6608761",
"sha256": "feffa6e35a2987342511027a9be46e0200f3c0ec8c0b3f28e49eb5f2707ef4bb"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6f9d546841c3dbc8c4f474f2f6608761",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 260180,
"upload_time": "2025-02-09T16:28:19",
"upload_time_iso_8601": "2025-02-09T16:28:19.874600Z",
"url": "https://files.pythonhosted.org/packages/f3/95/8ebbd89207f84adef916a609cc61b078328f299a61b174cbe641e605f69e/wkbparse-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a981c38fb25d0af90492225cf5cd06adc16e1cfd70cd5f30928d56b865a54dda",
"md5": "657e94d90d677d846f3eef60c5680a64",
"sha256": "0d552624b7727e2795b26ebf976fa7d1827146f33a523a68b0676a8e074aa260"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "657e94d90d677d846f3eef60c5680a64",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 272631,
"upload_time": "2025-02-09T16:28:36",
"upload_time_iso_8601": "2025-02-09T16:28:36.025126Z",
"url": "https://files.pythonhosted.org/packages/a9/81/c38fb25d0af90492225cf5cd06adc16e1cfd70cd5f30928d56b865a54dda/wkbparse-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c41a96166504ed5549fdede41dff64daec09ebdff2b876d4a348fa1b21e0ae89",
"md5": "68dcd952b6fcd1238cbb14fd9429cf34",
"sha256": "92fa98830e90c099af6841d42f7360dcfe4092694b240454e69992ec755a4211"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "68dcd952b6fcd1238cbb14fd9429cf34",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 287652,
"upload_time": "2025-02-09T16:28:48",
"upload_time_iso_8601": "2025-02-09T16:28:48.336424Z",
"url": "https://files.pythonhosted.org/packages/c4/1a/96166504ed5549fdede41dff64daec09ebdff2b876d4a348fa1b21e0ae89/wkbparse-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3dae503723da7bdb7a8540bc2e2cfec9df761b5b8ef3b22473f1905df1dd31ee",
"md5": "0e366ef8cc6de4e60f12d6310931ebfd",
"sha256": "d0fe3cffae2e03d4c951c7c4c220ef247ec2a7fb8a9810cf213e42f27b98b245"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0e366ef8cc6de4e60f12d6310931ebfd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 351792,
"upload_time": "2025-02-09T16:29:01",
"upload_time_iso_8601": "2025-02-09T16:29:01.786935Z",
"url": "https://files.pythonhosted.org/packages/3d/ae/503723da7bdb7a8540bc2e2cfec9df761b5b8ef3b22473f1905df1dd31ee/wkbparse-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "832e5f04d18336b8ad31f2bb46a9b27301e1cfa0f0a4d23cebe44a1e29a8e70f",
"md5": "48413ba53c1f9f5d29c05d66ce7e8349",
"sha256": "c296037fa000493a7172bd0a929f5397c6870027be1fb7964f6af5f4f6bc50d7"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "48413ba53c1f9f5d29c05d66ce7e8349",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 265833,
"upload_time": "2025-02-09T16:29:26",
"upload_time_iso_8601": "2025-02-09T16:29:26.001890Z",
"url": "https://files.pythonhosted.org/packages/83/2e/5f04d18336b8ad31f2bb46a9b27301e1cfa0f0a4d23cebe44a1e29a8e70f/wkbparse-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba43e0a62ce77463d5ce3fbc29b41a984ab7b76d1399f6dd7b2bf4ac9ef88b68",
"md5": "89088477f5b35d70d783727b58ec2420",
"sha256": "1d1cd5ab5a529d5e4c4e0afb8ddec3a8c64a7c54edaab309b40c9777df8e70df"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "89088477f5b35d70d783727b58ec2420",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 275705,
"upload_time": "2025-02-09T16:29:15",
"upload_time_iso_8601": "2025-02-09T16:29:15.084757Z",
"url": "https://files.pythonhosted.org/packages/ba/43/e0a62ce77463d5ce3fbc29b41a984ab7b76d1399f6dd7b2bf4ac9ef88b68/wkbparse-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4842f37894c833da48b00a54f2b268623284ec25de2240e14cb23449cef6342",
"md5": "0e69ec27b3c56713ce70ce7c52ece760",
"sha256": "b070aff4aae96597255a391737d1e9f523d43445e36e9eb9968686c22587179f"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0e69ec27b3c56713ce70ce7c52ece760",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 432882,
"upload_time": "2025-02-09T16:29:43",
"upload_time_iso_8601": "2025-02-09T16:29:43.007436Z",
"url": "https://files.pythonhosted.org/packages/d4/84/2f37894c833da48b00a54f2b268623284ec25de2240e14cb23449cef6342/wkbparse-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4835db2e46e8990935ae8624c8cbfb0f82ad5213fa12ff6c09cccb45d545ddb2",
"md5": "1eaed57a09f6ab4846c325113efb40d2",
"sha256": "d0ce3f0116c78d64b1d21a8b66c3310a2481feec31da668afdf1696eb06e73f7"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1eaed57a09f6ab4846c325113efb40d2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 530382,
"upload_time": "2025-02-09T16:30:05",
"upload_time_iso_8601": "2025-02-09T16:30:05.237680Z",
"url": "https://files.pythonhosted.org/packages/48/35/db2e46e8990935ae8624c8cbfb0f82ad5213fa12ff6c09cccb45d545ddb2/wkbparse-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68e232b51bfcf2b2c46078205120da4c26ea6ba92e8ecdb395024746cae76c5d",
"md5": "70be9fe1b948c35329798467c531003c",
"sha256": "e13de2976d81357a46227f5dec11991fd75d41a2e62e07fafc0b289ddf603791"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "70be9fe1b948c35329798467c531003c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 451526,
"upload_time": "2025-02-09T16:30:18",
"upload_time_iso_8601": "2025-02-09T16:30:18.769451Z",
"url": "https://files.pythonhosted.org/packages/68/e2/32b51bfcf2b2c46078205120da4c26ea6ba92e8ecdb395024746cae76c5d/wkbparse-0.2.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b41fccccaa0f9855e6801253c099656898560a5fd97990aa10c91f109f7da410",
"md5": "a7d764e6ac2cd5270c04af0634373f52",
"sha256": "6baaf8cea307937f87f407f9a471de3ab6117e800eaada4d65ac8cfe462e3827"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a7d764e6ac2cd5270c04af0634373f52",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 431515,
"upload_time": "2025-02-09T16:30:32",
"upload_time_iso_8601": "2025-02-09T16:30:32.043207Z",
"url": "https://files.pythonhosted.org/packages/b4/1f/ccccaa0f9855e6801253c099656898560a5fd97990aa10c91f109f7da410/wkbparse-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14558a2f8d9bfa22eb32408d89fec89b625b5e513137bd49a77b21af961285a5",
"md5": "c1f7eb6b1747a063324fee8571f1035d",
"sha256": "ef59a80ecb411ac01a8b8f2b5452ec4b4981e20538daf93a0abcfd119e12f511"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "c1f7eb6b1747a063324fee8571f1035d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 139823,
"upload_time": "2025-02-09T16:30:56",
"upload_time_iso_8601": "2025-02-09T16:30:56.563019Z",
"url": "https://files.pythonhosted.org/packages/14/55/8a2f8d9bfa22eb32408d89fec89b625b5e513137bd49a77b21af961285a5/wkbparse-0.2.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01785401d9f2033401c64d24c6bb651df319c2dd89ec683a2abfec58aef2c9af",
"md5": "d3d6aedfcdd25525480c437b0bada44c",
"sha256": "44ed9380832e817d73e8de7e593c1ae976a6363ba14c9688c1900b5b7e3798ce"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "d3d6aedfcdd25525480c437b0bada44c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 146659,
"upload_time": "2025-02-09T16:30:45",
"upload_time_iso_8601": "2025-02-09T16:30:45.414766Z",
"url": "https://files.pythonhosted.org/packages/01/78/5401d9f2033401c64d24c6bb651df319c2dd89ec683a2abfec58aef2c9af/wkbparse-0.2.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e56ffd128c371a7e2a863e699f39f6d846a9226ef6aaf6d1e768cc3aaf236cfc",
"md5": "8f3475ead33d35c597ff1cf8e8a8775d",
"sha256": "443e6f93efd9f3e43282fef431403cbbb1e6e15e850cb98ae20818d017a79f9a"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8f3475ead33d35c597ff1cf8e8a8775d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 260596,
"upload_time": "2025-02-09T16:28:21",
"upload_time_iso_8601": "2025-02-09T16:28:21.816697Z",
"url": "https://files.pythonhosted.org/packages/e5/6f/fd128c371a7e2a863e699f39f6d846a9226ef6aaf6d1e768cc3aaf236cfc/wkbparse-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f2e8bba8d6e066b2e80d5e35440e31afbdb6863b2aeec71c4d3fd727bf1585b",
"md5": "ef272e095f1d7e7ae914670d9c63eb3e",
"sha256": "1fbc2def32f789c2778c48f61280794a8ca033e7d70e09383da1a097e4eeb4b4"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ef272e095f1d7e7ae914670d9c63eb3e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 273486,
"upload_time": "2025-02-09T16:28:37",
"upload_time_iso_8601": "2025-02-09T16:28:37.281797Z",
"url": "https://files.pythonhosted.org/packages/3f/2e/8bba8d6e066b2e80d5e35440e31afbdb6863b2aeec71c4d3fd727bf1585b/wkbparse-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63470052bc584dc0cb41679be2f9620fd999501e18f203d45f4e0c0c7bd5244e",
"md5": "ca98a9b5633e0fb334e8609b2110e5d2",
"sha256": "42afbc0f6234b826cc95da45ce6c1e221dba4f230e931f3dbc0c675bc9b41b94"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ca98a9b5633e0fb334e8609b2110e5d2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 288358,
"upload_time": "2025-02-09T16:28:49",
"upload_time_iso_8601": "2025-02-09T16:28:49.644212Z",
"url": "https://files.pythonhosted.org/packages/63/47/0052bc584dc0cb41679be2f9620fd999501e18f203d45f4e0c0c7bd5244e/wkbparse-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa85a1e5c563c6112b483addf6acf45e0db4c8433297d19eb6035fda31b481b4",
"md5": "7756b6b37143e4719d92f3a182b59732",
"sha256": "3aa41d78f079c4f2c6f1e4750130e4fcf1725ea4e988ce2db562582c3cc69042"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7756b6b37143e4719d92f3a182b59732",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 361864,
"upload_time": "2025-02-09T16:29:03",
"upload_time_iso_8601": "2025-02-09T16:29:03.024114Z",
"url": "https://files.pythonhosted.org/packages/aa/85/a1e5c563c6112b483addf6acf45e0db4c8433297d19eb6035fda31b481b4/wkbparse-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "433cda1d559ec7fc9f96683439ab5ffc28e4f0f22099da75bc2d629a752aa8e3",
"md5": "fddb7adad86c488318e95ca93da19000",
"sha256": "bb67639190526d502759c319d29cc5b226663db5dd51d09e346d2cbe07461e78"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fddb7adad86c488318e95ca93da19000",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 265891,
"upload_time": "2025-02-09T16:29:27",
"upload_time_iso_8601": "2025-02-09T16:29:27.120757Z",
"url": "https://files.pythonhosted.org/packages/43/3c/da1d559ec7fc9f96683439ab5ffc28e4f0f22099da75bc2d629a752aa8e3/wkbparse-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4ad741bdb1141579d50c69eeb9dcc0c6e6c9fdebee5f0d0fe44e19f44b1f4b3",
"md5": "eda48fea99ddcf36c5b5f9560a43ecc0",
"sha256": "e60233149680dca2a33a215c626b859f67c6c9bf387c6198a58d491a31de5b4c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "eda48fea99ddcf36c5b5f9560a43ecc0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 276738,
"upload_time": "2025-02-09T16:29:17",
"upload_time_iso_8601": "2025-02-09T16:29:17.137273Z",
"url": "https://files.pythonhosted.org/packages/e4/ad/741bdb1141579d50c69eeb9dcc0c6e6c9fdebee5f0d0fe44e19f44b1f4b3/wkbparse-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "008ab137e6c3fb9fee8090658fb281e7737a86bc5d6b66d7ea9933925093d984",
"md5": "5e2e5bd39ffd40ccf2ff1e154030905a",
"sha256": "e2723a357638c6693c1718386bc3c35197b1f625e35862bc564cd93c7b98f322"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5e2e5bd39ffd40ccf2ff1e154030905a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 434002,
"upload_time": "2025-02-09T16:29:44",
"upload_time_iso_8601": "2025-02-09T16:29:44.992461Z",
"url": "https://files.pythonhosted.org/packages/00/8a/b137e6c3fb9fee8090658fb281e7737a86bc5d6b66d7ea9933925093d984/wkbparse-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3864c070ff20d1a8efbc30ef34649674ccf583c0761c72747deec7153fc5215",
"md5": "4e76655fe557ef75fa6c280d6ad90365",
"sha256": "7fd0978b8dc4ba02a37a7d3ba72be8346f2e696ace2b5a59b190a217b741929b"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4e76655fe557ef75fa6c280d6ad90365",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 531414,
"upload_time": "2025-02-09T16:30:07",
"upload_time_iso_8601": "2025-02-09T16:30:07.336934Z",
"url": "https://files.pythonhosted.org/packages/c3/86/4c070ff20d1a8efbc30ef34649674ccf583c0761c72747deec7153fc5215/wkbparse-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9bd492bc937464666c7e796e3300f9ed9482fd0c8c1ce2502588cecd6eba304",
"md5": "a7929135bd7a95130000da212fd6b835",
"sha256": "6e9a52cb9b79743bb21c91132abbad0d8069583402ba598672cb5b1d8bdedeac"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a7929135bd7a95130000da212fd6b835",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 452612,
"upload_time": "2025-02-09T16:30:20",
"upload_time_iso_8601": "2025-02-09T16:30:20.238120Z",
"url": "https://files.pythonhosted.org/packages/d9/bd/492bc937464666c7e796e3300f9ed9482fd0c8c1ce2502588cecd6eba304/wkbparse-0.2.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d8b3ebf35e080e2f03ffffb8bcf0a9c20f1a4766a6b39936e4fa4487f721fe1",
"md5": "51a612bb4ed47de13d67922b5ad460dc",
"sha256": "143fe43c0ccd896db479913ee5b26c996f3d2be7f83846fb5761c9347ad3ecc7"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "51a612bb4ed47de13d67922b5ad460dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 432699,
"upload_time": "2025-02-09T16:30:33",
"upload_time_iso_8601": "2025-02-09T16:30:33.330257Z",
"url": "https://files.pythonhosted.org/packages/9d/8b/3ebf35e080e2f03ffffb8bcf0a9c20f1a4766a6b39936e4fa4487f721fe1/wkbparse-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd5fd011bb94acae8113639710804b64a6f72a8cac059eaaed32b8b743d70342",
"md5": "381f71b0b44cfe78a4d21d39db1adbdc",
"sha256": "d4a9aeef98813976666695e2ddf8dddaba1676594646f318612270d5243f5af3"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "381f71b0b44cfe78a4d21d39db1adbdc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 139435,
"upload_time": "2025-02-09T16:31:04",
"upload_time_iso_8601": "2025-02-09T16:31:04.563550Z",
"url": "https://files.pythonhosted.org/packages/dd/5f/d011bb94acae8113639710804b64a6f72a8cac059eaaed32b8b743d70342/wkbparse-0.2.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b8b8280530107d5a7cea85b393abead8d86b77fab422e61773067f30303efdd",
"md5": "e6968ac23053945a4c89f06283f3fc4a",
"sha256": "00823d7e2309a8bdd4b0d4f8d6000d21c300ac63a4dd2900169de4310b0fc11b"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "e6968ac23053945a4c89f06283f3fc4a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 147046,
"upload_time": "2025-02-09T16:30:47",
"upload_time_iso_8601": "2025-02-09T16:30:47.108568Z",
"url": "https://files.pythonhosted.org/packages/3b/8b/8280530107d5a7cea85b393abead8d86b77fab422e61773067f30303efdd/wkbparse-0.2.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "432370f16eeaf98179c8006d4ae3339dfd81e0296753cd7041014a728b7a0097",
"md5": "0525b69ceac7313382080ad22bf0537e",
"sha256": "376884e4b001e48dd1e0eb1a3af5b21d7c564ccf0b11a7c3558bb06852a4dc23"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0525b69ceac7313382080ad22bf0537e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 260539,
"upload_time": "2025-02-09T16:28:25",
"upload_time_iso_8601": "2025-02-09T16:28:25.237806Z",
"url": "https://files.pythonhosted.org/packages/43/23/70f16eeaf98179c8006d4ae3339dfd81e0296753cd7041014a728b7a0097/wkbparse-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62e014d49026f4ddc6fccee0962e1d004b14fdaf3e4f35bdef7ed934d27b377b",
"md5": "4027d2d10038081b722ae5a27a8d8325",
"sha256": "da987f9161dd5cc2d97357739ce0849264ff5017a785414ae5429e8ae53fe4d5"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4027d2d10038081b722ae5a27a8d8325",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 273680,
"upload_time": "2025-02-09T16:28:38",
"upload_time_iso_8601": "2025-02-09T16:28:38.475213Z",
"url": "https://files.pythonhosted.org/packages/62/e0/14d49026f4ddc6fccee0962e1d004b14fdaf3e4f35bdef7ed934d27b377b/wkbparse-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5efa2e0a736c0469492b74f051ae915da4ae74d8116f45fd20f1a9cea152bfca",
"md5": "3c0294e8d9b00a68782e3cdb75fab26e",
"sha256": "6fe8c01f462788599be6b81b31050f20b40a7ba5ecfe2c721649740f95bf7004"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3c0294e8d9b00a68782e3cdb75fab26e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 288919,
"upload_time": "2025-02-09T16:28:50",
"upload_time_iso_8601": "2025-02-09T16:28:50.832202Z",
"url": "https://files.pythonhosted.org/packages/5e/fa/2e0a736c0469492b74f051ae915da4ae74d8116f45fd20f1a9cea152bfca/wkbparse-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48a5dee55cb36db8dfd2c456a028fc733479e15a98af915ea4ed7e45c35b515a",
"md5": "b81a2b86cd4fda5fe73da2ad1e611a4f",
"sha256": "6de09b8e503a416ea8d26bc97bd0308ae7d76594fc4e36f0c311fe14e5a31020"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b81a2b86cd4fda5fe73da2ad1e611a4f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 361701,
"upload_time": "2025-02-09T16:29:05",
"upload_time_iso_8601": "2025-02-09T16:29:05.156782Z",
"url": "https://files.pythonhosted.org/packages/48/a5/dee55cb36db8dfd2c456a028fc733479e15a98af915ea4ed7e45c35b515a/wkbparse-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "388725fa742ac1285af886d730d12911151a45611dce0fe2a41017bd4a4f4b9e",
"md5": "ba5b96b4fe975ee59eca4bad2fd32139",
"sha256": "74f888558446e8b4ec2ceecd356638aa816246d6caaac35a571d4f6171ccf84d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ba5b96b4fe975ee59eca4bad2fd32139",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 266614,
"upload_time": "2025-02-09T16:29:28",
"upload_time_iso_8601": "2025-02-09T16:29:28.810917Z",
"url": "https://files.pythonhosted.org/packages/38/87/25fa742ac1285af886d730d12911151a45611dce0fe2a41017bd4a4f4b9e/wkbparse-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb1a7cde7e87aa06e7bc2199f64dee7034c8de52afcbdd5fce8a74c56a4b4df",
"md5": "53f5deafe1d18c3e2beb3c27e140c6e7",
"sha256": "02a53e9200d802e85fa201b8fe9524888c8ebe48d70284f31ef1751823d59f12"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "53f5deafe1d18c3e2beb3c27e140c6e7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 276836,
"upload_time": "2025-02-09T16:29:18",
"upload_time_iso_8601": "2025-02-09T16:29:18.407469Z",
"url": "https://files.pythonhosted.org/packages/2c/b1/a7cde7e87aa06e7bc2199f64dee7034c8de52afcbdd5fce8a74c56a4b4df/wkbparse-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9f5ce41799d8fd5e393d14bb9e99d31e3a9122f0c2c1638c4649373660dd52c",
"md5": "40b78b6b851c0a0236d4ca58b691fd41",
"sha256": "bd009df2de2ec4bbf8979a20e9161cfc6fdf732a25a1176c1d4d22762982ac2d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "40b78b6b851c0a0236d4ca58b691fd41",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 433498,
"upload_time": "2025-02-09T16:29:46",
"upload_time_iso_8601": "2025-02-09T16:29:46.940057Z",
"url": "https://files.pythonhosted.org/packages/f9/f5/ce41799d8fd5e393d14bb9e99d31e3a9122f0c2c1638c4649373660dd52c/wkbparse-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6012556255a31167a5e06f2fbe9a2a8d6214999e211f2445cf194cd80ebe22c6",
"md5": "625ea0a8f14eacb8d2221e0cbd99297c",
"sha256": "cd197bada48e279183a815226435c5b01c3829a9c7516699222fc65846db42e2"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "625ea0a8f14eacb8d2221e0cbd99297c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 531606,
"upload_time": "2025-02-09T16:30:08",
"upload_time_iso_8601": "2025-02-09T16:30:08.610341Z",
"url": "https://files.pythonhosted.org/packages/60/12/556255a31167a5e06f2fbe9a2a8d6214999e211f2445cf194cd80ebe22c6/wkbparse-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "565c78a288a846afc29135f1aaa2a877ad6f4518b5fb6a3cec1c623538f07ea6",
"md5": "a456adc5d7daa4af06508577a12a3e87",
"sha256": "da9e364f55d8cc23de8ddded8ce0ea52f26e3126feb2bc944a7d8198f3bdd394"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a456adc5d7daa4af06508577a12a3e87",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 452578,
"upload_time": "2025-02-09T16:30:21",
"upload_time_iso_8601": "2025-02-09T16:30:21.500832Z",
"url": "https://files.pythonhosted.org/packages/56/5c/78a288a846afc29135f1aaa2a877ad6f4518b5fb6a3cec1c623538f07ea6/wkbparse-0.2.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71e83349bfa17f8ff318bbe67231bd7c3e842a464114c0dfdaeafe8d4b4bbca6",
"md5": "f579c17b7f219c1127a4ce491efc2238",
"sha256": "567d93153a84a7c031ca000ca976c3ae722cab8b9e2c0e15e7d9c835f3bc6865"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f579c17b7f219c1127a4ce491efc2238",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 432580,
"upload_time": "2025-02-09T16:30:35",
"upload_time_iso_8601": "2025-02-09T16:30:35.350532Z",
"url": "https://files.pythonhosted.org/packages/71/e8/3349bfa17f8ff318bbe67231bd7c3e842a464114c0dfdaeafe8d4b4bbca6/wkbparse-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81138994111609151d5cd3a4dcde68f2a70500f62b37a6b2ed29fd365cd0811d",
"md5": "1140d31a7e7f3d1d4d52ec571ffe754f",
"sha256": "0a94bf4f0c5cd9b81f9146e69b55f3a62fe0b3c2a8a7abd5a738cc86ab5720cd"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1140d31a7e7f3d1d4d52ec571ffe754f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 139436,
"upload_time": "2025-02-09T16:31:06",
"upload_time_iso_8601": "2025-02-09T16:31:06.951248Z",
"url": "https://files.pythonhosted.org/packages/81/13/8994111609151d5cd3a4dcde68f2a70500f62b37a6b2ed29fd365cd0811d/wkbparse-0.2.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4b3d8d3d567b0b58d91bf994d4e5b74004e1f64db15ac503f93fc7c92613787",
"md5": "ab8bbd20829c06614942edfd0b7c0428",
"sha256": "77795896ec55d8bdbb995a471c97e37b36eff7101b893b5856aa2c5d40dc5f8c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ab8bbd20829c06614942edfd0b7c0428",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 146359,
"upload_time": "2025-02-09T16:30:50",
"upload_time_iso_8601": "2025-02-09T16:30:50.134753Z",
"url": "https://files.pythonhosted.org/packages/e4/b3/d8d3d567b0b58d91bf994d4e5b74004e1f64db15ac503f93fc7c92613787/wkbparse-0.2.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99eac8978e39e45caf2047c1fc29b29aea16a68d3787e5cd055a55c015d53e27",
"md5": "5e59fb3d20b1df1f2097344e698ebbe1",
"sha256": "a9ab3baeb7677dcb2da85b52a5eea70164641b92a1decd79b33fc5bf7bd965e7"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5e59fb3d20b1df1f2097344e698ebbe1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 261096,
"upload_time": "2025-02-09T16:28:26",
"upload_time_iso_8601": "2025-02-09T16:28:26.448163Z",
"url": "https://files.pythonhosted.org/packages/99/ea/c8978e39e45caf2047c1fc29b29aea16a68d3787e5cd055a55c015d53e27/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43b094ac2c8c7534713abcf68a39a6ec930231b2a78f6b9210471e9ee4f2a5d7",
"md5": "22fbe98e04303bb633369ce222908b8e",
"sha256": "c23341488c1e0698572de7a75ecd53a519b96ca27a9cc299747c8c79f33104d3"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "22fbe98e04303bb633369ce222908b8e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 273661,
"upload_time": "2025-02-09T16:28:40",
"upload_time_iso_8601": "2025-02-09T16:28:40.474335Z",
"url": "https://files.pythonhosted.org/packages/43/b0/94ac2c8c7534713abcf68a39a6ec930231b2a78f6b9210471e9ee4f2a5d7/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e906b346146ab7adb680737070cf3d760c60d33d54cce444559e1c34bbbf93e7",
"md5": "0811cab50e49dedab00382e4dfd626e1",
"sha256": "6431c721e7c6da10fc4553f23273f66e0074ae23358e615b559c3ee0f2d9247e"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0811cab50e49dedab00382e4dfd626e1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 288952,
"upload_time": "2025-02-09T16:28:52",
"upload_time_iso_8601": "2025-02-09T16:28:52.007151Z",
"url": "https://files.pythonhosted.org/packages/e9/06/b346146ab7adb680737070cf3d760c60d33d54cce444559e1c34bbbf93e7/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d74c2a45f319af535c7c8b180d590210cdc4890d811425109b7c6d335e73e6ad",
"md5": "1ef2627c5cb144b5e1b097c11512fd49",
"sha256": "e0a3605d5d78f44e160b7f2a04dd52a5a368b2e65512694baefdd06f7a426845"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1ef2627c5cb144b5e1b097c11512fd49",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 360553,
"upload_time": "2025-02-09T16:29:07",
"upload_time_iso_8601": "2025-02-09T16:29:07.176332Z",
"url": "https://files.pythonhosted.org/packages/d7/4c/2a45f319af535c7c8b180d590210cdc4890d811425109b7c6d335e73e6ad/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "935c08006f5d81483e5ae518e510899324408688385d3d1ea931de6adc7acdc2",
"md5": "201ad6f092cdcefa443de3e128ddf7c2",
"sha256": "ff0c2dc204f8d1748b32c089fd509d069ce75585929b0eb4a32ebe2611d380f2"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "201ad6f092cdcefa443de3e128ddf7c2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 267053,
"upload_time": "2025-02-09T16:29:30",
"upload_time_iso_8601": "2025-02-09T16:29:30.839054Z",
"url": "https://files.pythonhosted.org/packages/93/5c/08006f5d81483e5ae518e510899324408688385d3d1ea931de6adc7acdc2/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5227c105482480640879bfdfca5f51c4baaf0af42671ce7695be4eb7e473ec70",
"md5": "0786958f7ef25f46ec1310eb0ec48e6e",
"sha256": "b058afa24d71d60ec32fa740459f53fad7972850f0739fc269edbf63b226f5e8"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0786958f7ef25f46ec1310eb0ec48e6e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 276674,
"upload_time": "2025-02-09T16:29:19",
"upload_time_iso_8601": "2025-02-09T16:29:19.591856Z",
"url": "https://files.pythonhosted.org/packages/52/27/c105482480640879bfdfca5f51c4baaf0af42671ce7695be4eb7e473ec70/wkbparse-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eec374ba9a5ce19b7ed06ea1321fb87d14688580008551faae35f9923c8f1d71",
"md5": "1413359f83bceefddc2e75d6904dbac4",
"sha256": "a82184d869c0885872ae11ea1320fc445d5974b06bd9d289d0cc8c02a189a664"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1413359f83bceefddc2e75d6904dbac4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 434334,
"upload_time": "2025-02-09T16:29:49",
"upload_time_iso_8601": "2025-02-09T16:29:49.439331Z",
"url": "https://files.pythonhosted.org/packages/ee/c3/74ba9a5ce19b7ed06ea1321fb87d14688580008551faae35f9923c8f1d71/wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "064e234a83f724c438d1021872800af20de1f5bd4de4ba0db2d1764ee9954fda",
"md5": "457e3bf84aad12aa49714ec2b2468c89",
"sha256": "e8a2f58696d1c995310186f12385940f615a0f4e396819271dc05199490bb72c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "457e3bf84aad12aa49714ec2b2468c89",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 531127,
"upload_time": "2025-02-09T16:30:10",
"upload_time_iso_8601": "2025-02-09T16:30:10.512119Z",
"url": "https://files.pythonhosted.org/packages/06/4e/234a83f724c438d1021872800af20de1f5bd4de4ba0db2d1764ee9954fda/wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19ebae6f265b3ba909c15f4874e6d211f7d575db98fe947fed59b7bf36d19f85",
"md5": "ee3fe2ceb4c3b571b228a4cf3989734f",
"sha256": "60c3f95ec581457c9b31ac6b5e495e767405d5f2c5b045412542b369bcd9871c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ee3fe2ceb4c3b571b228a4cf3989734f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 451978,
"upload_time": "2025-02-09T16:30:23",
"upload_time_iso_8601": "2025-02-09T16:30:23.043395Z",
"url": "https://files.pythonhosted.org/packages/19/eb/ae6f265b3ba909c15f4874e6d211f7d575db98fe947fed59b7bf36d19f85/wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "936b5c65f67d1557fe03dec846716839ed6e5edb1035e2c7835cc0018c4ce8c6",
"md5": "fe27ce67200ab8c7e3f9338ffc41bda2",
"sha256": "48d2533d067ec3cea020f7b60ba4655b01c666d72ecccb9e5578bbc3b5417c7d"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fe27ce67200ab8c7e3f9338ffc41bda2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 432927,
"upload_time": "2025-02-09T16:30:36",
"upload_time_iso_8601": "2025-02-09T16:30:36.602330Z",
"url": "https://files.pythonhosted.org/packages/93/6b/5c65f67d1557fe03dec846716839ed6e5edb1035e2c7835cc0018c4ce8c6/wkbparse-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "508128a675827eee338ac6beed9f8783090c0a85054233296dcace6a4b6b8d67",
"md5": "a459d4ef8d833c524872c84774cf2793",
"sha256": "d1d331c170c0d16ec9bf7a5de244ac21a63aafd377e346365540593746b5fa6f"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a459d4ef8d833c524872c84774cf2793",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 261310,
"upload_time": "2025-02-09T16:28:27",
"upload_time_iso_8601": "2025-02-09T16:28:27.726106Z",
"url": "https://files.pythonhosted.org/packages/50/81/28a675827eee338ac6beed9f8783090c0a85054233296dcace6a4b6b8d67/wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b2d0b473787eb9be4eb3b073574de17e6df7f9d2d174de33b4fa84480042ef9",
"md5": "fd924c7a85df516c728539c965e1b4e1",
"sha256": "a08af5954b4385ece433320f4909782c0e38c29341eb60935edd9f74d6dc40ec"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fd924c7a85df516c728539c965e1b4e1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 273654,
"upload_time": "2025-02-09T16:28:41",
"upload_time_iso_8601": "2025-02-09T16:28:41.704476Z",
"url": "https://files.pythonhosted.org/packages/0b/2d/0b473787eb9be4eb3b073574de17e6df7f9d2d174de33b4fa84480042ef9/wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63481faf8f3ac8fe3129fdbccab25820e22b4b68e5361a1127420f8da6ac06d3",
"md5": "43907870cd611d719e9d3e4d5a5aabb3",
"sha256": "fbc8dba47d6e19802799aba0b89bcfbc717d90bac9a0e175f5426e3a4f80faac"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "43907870cd611d719e9d3e4d5a5aabb3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 288954,
"upload_time": "2025-02-09T16:28:53",
"upload_time_iso_8601": "2025-02-09T16:28:53.966257Z",
"url": "https://files.pythonhosted.org/packages/63/48/1faf8f3ac8fe3129fdbccab25820e22b4b68e5361a1127420f8da6ac06d3/wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4cf53b0f9f4dbf57dae48150becbbb93216e7b6823d57754aedac0fed5843ff4",
"md5": "ce388847a2d3709586d3cfa762536db6",
"sha256": "6820956558fb1ef89c6fd8bd86f79314950d8b412842966e63bd094b35984a48"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ce388847a2d3709586d3cfa762536db6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 359850,
"upload_time": "2025-02-09T16:29:08",
"upload_time_iso_8601": "2025-02-09T16:29:08.361524Z",
"url": "https://files.pythonhosted.org/packages/4c/f5/3b0f9f4dbf57dae48150becbbb93216e7b6823d57754aedac0fed5843ff4/wkbparse-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a14f658dc937d793359f13a87f999a0c45286f605740c0d46c4d93d7522994b",
"md5": "6a37f915adc0605389700091246138d6",
"sha256": "9acac676213c0c399d80b6d9aefccc5b4770e6c4e7b07a0c338c37f649e41afd"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6a37f915adc0605389700091246138d6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 434469,
"upload_time": "2025-02-09T16:29:50",
"upload_time_iso_8601": "2025-02-09T16:29:50.821803Z",
"url": "https://files.pythonhosted.org/packages/9a/14/f658dc937d793359f13a87f999a0c45286f605740c0d46c4d93d7522994b/wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95d087ef0ed4b00d3536f22f98c9371824a42a4b8f8b54967f4fb076f52e5b31",
"md5": "98a859587bd00cb00afbe6b8110ab9d0",
"sha256": "96e64bb83047fc61f983ab14bf3ba6b4a878720af00c6eb212261aa0934ecf4c"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "98a859587bd00cb00afbe6b8110ab9d0",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 531234,
"upload_time": "2025-02-09T16:30:11",
"upload_time_iso_8601": "2025-02-09T16:30:11.935933Z",
"url": "https://files.pythonhosted.org/packages/95/d0/87ef0ed4b00d3536f22f98c9371824a42a4b8f8b54967f4fb076f52e5b31/wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e76ab5fc0eaa19620aa19964975cde2b44e98fefdcdaeaf1b333e6d55851d88",
"md5": "38237ace428f9bec3b9d7254ba18d947",
"sha256": "9d1c9379e8a8864b217fe4889019e5af450ba13f278519ee9118ada7ab0eafa8"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "38237ace428f9bec3b9d7254ba18d947",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 451976,
"upload_time": "2025-02-09T16:30:25",
"upload_time_iso_8601": "2025-02-09T16:30:25.093408Z",
"url": "https://files.pythonhosted.org/packages/7e/76/ab5fc0eaa19620aa19964975cde2b44e98fefdcdaeaf1b333e6d55851d88/wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db8034a077cb770cb9576cb7383d26365bcd08a4cea086d9d17fbe39db439550",
"md5": "4dc3c03f9af5d8a0b5963740c0b5116e",
"sha256": "c36ad4ac7a0ac45c1494ca84730a4917a710e9ab1d93306e9239cdfe172b93ac"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4dc3c03f9af5d8a0b5963740c0b5116e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 432994,
"upload_time": "2025-02-09T16:30:38",
"upload_time_iso_8601": "2025-02-09T16:30:38.187920Z",
"url": "https://files.pythonhosted.org/packages/db/80/34a077cb770cb9576cb7383d26365bcd08a4cea086d9d17fbe39db439550/wkbparse-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b990565f60e6bd412eacc5e0917cf319ec80e4fc08eeb7ca318edb0882733bc5",
"md5": "c1f4bdef46c845ddb3207b6bf06eafe4",
"sha256": "9ae7566763fa8bf922d4a8c9a7c4f02e84a46b1c7306d2b05d1f01af75fba686"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c1f4bdef46c845ddb3207b6bf06eafe4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 261093,
"upload_time": "2025-02-09T16:28:29",
"upload_time_iso_8601": "2025-02-09T16:28:29.602142Z",
"url": "https://files.pythonhosted.org/packages/b9/90/565f60e6bd412eacc5e0917cf319ec80e4fc08eeb7ca318edb0882733bc5/wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "230833f51dac371143a258abe9cceed3c8a5c1775a99a0eb5157061cba0110a4",
"md5": "fb904534cf78bed9c5b24ae21f9ca057",
"sha256": "0fae1ad353e5c2b889fe053597ab0a8d3d036bdb5248974b8eab589dd1e78fbf"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fb904534cf78bed9c5b24ae21f9ca057",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 273660,
"upload_time": "2025-02-09T16:28:42",
"upload_time_iso_8601": "2025-02-09T16:28:42.835408Z",
"url": "https://files.pythonhosted.org/packages/23/08/33f51dac371143a258abe9cceed3c8a5c1775a99a0eb5157061cba0110a4/wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad92186039aaaaa8cf75cc3ae6af9e2ebfc9740dc931db698dad5745eba807cb",
"md5": "3d7e5df7a22df59a64d9461917210060",
"sha256": "68b9433ed95e9041b1cea63753fb3461ba284c6919362c78d50cb696602c5be9"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3d7e5df7a22df59a64d9461917210060",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 288939,
"upload_time": "2025-02-09T16:28:55",
"upload_time_iso_8601": "2025-02-09T16:28:55.273780Z",
"url": "https://files.pythonhosted.org/packages/ad/92/186039aaaaa8cf75cc3ae6af9e2ebfc9740dc931db698dad5745eba807cb/wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44559eb11902263e55db0b30a626bc6059f5b29e56224699b0df842c062f4e3d",
"md5": "cb6e3a349f72a7a22f237501afcd5396",
"sha256": "357c22dc8b4431ac1a222f686529bc636f50050bcea54d0c4b13282ab16eb365"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cb6e3a349f72a7a22f237501afcd5396",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 360546,
"upload_time": "2025-02-09T16:29:10",
"upload_time_iso_8601": "2025-02-09T16:29:10.276339Z",
"url": "https://files.pythonhosted.org/packages/44/55/9eb11902263e55db0b30a626bc6059f5b29e56224699b0df842c062f4e3d/wkbparse-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a487cb67aa2595b0755f1cfa6618725aa88fcd4a818bb8ed0e8b531a08441ad5",
"md5": "6add17f18d168420293880c4751b2324",
"sha256": "1edfbff1254efd6a991dca690c920392a52322ac607d0e0704778fdae22797bc"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6add17f18d168420293880c4751b2324",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 434328,
"upload_time": "2025-02-09T16:29:52",
"upload_time_iso_8601": "2025-02-09T16:29:52.790345Z",
"url": "https://files.pythonhosted.org/packages/a4/87/cb67aa2595b0755f1cfa6618725aa88fcd4a818bb8ed0e8b531a08441ad5/wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65f14706a5ed09bc2aaf323e2be9152c6123c798aca4ffe51cf5838b4a9379fd",
"md5": "255aaf07c105a4fcb69c51510880a0e7",
"sha256": "04465ec4b1f69d6f604abb5cf19226c23ba6fb29c5dc763f9831da17876d3df7"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "255aaf07c105a4fcb69c51510880a0e7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 531119,
"upload_time": "2025-02-09T16:30:13",
"upload_time_iso_8601": "2025-02-09T16:30:13.154995Z",
"url": "https://files.pythonhosted.org/packages/65/f1/4706a5ed09bc2aaf323e2be9152c6123c798aca4ffe51cf5838b4a9379fd/wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65e1567a491999d9e3a13bec47a39a9cbde417739994274f3d8e32eaa09f10c6",
"md5": "1230b34c495b8d50d03a852c9bc096fe",
"sha256": "9439c2428803b92dbfb1c04ede2ebc289c917b2bbfba2a338e208b025a234465"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1230b34c495b8d50d03a852c9bc096fe",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 451972,
"upload_time": "2025-02-09T16:30:26",
"upload_time_iso_8601": "2025-02-09T16:30:26.378443Z",
"url": "https://files.pythonhosted.org/packages/65/e1/567a491999d9e3a13bec47a39a9cbde417739994274f3d8e32eaa09f10c6/wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc9c9f952a8d5f834cb01d780f941a787693464d92bcbe8646388af1acc6e623",
"md5": "790a8884522aa1fe20fa33dcc61b21e0",
"sha256": "692be33cd9ca54112d586210acfb5ac04db9b2672e22c82783961d1432c1eaf9"
},
"downloads": -1,
"filename": "wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "790a8884522aa1fe20fa33dcc61b21e0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 432919,
"upload_time": "2025-02-09T16:30:40",
"upload_time_iso_8601": "2025-02-09T16:30:40.230523Z",
"url": "https://files.pythonhosted.org/packages/dc/9c/9f952a8d5f834cb01d780f941a787693464d92bcbe8646388af1acc6e623/wkbparse-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcfe1d39a06b6b53cc3a305dbc5d29e00e41aabba1d4dc36c341f0ae290558b7",
"md5": "71f3b957564877fc8330fe4b7338901a",
"sha256": "4770ba57d23743b87e4d59cdbb226d8d64ca0c73fc90453f7c82d2f2b5d574a6"
},
"downloads": -1,
"filename": "wkbparse-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "71f3b957564877fc8330fe4b7338901a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 60061,
"upload_time": "2025-02-09T16:27:34",
"upload_time_iso_8601": "2025-02-09T16:27:34.706110Z",
"url": "https://files.pythonhosted.org/packages/fc/fe/1d39a06b6b53cc3a305dbc5d29e00e41aabba1d4dc36c341f0ae290558b7/wkbparse-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-09 16:27:34",
"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"
}