wkbparse


Namewkbparse JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/arjuote/wkbparse
SummaryEWKB and TWKB parsing and conversion to GeoJSON
upload_time2024-12-20 14:28:39
maintainerNone
docs_urlNone
authorArsi Juote <arsi.juote@gmail.com>
requires_python>=3.8
licenseMIT
keywords postgresql postgis gis geo wkb twkb geojson
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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.

## Usage

This module implements the following functionalities:

- TWKB to GeoJSON dictionary: `twkb_to_geojson`
- TWKB to EWKB: `twkb_to_ewkb`
- EWKB to GeoJSON dictionary: `ewkb_to_geojson`
- GeoJSON dictionary to EWKB: `geojson_to_ewkb`

The following is not currently implemented:

- Support for GeometryCollection types
- Encoding any data in TWKB

Example:

```python
import wkbparse

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

The resulting dict looks like:

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

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

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


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/arjuote/wkbparse",
    "name": "wkbparse",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "PostgreSQL, PostGIS, GIS, GEO, WKB, TWKB, GeoJSON",
    "author": "Arsi Juote <arsi.juote@gmail.com>",
    "author_email": "Arsi Juote <arsi.juote@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ee/70/5bbe603ea972536e9aa7959cdb010f8b55fd463bbbd34cb3ccad5395a101/wkbparse-0.1.2.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## Usage\n\nThis module implements the following functionalities:\n\n- TWKB to GeoJSON dictionary: `twkb_to_geojson`\n- TWKB to EWKB: `twkb_to_ewkb`\n- EWKB to GeoJSON dictionary: `ewkb_to_geojson`\n- GeoJSON dictionary to EWKB: `geojson_to_ewkb`\n\nThe following is not currently implemented:\n\n- Support for GeometryCollection types\n- Encoding any data in TWKB\n\nExample:\n\n```python\nimport wkbparse\n\ntwkb_bytes = bytes.fromhex(\"610805d00fa01f50\")\ngeometry = wkbparse.twkb_to_geojson(twkb_bytes)\nprint(geometry)\n```\n\nThe resulting dict looks like:\n\n```\n{\n    type: str                # GeoJSON geometry type\n    crs: Optional[int]       # Spatial reference system identifier\n    coordinates: list[float] # nesting depth depending on geometry type\n}\n```\n\nWhen serializing to GeoJSON strings directly, the `crs` is instead expressed as dictated by the GeoJSON spec using a nested dict, e.g.:\n\n```\n{\n  \"crs\": {\n    \"type\": \"name\",\n    \"properties\": {\n      \"name\": \"EPSG:4326\" # The number is the SRID integer above\n    }\n  }\n}\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "EWKB and TWKB parsing and conversion to GeoJSON",
    "version": "0.1.2",
    "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": "a68ea0c30393fc23de1d55c9d4fd6829f6dccb9dc9ae5452379a85e656046b33",
                "md5": "b6d7e232f7810e436487104ba2ce103d",
                "sha256": "1361c8ed1ecd42540554d8cb8ce391f5ee0dc1a280802985ea50a166a88a663f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6d7e232f7810e436487104ba2ce103d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 252316,
            "upload_time": "2024-12-20T14:25:45",
            "upload_time_iso_8601": "2024-12-20T14:25:45.800718Z",
            "url": "https://files.pythonhosted.org/packages/a6/8e/a0c30393fc23de1d55c9d4fd6829f6dccb9dc9ae5452379a85e656046b33/wkbparse-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd04399e3c35aefaa16abe4d841fdfdf6a0461781cb7e3d34ea89d49d134e463",
                "md5": "ed8fe37745433c86535abd84ac4b1b52",
                "sha256": "5789c45f54e052f6dff8fcb426dbec1764de35c0b7f3f7dcb95174373cda0085"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ed8fe37745433c86535abd84ac4b1b52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 266592,
            "upload_time": "2024-12-20T14:26:07",
            "upload_time_iso_8601": "2024-12-20T14:26:07.316198Z",
            "url": "https://files.pythonhosted.org/packages/fd/04/399e3c35aefaa16abe4d841fdfdf6a0461781cb7e3d34ea89d49d134e463/wkbparse-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4328c094008579d34bcf29798a43e71c44f9d8eb15c75818326aadb511f64d6",
                "md5": "2ff8ae09a4ccd1d6a6736f3399c35b46",
                "sha256": "2f65a55a8492c14d4e2563c4db9dfde45fc5677dcf1c305f8e5dca87ea097940"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2ff8ae09a4ccd1d6a6736f3399c35b46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 281279,
            "upload_time": "2024-12-20T14:26:27",
            "upload_time_iso_8601": "2024-12-20T14:26:27.828120Z",
            "url": "https://files.pythonhosted.org/packages/a4/32/8c094008579d34bcf29798a43e71c44f9d8eb15c75818326aadb511f64d6/wkbparse-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "814925879f26d46f66130b87e22b7e69bec34cf3ebb213e7c2e1bac73f3f8a7d",
                "md5": "6a28dce64b918f1c93c1c5fb64578d5e",
                "sha256": "b2046d64d08dd454755b09a5f63736b9d551517a89bee0165d334269f40bed99"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6a28dce64b918f1c93c1c5fb64578d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 356393,
            "upload_time": "2024-12-20T14:26:51",
            "upload_time_iso_8601": "2024-12-20T14:26:51.289348Z",
            "url": "https://files.pythonhosted.org/packages/81/49/25879f26d46f66130b87e22b7e69bec34cf3ebb213e7c2e1bac73f3f8a7d/wkbparse-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e890caedc473d1e078b1c5e2b4bb3adb2f7704793988658362c665355264a05",
                "md5": "195ac5808ec93330c132c75bd7a8e869",
                "sha256": "39c2aba84994d01da1e424c1d2656cd63c1738274b44b62f71af0769a9ec0a5d"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "195ac5808ec93330c132c75bd7a8e869",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 259182,
            "upload_time": "2024-12-20T14:27:19",
            "upload_time_iso_8601": "2024-12-20T14:27:19.890828Z",
            "url": "https://files.pythonhosted.org/packages/0e/89/0caedc473d1e078b1c5e2b4bb3adb2f7704793988658362c665355264a05/wkbparse-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7ec07c391230b8c98fe959d3662164c021eb1432d30e1aa368f1806b168c1aa",
                "md5": "42a698bf7fc0f11dbfabfdd49eb6b53c",
                "sha256": "3d5a8c072b4a67deceaa6ad666df37c67879ba91830f3db27a18a0f46195bc09"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "42a698bf7fc0f11dbfabfdd49eb6b53c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 270242,
            "upload_time": "2024-12-20T14:27:06",
            "upload_time_iso_8601": "2024-12-20T14:27:06.644915Z",
            "url": "https://files.pythonhosted.org/packages/a7/ec/07c391230b8c98fe959d3662164c021eb1432d30e1aa368f1806b168c1aa/wkbparse-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed0b6a31920fdf9c89c810ea78e3f02806c57474ae6fb57bff087235f1aef468",
                "md5": "c406d2b3a0b0f616c97cd22508469287",
                "sha256": "c92629247001deb4f61d5da8f416947abe40f2e0e08b7d13e0242ea3e887ecec"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c406d2b3a0b0f616c97cd22508469287",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 430973,
            "upload_time": "2024-12-20T14:27:37",
            "upload_time_iso_8601": "2024-12-20T14:27:37.611670Z",
            "url": "https://files.pythonhosted.org/packages/ed/0b/6a31920fdf9c89c810ea78e3f02806c57474ae6fb57bff087235f1aef468/wkbparse-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e80fc7901828698e6f71b2259cbcc2d3ae8b0ff5455dbf9ea47b2ced52bee6e",
                "md5": "9a2ac468436e87498b5b53723b819b8b",
                "sha256": "0aedd786e9fd96b3e9c013181baa5b08dbd57cd60736d24b81a03e5afacc94b6"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a2ac468436e87498b5b53723b819b8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 529102,
            "upload_time": "2024-12-20T14:27:50",
            "upload_time_iso_8601": "2024-12-20T14:27:50.832714Z",
            "url": "https://files.pythonhosted.org/packages/3e/80/fc7901828698e6f71b2259cbcc2d3ae8b0ff5455dbf9ea47b2ced52bee6e/wkbparse-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3a5295f0149c443be3378b2984d58579a6c30669b6e3136cc865551923f6c93",
                "md5": "60f3cdf9f4dbe5b7608a1ad28bf15290",
                "sha256": "8622a403e9570d6e1db6b75459eb4020bc77e3299a574cca5ac6f883322be763"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "60f3cdf9f4dbe5b7608a1ad28bf15290",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 449494,
            "upload_time": "2024-12-20T14:28:06",
            "upload_time_iso_8601": "2024-12-20T14:28:06.690997Z",
            "url": "https://files.pythonhosted.org/packages/a3/a5/295f0149c443be3378b2984d58579a6c30669b6e3136cc865551923f6c93/wkbparse-0.1.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba765a7d60c1a3525a1de0f765b78d1eb835bdee43ad1302400d7fceaec8e9d5",
                "md5": "1d2e0fea3947220de3ba7a7ee6518198",
                "sha256": "dd92d1ad7e6bed35142db3939eeff10f891721a0d9032c3d24d73224c82aad79"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d2e0fea3947220de3ba7a7ee6518198",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 430225,
            "upload_time": "2024-12-20T14:28:23",
            "upload_time_iso_8601": "2024-12-20T14:28:23.216333Z",
            "url": "https://files.pythonhosted.org/packages/ba/76/5a7d60c1a3525a1de0f765b78d1eb835bdee43ad1302400d7fceaec8e9d5/wkbparse-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35934e9ddce6959678ddf0e99c7438a2b31813a0806a966e204c03016da1f293",
                "md5": "79225ddb6d30cb2b6868b6c23468003b",
                "sha256": "7f91af28920c124178921e402dd8f56110c41b3fe746e14aa5470d4541f5952a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "79225ddb6d30cb2b6868b6c23468003b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 137751,
            "upload_time": "2024-12-20T14:28:47",
            "upload_time_iso_8601": "2024-12-20T14:28:47.415148Z",
            "url": "https://files.pythonhosted.org/packages/35/93/4e9ddce6959678ddf0e99c7438a2b31813a0806a966e204c03016da1f293/wkbparse-0.1.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "370cc562f7b685ddba15f7740dc459cfe4040599510a5a37b97f575bcef9aaf6",
                "md5": "541d49370e491593e63f0669cfbbccc0",
                "sha256": "0cea6fedeb70391d0d33e1cfcaeb1ee0860b088715a0043c0653237118dd0cdd"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "541d49370e491593e63f0669cfbbccc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 146445,
            "upload_time": "2024-12-20T14:28:40",
            "upload_time_iso_8601": "2024-12-20T14:28:40.691725Z",
            "url": "https://files.pythonhosted.org/packages/37/0c/c562f7b685ddba15f7740dc459cfe4040599510a5a37b97f575bcef9aaf6/wkbparse-0.1.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "134364fccd382e3a26aa2a11124ddbad32f74fdadbcb82454086b286044f2e9d",
                "md5": "d92fc29e75b82e85759ede1104824d67",
                "sha256": "32ab96e21abdbe65f07b2947294824aa81d77ea3d3ce4e61e00bf71a150745d2"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d92fc29e75b82e85759ede1104824d67",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 227808,
            "upload_time": "2024-12-20T14:27:30",
            "upload_time_iso_8601": "2024-12-20T14:27:30.823269Z",
            "url": "https://files.pythonhosted.org/packages/13/43/64fccd382e3a26aa2a11124ddbad32f74fdadbcb82454086b286044f2e9d/wkbparse-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59fc0a614f6c6e889a55f292abf41afabfb61cb9f75085a173aa323c8992edf3",
                "md5": "bcf70f20ee1fc2001237c04664b7c808",
                "sha256": "93db22c0af070262dfe7351bd5912952bc4770964227b63fbea8f7e235c87726"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcf70f20ee1fc2001237c04664b7c808",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 252315,
            "upload_time": "2024-12-20T14:25:47",
            "upload_time_iso_8601": "2024-12-20T14:25:47.127584Z",
            "url": "https://files.pythonhosted.org/packages/59/fc/0a614f6c6e889a55f292abf41afabfb61cb9f75085a173aa323c8992edf3/wkbparse-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d105be87031b5c73b4b697025d1ad2d37076dc2566af67b02719a64ff5a089a",
                "md5": "fb8bc07e9c3644065c630db99e668fd2",
                "sha256": "bb6195ec0cda36e14a73d4c070a82e92aa08a6d61b1ca9bbdabb5aeb07958aaf"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb8bc07e9c3644065c630db99e668fd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 266592,
            "upload_time": "2024-12-20T14:26:10",
            "upload_time_iso_8601": "2024-12-20T14:26:10.244027Z",
            "url": "https://files.pythonhosted.org/packages/0d/10/5be87031b5c73b4b697025d1ad2d37076dc2566af67b02719a64ff5a089a/wkbparse-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "028716a87a164f957e8707831508045efb9252bd0793365074596f0e8e6acb48",
                "md5": "6b79ba64eb63170239a36a7751b4ec28",
                "sha256": "f488148a0cc90db8e289331465518a5e1e2ef2995ccd4d95c47ca2862835b18f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b79ba64eb63170239a36a7751b4ec28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 281281,
            "upload_time": "2024-12-20T14:26:30",
            "upload_time_iso_8601": "2024-12-20T14:26:30.716862Z",
            "url": "https://files.pythonhosted.org/packages/02/87/16a87a164f957e8707831508045efb9252bd0793365074596f0e8e6acb48/wkbparse-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0632d565ecb0a2c9de1dfc45577d53e636fd721175d80bed3555a95093ab5efe",
                "md5": "c8880f5c73e1b5b41995662cc870563b",
                "sha256": "30b7bd7252b2609c62684695187a20de9f66084a517b4d1b525b3ab7f062cdc3"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c8880f5c73e1b5b41995662cc870563b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 356393,
            "upload_time": "2024-12-20T14:26:52",
            "upload_time_iso_8601": "2024-12-20T14:26:52.614884Z",
            "url": "https://files.pythonhosted.org/packages/06/32/d565ecb0a2c9de1dfc45577d53e636fd721175d80bed3555a95093ab5efe/wkbparse-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ea3515bde14d4ca0043dbba97e01a4d04a2ea3e0f3a14c446a337c0faf5036d",
                "md5": "2f48038b84c18adfe49cc5c0e2096435",
                "sha256": "96641a7fddc554f4e055d8cd49cf0275554bd7aec5152013ebbbeae08705239a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f48038b84c18adfe49cc5c0e2096435",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 259184,
            "upload_time": "2024-12-20T14:27:21",
            "upload_time_iso_8601": "2024-12-20T14:27:21.014196Z",
            "url": "https://files.pythonhosted.org/packages/4e/a3/515bde14d4ca0043dbba97e01a4d04a2ea3e0f3a14c446a337c0faf5036d/wkbparse-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b6438ce6b9a4fcd81425d5f95f3d68e1a5e838dc5f721a60056d5b743bc6f91",
                "md5": "6c8c0eb0db2b54ed49fecef1af4808fa",
                "sha256": "eb38ad81efd0956efc255d3fedcf6e84c7a3a21b8ed3bc59b5e52bfcf5e0bfe3"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6c8c0eb0db2b54ed49fecef1af4808fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 270242,
            "upload_time": "2024-12-20T14:27:07",
            "upload_time_iso_8601": "2024-12-20T14:27:07.753602Z",
            "url": "https://files.pythonhosted.org/packages/0b/64/38ce6b9a4fcd81425d5f95f3d68e1a5e838dc5f721a60056d5b743bc6f91/wkbparse-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "067bec6a071cef2f8f40232054519a0e7f52aca6a009655b387c4bf866c88e00",
                "md5": "b051977d33d62a7625e889d23dc394b1",
                "sha256": "6bc02e52d22113c0709ed94057d8e497b3468623c8be9b98f47e454b9c1d7043"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b051977d33d62a7625e889d23dc394b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 430975,
            "upload_time": "2024-12-20T14:27:39",
            "upload_time_iso_8601": "2024-12-20T14:27:39.075718Z",
            "url": "https://files.pythonhosted.org/packages/06/7b/ec6a071cef2f8f40232054519a0e7f52aca6a009655b387c4bf866c88e00/wkbparse-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47506ca9aa9d55aa4442f4a233155e7fbafe0ddd6c43c92b76474d2113b2bf57",
                "md5": "a2a4b36ab6948ffa888cc0da75ae9513",
                "sha256": "153acea19c16f5f0937c3e0b8a23ddf3d5050e1460568a3c59efbb6c5ce88a17"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a2a4b36ab6948ffa888cc0da75ae9513",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 529104,
            "upload_time": "2024-12-20T14:27:52",
            "upload_time_iso_8601": "2024-12-20T14:27:52.334784Z",
            "url": "https://files.pythonhosted.org/packages/47/50/6ca9aa9d55aa4442f4a233155e7fbafe0ddd6c43c92b76474d2113b2bf57/wkbparse-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b654b1fb686d86ef3462db7ad19496795ba9845a74fdbb6f5b94e24327df6d4b",
                "md5": "cb6473ddf9333e871dcd6dd108705be2",
                "sha256": "9b4eca0fa0df9cdcd768c4fa33edfbb4538bebe41672ee147e48c9dba21cdea8"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cb6473ddf9333e871dcd6dd108705be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 449497,
            "upload_time": "2024-12-20T14:28:08",
            "upload_time_iso_8601": "2024-12-20T14:28:08.652959Z",
            "url": "https://files.pythonhosted.org/packages/b6/54/b1fb686d86ef3462db7ad19496795ba9845a74fdbb6f5b94e24327df6d4b/wkbparse-0.1.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39a1ad90ec70724e2992f8b0927fad80b393be6934167ca7b73875dc184040a4",
                "md5": "2f143ee0bf08936fd19d97f2a055bebe",
                "sha256": "1c90d02ca0805c9595901f4a85237544f70537139ef2cc3b4562f3e88ebb4a37"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f143ee0bf08936fd19d97f2a055bebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 430229,
            "upload_time": "2024-12-20T14:28:24",
            "upload_time_iso_8601": "2024-12-20T14:28:24.657735Z",
            "url": "https://files.pythonhosted.org/packages/39/a1/ad90ec70724e2992f8b0927fad80b393be6934167ca7b73875dc184040a4/wkbparse-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3448bb5fbfdf6a41f474e708a407f21f5942d761a452bed0e9d5eaf39d1b455a",
                "md5": "0271fd2d72c0685c9dda2cd4e1d01170",
                "sha256": "cf43588a902d1af77c514aa1ad15e4562ace82b7ff838450ec30f410aa7dc9c9"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0271fd2d72c0685c9dda2cd4e1d01170",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 137749,
            "upload_time": "2024-12-20T14:28:50",
            "upload_time_iso_8601": "2024-12-20T14:28:50.083566Z",
            "url": "https://files.pythonhosted.org/packages/34/48/bb5fbfdf6a41f474e708a407f21f5942d761a452bed0e9d5eaf39d1b455a/wkbparse-0.1.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "755a4c65f614095fef8e67bfcec00acb8a51a94e686676220476169d965f4f20",
                "md5": "e13dbc46cac3854e8f64a5acc16def03",
                "sha256": "04128fb0dbb38be71b543dc550828b6ca3fcc12f59cc5279a5117d7f099f034b"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e13dbc46cac3854e8f64a5acc16def03",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 146444,
            "upload_time": "2024-12-20T14:28:41",
            "upload_time_iso_8601": "2024-12-20T14:28:41.881043Z",
            "url": "https://files.pythonhosted.org/packages/75/5a/4c65f614095fef8e67bfcec00acb8a51a94e686676220476169d965f4f20/wkbparse-0.1.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c155f74f5eb8faf6274f8965132781456b459a89fc4d581d00734834e7cf000",
                "md5": "e69a695abdc3270fe3d7bfe705c28af6",
                "sha256": "ce13fcc19596fb366de0a1309acead10efba44e9eb9e11e5060e2ac02b51c3c0"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e69a695abdc3270fe3d7bfe705c28af6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 226940,
            "upload_time": "2024-12-20T14:27:33",
            "upload_time_iso_8601": "2024-12-20T14:27:33.323332Z",
            "url": "https://files.pythonhosted.org/packages/8c/15/5f74f5eb8faf6274f8965132781456b459a89fc4d581d00734834e7cf000/wkbparse-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1dd58723dd4f7296ed8340ace7ff114d6ebf0a04223683b00437f2b732a9b6d",
                "md5": "cbbf28e78c3acbd0b39b91e49ae0a307",
                "sha256": "a695808267f459411e65960749be16f744a3659376ca042c1dcceed8881e9582"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbbf28e78c3acbd0b39b91e49ae0a307",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 251375,
            "upload_time": "2024-12-20T14:25:50",
            "upload_time_iso_8601": "2024-12-20T14:25:50.039251Z",
            "url": "https://files.pythonhosted.org/packages/a1/dd/58723dd4f7296ed8340ace7ff114d6ebf0a04223683b00437f2b732a9b6d/wkbparse-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91b8ef192c28d7f9c7424b7bd13157f9dd23f5d35444c7993825208dc87fef73",
                "md5": "840757fe212b7a5f704f8a65c774c51e",
                "sha256": "9154c0c7856f187456202237da018237fa0ae7c4c21ab08bab64b2a3b2cb6fd1"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "840757fe212b7a5f704f8a65c774c51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 265260,
            "upload_time": "2024-12-20T14:26:12",
            "upload_time_iso_8601": "2024-12-20T14:26:12.024477Z",
            "url": "https://files.pythonhosted.org/packages/91/b8/ef192c28d7f9c7424b7bd13157f9dd23f5d35444c7993825208dc87fef73/wkbparse-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d28e9091ac8b73c88d22705c165bdc21bc667b568af5eb291cfc596afde9f9d0",
                "md5": "35a97b6fb9b1cc0c3cc59b9702e1202f",
                "sha256": "7180819cad10f8c48e3e0c4e5cc5852e8817bbbd9f5ce1c659815eb5306e34e0"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "35a97b6fb9b1cc0c3cc59b9702e1202f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 280503,
            "upload_time": "2024-12-20T14:26:33",
            "upload_time_iso_8601": "2024-12-20T14:26:33.192331Z",
            "url": "https://files.pythonhosted.org/packages/d2/8e/9091ac8b73c88d22705c165bdc21bc667b568af5eb291cfc596afde9f9d0/wkbparse-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9011ca0d7e37ca4c47e0ed5bbb57891d2c5123c66b8fdc4d7b6c626ae5987907",
                "md5": "54e132758ede3ba8241e5605f97155dd",
                "sha256": "3a3cfb8db80ac1bed558bc13018d3a2e1bc8ff90fefd9441cd9daa1aad1f8110"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "54e132758ede3ba8241e5605f97155dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 345971,
            "upload_time": "2024-12-20T14:26:54",
            "upload_time_iso_8601": "2024-12-20T14:26:54.185243Z",
            "url": "https://files.pythonhosted.org/packages/90/11/ca0d7e37ca4c47e0ed5bbb57891d2c5123c66b8fdc4d7b6c626ae5987907/wkbparse-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f420e6c08a20e8de8d0270e56449b6d302fd511475a42e5a410d1d7fc3448606",
                "md5": "3d3c969dbbf3e6f6708e506226df9b13",
                "sha256": "255909a0e5acad26a752bc904734391885b121feec7a1a64554922e056251f3c"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d3c969dbbf3e6f6708e506226df9b13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 257942,
            "upload_time": "2024-12-20T14:27:22",
            "upload_time_iso_8601": "2024-12-20T14:27:22.197284Z",
            "url": "https://files.pythonhosted.org/packages/f4/20/e6c08a20e8de8d0270e56449b6d302fd511475a42e5a410d1d7fc3448606/wkbparse-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a96a08651d6f55e375b42285e78a94f21bd5cf028f2b25b8863bcce5a9a4020",
                "md5": "e3c9cc584b4c65287ec4f3367592b0e7",
                "sha256": "5aeb5e6efe11b7a46df5074e8430a178fafae2ffc7f32432f63a11748ac5112d"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e3c9cc584b4c65287ec4f3367592b0e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 269310,
            "upload_time": "2024-12-20T14:27:12",
            "upload_time_iso_8601": "2024-12-20T14:27:12.723024Z",
            "url": "https://files.pythonhosted.org/packages/3a/96/a08651d6f55e375b42285e78a94f21bd5cf028f2b25b8863bcce5a9a4020/wkbparse-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2eae692a2a4f9a9467ad05f1b81b33679ec819203f94b661d664b927e941e908",
                "md5": "a7979604c1188ea61f0c38a1571c745d",
                "sha256": "778967490a8d80f4204cf619fe2a0d40862b1d4bcfb05e0dd75bcec1b0169af1"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a7979604c1188ea61f0c38a1571c745d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 429987,
            "upload_time": "2024-12-20T14:27:40",
            "upload_time_iso_8601": "2024-12-20T14:27:40.459890Z",
            "url": "https://files.pythonhosted.org/packages/2e/ae/692a2a4f9a9467ad05f1b81b33679ec819203f94b661d664b927e941e908/wkbparse-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "907fa227c8df4602de90ba2ebf54cfe2966e54118beea67dad76f88d3e523a89",
                "md5": "ac37d4434e7d0f906118b0d7102880e5",
                "sha256": "10cb571c962826c15f0a8e520a54e51708e2a48d91810afe044425addb882d8b"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ac37d4434e7d0f906118b0d7102880e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 527874,
            "upload_time": "2024-12-20T14:27:54",
            "upload_time_iso_8601": "2024-12-20T14:27:54.778405Z",
            "url": "https://files.pythonhosted.org/packages/90/7f/a227c8df4602de90ba2ebf54cfe2966e54118beea67dad76f88d3e523a89/wkbparse-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b98e55107e9fca81b7c73e6422a7320b9390a87a49fc2014b38e4f44095d95cf",
                "md5": "151865eb46723a440b2a0d8ae6d66b4a",
                "sha256": "0ecfd3335d789cdf9431b3b6543e45ce8cbcb5612f6562633279b4a1ff03cc1d"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "151865eb46723a440b2a0d8ae6d66b4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 448824,
            "upload_time": "2024-12-20T14:28:10",
            "upload_time_iso_8601": "2024-12-20T14:28:10.750518Z",
            "url": "https://files.pythonhosted.org/packages/b9/8e/55107e9fca81b7c73e6422a7320b9390a87a49fc2014b38e4f44095d95cf/wkbparse-0.1.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "692f00442dbae274df5d92ed02c6d506bc2f1f8acced8247001eb3dac739ab66",
                "md5": "ad33182591d7efdb9d6637fdbd227282",
                "sha256": "3083b1fc8aa6b45639fb83d08868e8dfdd3dc5a90800fe7ddcaf94539c6fc7ea"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad33182591d7efdb9d6637fdbd227282",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 429017,
            "upload_time": "2024-12-20T14:28:27",
            "upload_time_iso_8601": "2024-12-20T14:28:27.188837Z",
            "url": "https://files.pythonhosted.org/packages/69/2f/00442dbae274df5d92ed02c6d506bc2f1f8acced8247001eb3dac739ab66/wkbparse-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a05afa22ec20e925132d783546e419f65d3c9bee8ed7ca9eacff1d601869ed8",
                "md5": "df3cd0146ed415258b870dae26fc0772",
                "sha256": "7d0559d96e968e4d5ebde91ce318bbf9186e707889ac696525405f733d999cfe"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "df3cd0146ed415258b870dae26fc0772",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 135926,
            "upload_time": "2024-12-20T14:28:51",
            "upload_time_iso_8601": "2024-12-20T14:28:51.383777Z",
            "url": "https://files.pythonhosted.org/packages/4a/05/afa22ec20e925132d783546e419f65d3c9bee8ed7ca9eacff1d601869ed8/wkbparse-0.1.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71d83fa0ca69d39e2f2ab0697866ddb816e12a01e241706a95dd6411b0298bcc",
                "md5": "ac970adcafadfaf258559bea9dae63da",
                "sha256": "1f05e3db4fd505a92ec1e94f250b2e02d6112747140a911c231a4b5e5b87e871"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac970adcafadfaf258559bea9dae63da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 143891,
            "upload_time": "2024-12-20T14:28:43",
            "upload_time_iso_8601": "2024-12-20T14:28:43.226812Z",
            "url": "https://files.pythonhosted.org/packages/71/d8/3fa0ca69d39e2f2ab0697866ddb816e12a01e241706a95dd6411b0298bcc/wkbparse-0.1.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aae78e824afe929513ea0a9dc403de226e1c60d6b1170727d9ffe88ffce00a59",
                "md5": "b9d360765c2ec5b8fdaf946e2165cd2c",
                "sha256": "b106f1cefeed83ce24fd4f8406f670b27f65b8038d2c17dee0636e974846c608"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b9d360765c2ec5b8fdaf946e2165cd2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 226937,
            "upload_time": "2024-12-20T14:27:36",
            "upload_time_iso_8601": "2024-12-20T14:27:36.387185Z",
            "url": "https://files.pythonhosted.org/packages/aa/e7/8e824afe929513ea0a9dc403de226e1c60d6b1170727d9ffe88ffce00a59/wkbparse-0.1.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb9a82026e86553b980025d78a6204e927a704901bf5ceefa6626a9c9c400823",
                "md5": "fbe0674354076a11c934b25e1bc636ea",
                "sha256": "2800b57acabe685cc9d615604b6bf3f46c5ff6cfb04ccff2c374ccae107e3eb7"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fbe0674354076a11c934b25e1bc636ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 251375,
            "upload_time": "2024-12-20T14:25:52",
            "upload_time_iso_8601": "2024-12-20T14:25:52.495255Z",
            "url": "https://files.pythonhosted.org/packages/fb/9a/82026e86553b980025d78a6204e927a704901bf5ceefa6626a9c9c400823/wkbparse-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a69ddec7f9f387808359f8a52ab06684ec6bb1fbf1361e9abba04bc969b2bd97",
                "md5": "9743ea3055123ab27937eca7292e7a7e",
                "sha256": "58099e788f64b9262c5692a9ff8256f1f5d731dc02a83b5dfe927cadd1195470"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9743ea3055123ab27937eca7292e7a7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 265262,
            "upload_time": "2024-12-20T14:26:14",
            "upload_time_iso_8601": "2024-12-20T14:26:14.571534Z",
            "url": "https://files.pythonhosted.org/packages/a6/9d/dec7f9f387808359f8a52ab06684ec6bb1fbf1361e9abba04bc969b2bd97/wkbparse-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f3f783e6c9a7375cfd610a0e09c1d1c852d1e1468b25fcce207323fde53b86a",
                "md5": "5a4fe61fb366b15b3b64e6c766218c9e",
                "sha256": "2566151bc367b271d19a27c5f81403a7a231f67eb2445117fd981ea5fbd0b670"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5a4fe61fb366b15b3b64e6c766218c9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 280506,
            "upload_time": "2024-12-20T14:26:35",
            "upload_time_iso_8601": "2024-12-20T14:26:35.752153Z",
            "url": "https://files.pythonhosted.org/packages/9f/3f/783e6c9a7375cfd610a0e09c1d1c852d1e1468b25fcce207323fde53b86a/wkbparse-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d07ab62f8093fa454ca533945d65cf30f6e46cc33222409fc0785b454cb390b",
                "md5": "d8d34079ebd755f4acde2314acef6c14",
                "sha256": "4d79408808aea96bd28ea9ad1fa6d7911c4b3bea282c016e3c33615a7803af7b"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d8d34079ebd755f4acde2314acef6c14",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 345972,
            "upload_time": "2024-12-20T14:26:55",
            "upload_time_iso_8601": "2024-12-20T14:26:55.393509Z",
            "url": "https://files.pythonhosted.org/packages/6d/07/ab62f8093fa454ca533945d65cf30f6e46cc33222409fc0785b454cb390b/wkbparse-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5101b5f247efbe2bddc8a085f650f1bcd8c5eca3713fb3711be8015f65430f6a",
                "md5": "671bdd5cad4595c8a8afaec11e7bd7c6",
                "sha256": "5548b5d7e4b93f0271e99945dd2904531258cfb0af936de75a1be8d20d7d0893"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "671bdd5cad4595c8a8afaec11e7bd7c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 257944,
            "upload_time": "2024-12-20T14:27:23",
            "upload_time_iso_8601": "2024-12-20T14:27:23.344315Z",
            "url": "https://files.pythonhosted.org/packages/51/01/b5f247efbe2bddc8a085f650f1bcd8c5eca3713fb3711be8015f65430f6a/wkbparse-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4b3e855f156181a6e519df1c5b7d31b1123040efbb213d335a78eb3bfbd1239",
                "md5": "09f4fa82217eaa6676545e8eca7714f7",
                "sha256": "aa6ba6f7d910a55c13997ab41952a8c93ec712c2350681a1a3b1cd4c3b033a32"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "09f4fa82217eaa6676545e8eca7714f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 269311,
            "upload_time": "2024-12-20T14:27:13",
            "upload_time_iso_8601": "2024-12-20T14:27:13.865446Z",
            "url": "https://files.pythonhosted.org/packages/c4/b3/e855f156181a6e519df1c5b7d31b1123040efbb213d335a78eb3bfbd1239/wkbparse-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68dd71350f30814ba454b2957b11d866af0fd69b293e9226eb9365f3bdb24ba7",
                "md5": "92db9930a9ad90f83551716d61a1f1ba",
                "sha256": "31b7e82fee03f347cc7ff8cd23a679e99d217d383c2c6ac239a5e8de603d1ea1"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92db9930a9ad90f83551716d61a1f1ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 429989,
            "upload_time": "2024-12-20T14:27:41",
            "upload_time_iso_8601": "2024-12-20T14:27:41.646951Z",
            "url": "https://files.pythonhosted.org/packages/68/dd/71350f30814ba454b2957b11d866af0fd69b293e9226eb9365f3bdb24ba7/wkbparse-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8154ea7f8660c10cf29a1f681a35cb0730972f46d62a62d6a61f798df21405d1",
                "md5": "9a2b55c2bd5f7c076fbf5835fb4a1864",
                "sha256": "637434682db2179588622d2a4ba8422653445fbd0d641a698a1a99fafd8a31a7"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a2b55c2bd5f7c076fbf5835fb4a1864",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 527874,
            "upload_time": "2024-12-20T14:27:56",
            "upload_time_iso_8601": "2024-12-20T14:27:56.082054Z",
            "url": "https://files.pythonhosted.org/packages/81/54/ea7f8660c10cf29a1f681a35cb0730972f46d62a62d6a61f798df21405d1/wkbparse-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "045668346c97832461a42bc25ce5dfacef9fdd3cd6a404b66b998fbd53a502ac",
                "md5": "c782a8f07a0a2f7b147afc766daf10c6",
                "sha256": "874ab53fe2b9e9f7c10bca21ca2065a2c22ba0efe001876aaa0d80e905c6b9b9"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c782a8f07a0a2f7b147afc766daf10c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 448824,
            "upload_time": "2024-12-20T14:28:12",
            "upload_time_iso_8601": "2024-12-20T14:28:12.335499Z",
            "url": "https://files.pythonhosted.org/packages/04/56/68346c97832461a42bc25ce5dfacef9fdd3cd6a404b66b998fbd53a502ac/wkbparse-0.1.2-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0df5f1b5e401dff1bc8ca0262306c74153677525cd8a5f879a73176e1a459a35",
                "md5": "13244b2fbbfc6271f64b45ccf08076a5",
                "sha256": "804cd5ef860233c3108c06b897ed0cfb44cc7b5f7c34942ff031b92dfdbcc33a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13244b2fbbfc6271f64b45ccf08076a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 429017,
            "upload_time": "2024-12-20T14:28:29",
            "upload_time_iso_8601": "2024-12-20T14:28:29.602604Z",
            "url": "https://files.pythonhosted.org/packages/0d/f5/f1b5e401dff1bc8ca0262306c74153677525cd8a5f879a73176e1a459a35/wkbparse-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdeda7d2ef6cf9fde76a5c322507f044615e363998180fa6ebe1161089ae0bec",
                "md5": "b94d8ecaa361f5d5109d4f50a915a14a",
                "sha256": "84fe168904826c3ef5a5aacb17a1155cdb28b0a72175ff75c36bdc4cfb8d7c2e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b94d8ecaa361f5d5109d4f50a915a14a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 251382,
            "upload_time": "2024-12-20T14:25:56",
            "upload_time_iso_8601": "2024-12-20T14:25:56.036509Z",
            "url": "https://files.pythonhosted.org/packages/bd/ed/a7d2ef6cf9fde76a5c322507f044615e363998180fa6ebe1161089ae0bec/wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a42918d0a7cd5d06e123666e3a69c3abb6acc2ae844b579078f7566f5aacab16",
                "md5": "d6eb033b03153be418cec47c12cbbb78",
                "sha256": "69be6fbe354b2eefd70b7c9df978fb13e7953e23ce8a0db87835dbaf68bf31ce"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d6eb033b03153be418cec47c12cbbb78",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 265265,
            "upload_time": "2024-12-20T14:26:15",
            "upload_time_iso_8601": "2024-12-20T14:26:15.818587Z",
            "url": "https://files.pythonhosted.org/packages/a4/29/18d0a7cd5d06e123666e3a69c3abb6acc2ae844b579078f7566f5aacab16/wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e3aae800ec511a571dda3f78d6fc356cab571d288677789d90da1c0fced2cef",
                "md5": "e1d01e22bbe6c18dcafec542b4d8d03c",
                "sha256": "af3f313df1cce8bd7929534244119a525b9bf65e1eed6b2656124bbf906aa72f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e1d01e22bbe6c18dcafec542b4d8d03c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 280511,
            "upload_time": "2024-12-20T14:26:38",
            "upload_time_iso_8601": "2024-12-20T14:26:38.201742Z",
            "url": "https://files.pythonhosted.org/packages/5e/3a/ae800ec511a571dda3f78d6fc356cab571d288677789d90da1c0fced2cef/wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5f2f23828e4ed02dba0fb88c9f0c121a87eb2b63f1b2100b88d2a7fc5435fe3",
                "md5": "803ebb88a1cb5f6b2251cb2d8973fcdd",
                "sha256": "83e364200cb613433611df31830d8cfb2f3b27d81265b2e64778e69ecc9f2d0e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "803ebb88a1cb5f6b2251cb2d8973fcdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 345976,
            "upload_time": "2024-12-20T14:26:56",
            "upload_time_iso_8601": "2024-12-20T14:26:56.627564Z",
            "url": "https://files.pythonhosted.org/packages/f5/f2/f23828e4ed02dba0fb88c9f0c121a87eb2b63f1b2100b88d2a7fc5435fe3/wkbparse-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bc6ae9bbaf2692a7e0adae1d00d3958b5e331bbc617b1f8c7a6330ce57cc5a7",
                "md5": "fab6130c963122658f3a35203b413629",
                "sha256": "44fa02cbea1d19f9a917de02d6a80f01fae441a4a037ab809cb1d285a4f2e999"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fab6130c963122658f3a35203b413629",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 429991,
            "upload_time": "2024-12-20T14:27:42",
            "upload_time_iso_8601": "2024-12-20T14:27:42.854706Z",
            "url": "https://files.pythonhosted.org/packages/7b/c6/ae9bbaf2692a7e0adae1d00d3958b5e331bbc617b1f8c7a6330ce57cc5a7/wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7486c45f0e3edc664a8e1121ce9ecae60326f8e1506d28163a71f59af08da80c",
                "md5": "ab2ee5d12c8f9189211e74160f7b56e5",
                "sha256": "cd62cb561b2bcc92b7318fc2261c57dd7d68cbfce4eea60c225073417918862e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ab2ee5d12c8f9189211e74160f7b56e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 527876,
            "upload_time": "2024-12-20T14:27:57",
            "upload_time_iso_8601": "2024-12-20T14:27:57.662209Z",
            "url": "https://files.pythonhosted.org/packages/74/86/c45f0e3edc664a8e1121ce9ecae60326f8e1506d28163a71f59af08da80c/wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad85086b48d3b4ea32e316c7fb3b37c595ce474049f1e4b20a59869f5fba5066",
                "md5": "effa577e8e81eb6f9c92f803c4259100",
                "sha256": "7afd1964de3c82c91d9b63b2f31255b36662d08f04afbfefa206164ffcde46d9"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "effa577e8e81eb6f9c92f803c4259100",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 448827,
            "upload_time": "2024-12-20T14:28:13",
            "upload_time_iso_8601": "2024-12-20T14:28:13.900213Z",
            "url": "https://files.pythonhosted.org/packages/ad/85/086b48d3b4ea32e316c7fb3b37c595ce474049f1e4b20a59869f5fba5066/wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11708d0269eeadb15869b901834cc63af64c159a5393d2f87ed146be2c953efa",
                "md5": "896dda7df1e39e8f277e7ea158014e91",
                "sha256": "abd1a1d691bb00ea0000a93f00e5f0e9b05c939dd22b7c0a8853e0fe4d36bd13"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "896dda7df1e39e8f277e7ea158014e91",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 429022,
            "upload_time": "2024-12-20T14:28:30",
            "upload_time_iso_8601": "2024-12-20T14:28:30.973939Z",
            "url": "https://files.pythonhosted.org/packages/11/70/8d0269eeadb15869b901834cc63af64c159a5393d2f87ed146be2c953efa/wkbparse-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a16b34132e8aeebb132309c21aa0153939c683a114fbd6a4a90c8064967eeb49",
                "md5": "d91feb8b7bf6c8c76523dad4f6ba1484",
                "sha256": "02dc2dbb43f66cd5303548c5809c8434d3bb086e1ace11be0ada21a99713a892"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d91feb8b7bf6c8c76523dad4f6ba1484",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 252502,
            "upload_time": "2024-12-20T14:25:58",
            "upload_time_iso_8601": "2024-12-20T14:25:58.566730Z",
            "url": "https://files.pythonhosted.org/packages/a1/6b/34132e8aeebb132309c21aa0153939c683a114fbd6a4a90c8064967eeb49/wkbparse-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f05f6964c732cacf770800a32ac28a3763b6106c9c288b40181b3f07c93a748a",
                "md5": "0921af8ac103de9155d24260f20f1f3a",
                "sha256": "93255cb69ea2efcbbcdd74afe4101ec0a7ee5091a46b53a1f3bb84b2145f5724"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0921af8ac103de9155d24260f20f1f3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 266259,
            "upload_time": "2024-12-20T14:26:19",
            "upload_time_iso_8601": "2024-12-20T14:26:19.770448Z",
            "url": "https://files.pythonhosted.org/packages/f0/5f/6964c732cacf770800a32ac28a3763b6106c9c288b40181b3f07c93a748a/wkbparse-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5d983a8718381e26985c5458b6288a5396f5fe90671d869b9a1ef36d92250bf",
                "md5": "a3270621c3b4fec2683aba551eca6f03",
                "sha256": "d535020e4c7c6c4251e852a2e8172fb925ac16ede051e8b441246deb4e642269"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a3270621c3b4fec2683aba551eca6f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 281570,
            "upload_time": "2024-12-20T14:26:41",
            "upload_time_iso_8601": "2024-12-20T14:26:41.025105Z",
            "url": "https://files.pythonhosted.org/packages/d5/d9/83a8718381e26985c5458b6288a5396f5fe90671d869b9a1ef36d92250bf/wkbparse-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b12ccc80906cb8cfe956e1873ab9fd5427c6eeebc4983eda9c9c07cde5e44d48",
                "md5": "7b0abbcfdb6189fac2ba7a987faa13f9",
                "sha256": "e91fa3f5767ea10839d2ba30aa58a83ec34dbc38490242db8380958807d50004"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7b0abbcfdb6189fac2ba7a987faa13f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 356700,
            "upload_time": "2024-12-20T14:26:57",
            "upload_time_iso_8601": "2024-12-20T14:26:57.965680Z",
            "url": "https://files.pythonhosted.org/packages/b1/2c/cc80906cb8cfe956e1873ab9fd5427c6eeebc4983eda9c9c07cde5e44d48/wkbparse-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09e27156237c22e721d798491f9472c7e4cccce2f122c3cfbcbfa126275f6f3f",
                "md5": "ed22fb3a33678a2be5232b2abf9ee23d",
                "sha256": "856c4ee4c142b632689b280da3e6de780b2ad51090d3f3942ed3d025c9457738"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed22fb3a33678a2be5232b2abf9ee23d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 258915,
            "upload_time": "2024-12-20T14:27:26",
            "upload_time_iso_8601": "2024-12-20T14:27:26.092099Z",
            "url": "https://files.pythonhosted.org/packages/09/e2/7156237c22e721d798491f9472c7e4cccce2f122c3cfbcbfa126275f6f3f/wkbparse-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e7d485e8c90977962554e8112eb4cbcc64f78729373827e04842821f54bdd25",
                "md5": "0f42ee255ea862a943b6602b9ea8b122",
                "sha256": "760649b1661484115de2b00dd51c28e78b40e2ee3ee2569e8d0047f91d6238dc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0f42ee255ea862a943b6602b9ea8b122",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 270442,
            "upload_time": "2024-12-20T14:27:15",
            "upload_time_iso_8601": "2024-12-20T14:27:15.025925Z",
            "url": "https://files.pythonhosted.org/packages/8e/7d/485e8c90977962554e8112eb4cbcc64f78729373827e04842821f54bdd25/wkbparse-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1eda150ae900b31c55dec9d5e6f42c255a54cc291c0784f0bf6c5688f7894a74",
                "md5": "4ab72ea569ce43a19d654412319b5989",
                "sha256": "87786e9db4ca6996b110d54c2d285951da54f3dd297892ebea310a1cadb4f915"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ab72ea569ce43a19d654412319b5989",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 431109,
            "upload_time": "2024-12-20T14:27:44",
            "upload_time_iso_8601": "2024-12-20T14:27:44.040543Z",
            "url": "https://files.pythonhosted.org/packages/1e/da/150ae900b31c55dec9d5e6f42c255a54cc291c0784f0bf6c5688f7894a74/wkbparse-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ee33b2497d64468aa5789148c8ddf854ebe59bb04cc2ccab0662ff869c8fb2e",
                "md5": "8381e05d2e801ea3e442889b79026e2c",
                "sha256": "01d71578267776ae67f061f0d3f19dcac42d1e7c6414c191b371d41663dd5b85"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8381e05d2e801ea3e442889b79026e2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 528732,
            "upload_time": "2024-12-20T14:27:59",
            "upload_time_iso_8601": "2024-12-20T14:27:59.196863Z",
            "url": "https://files.pythonhosted.org/packages/2e/e3/3b2497d64468aa5789148c8ddf854ebe59bb04cc2ccab0662ff869c8fb2e/wkbparse-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "572a6ed177b597397ace43f5b6df180aaf2c6d3d915c7eba7fe79e0c47b67166",
                "md5": "bd64031a94fc765e2d148390b31cd27c",
                "sha256": "a65462d09cca96d78eed3a519c05cdf1756863b838513ba0385aa93576a01cc3"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bd64031a94fc765e2d148390b31cd27c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 449712,
            "upload_time": "2024-12-20T14:28:15",
            "upload_time_iso_8601": "2024-12-20T14:28:15.404014Z",
            "url": "https://files.pythonhosted.org/packages/57/2a/6ed177b597397ace43f5b6df180aaf2c6d3d915c7eba7fe79e0c47b67166/wkbparse-0.1.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4351852e4a112a3ba68463dc24da7c2cda747c0ae42d03386502ab3f594e575",
                "md5": "48827b813dbc698dad6af97271a75b03",
                "sha256": "4d7b131e1009fe0e931a6f1eb1daa46853fd8b3352ad891f500958aee42c22f6"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48827b813dbc698dad6af97271a75b03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 429996,
            "upload_time": "2024-12-20T14:28:32",
            "upload_time_iso_8601": "2024-12-20T14:28:32.279982Z",
            "url": "https://files.pythonhosted.org/packages/f4/35/1852e4a112a3ba68463dc24da7c2cda747c0ae42d03386502ab3f594e575/wkbparse-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70e9e72c0b929456f5e7e77031aefdfbeb5d265b16ea2b75f0444cf73095684c",
                "md5": "05fe9d677eff0e5f81b0140ef0da06da",
                "sha256": "10523c5a7de9b8e866de1bf182912a1ac2c3f584880cfb4a5b48a8c877bc5d4a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "05fe9d677eff0e5f81b0140ef0da06da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 137734,
            "upload_time": "2024-12-20T14:28:52",
            "upload_time_iso_8601": "2024-12-20T14:28:52.607125Z",
            "url": "https://files.pythonhosted.org/packages/70/e9/e72c0b929456f5e7e77031aefdfbeb5d265b16ea2b75f0444cf73095684c/wkbparse-0.1.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4486e3197f041955e1f7bfe50a0ae33e58d6b70b21a57b3b3518284c4bc366c",
                "md5": "c401233d71703597e48828f526d877cf",
                "sha256": "cac3158732335758a8db346a3288fc0f2f6e0613f7b22f20f3b8aa35242a1bd5"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c401233d71703597e48828f526d877cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 147311,
            "upload_time": "2024-12-20T14:28:44",
            "upload_time_iso_8601": "2024-12-20T14:28:44.529887Z",
            "url": "https://files.pythonhosted.org/packages/c4/48/6e3197f041955e1f7bfe50a0ae33e58d6b70b21a57b3b3518284c4bc366c/wkbparse-0.1.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1879da739361fa189e363b7a8ab9a80ff8f41ddeb0bd869c11328b2bf0cdedba",
                "md5": "b75c33c71bdfa33146787a593cf7788e",
                "sha256": "2d551e0e1ded076d754a0151604a8840a3d1764fb033891ac8ea6515f1d247b3"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b75c33c71bdfa33146787a593cf7788e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 252179,
            "upload_time": "2024-12-20T14:26:00",
            "upload_time_iso_8601": "2024-12-20T14:26:00.016667Z",
            "url": "https://files.pythonhosted.org/packages/18/79/da739361fa189e363b7a8ab9a80ff8f41ddeb0bd869c11328b2bf0cdedba/wkbparse-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6683763d10e31204996e35c4f835734797221c07633c87fed44b55c56e75eb8",
                "md5": "c949d5f42c64021e559665ede6395239",
                "sha256": "f43f108f89e789075d1209a69d3614643ed7d2ef666a326ccc1eb79a916238dc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c949d5f42c64021e559665ede6395239",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 266589,
            "upload_time": "2024-12-20T14:26:22",
            "upload_time_iso_8601": "2024-12-20T14:26:22.159922Z",
            "url": "https://files.pythonhosted.org/packages/b6/68/3763d10e31204996e35c4f835734797221c07633c87fed44b55c56e75eb8/wkbparse-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f6b22feb489751c358533114e9f015ae2a76d55125036f2cb8cfa7de38f78a7",
                "md5": "b02d5c45a7e80bcc842bd8cd71a240bb",
                "sha256": "998c3e0888135d1869f1202f201243c803446c85fc90d034f73893f72a616954"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b02d5c45a7e80bcc842bd8cd71a240bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 281282,
            "upload_time": "2024-12-20T14:26:42",
            "upload_time_iso_8601": "2024-12-20T14:26:42.233310Z",
            "url": "https://files.pythonhosted.org/packages/3f/6b/22feb489751c358533114e9f015ae2a76d55125036f2cb8cfa7de38f78a7/wkbparse-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8f1ff235027ae45484053e1e220bf02716dda7e1d29719eec6a5b6f915c71b3",
                "md5": "7e8883b042e35d977a5358dd45284ff2",
                "sha256": "c319c6de3aa6477bd33983579f79efc1bc18dad0082d0945084522c884154daf"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7e8883b042e35d977a5358dd45284ff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 355756,
            "upload_time": "2024-12-20T14:26:59",
            "upload_time_iso_8601": "2024-12-20T14:26:59.082133Z",
            "url": "https://files.pythonhosted.org/packages/f8/f1/ff235027ae45484053e1e220bf02716dda7e1d29719eec6a5b6f915c71b3/wkbparse-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "358cbecc76cac9089810a0b84e3594e5e26283b7c74757ea72f8868961e3db22",
                "md5": "c2d15a39899547477a2b194e4b2e9ab5",
                "sha256": "037e00039071abc78fc95dd5871b6d59e4ae926eb67b3430141bbbe3d7f241bd"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2d15a39899547477a2b194e4b2e9ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 258933,
            "upload_time": "2024-12-20T14:27:27",
            "upload_time_iso_8601": "2024-12-20T14:27:27.281658Z",
            "url": "https://files.pythonhosted.org/packages/35/8c/becc76cac9089810a0b84e3594e5e26283b7c74757ea72f8868961e3db22/wkbparse-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b68407a84bc2df159125653816ef9462a0ad48d611bc49c83b6452d2b022652",
                "md5": "8f95debb247ef47fed49650a0b37c509",
                "sha256": "e0f67365380eb651c802f7d4876d564e099c72346cda19e2d1a746e862107927"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8f95debb247ef47fed49650a0b37c509",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 270398,
            "upload_time": "2024-12-20T14:27:16",
            "upload_time_iso_8601": "2024-12-20T14:27:16.133850Z",
            "url": "https://files.pythonhosted.org/packages/0b/68/407a84bc2df159125653816ef9462a0ad48d611bc49c83b6452d2b022652/wkbparse-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7b8f9888905e067e57abc7653d584210ffe4c86d1eaba78448801eb7eac87b6",
                "md5": "200fa47d1f8f3a853faf0d8cbd9cad5c",
                "sha256": "bc473c1cc04c603a67640515419926ba2c0fd3cebbb0148bdd03c06590056b84"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "200fa47d1f8f3a853faf0d8cbd9cad5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 430705,
            "upload_time": "2024-12-20T14:27:45",
            "upload_time_iso_8601": "2024-12-20T14:27:45.339702Z",
            "url": "https://files.pythonhosted.org/packages/e7/b8/f9888905e067e57abc7653d584210ffe4c86d1eaba78448801eb7eac87b6/wkbparse-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a50d8b01a38d8da0ca901a360abdb04b90de12af5362f5269ad539829fd96652",
                "md5": "848ffed3a4ac2f763a11a15474124ae4",
                "sha256": "a3ee254da1c10b6bfed9c80432133efb53184d5fcd014660a350c24bb4c4ba42"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "848ffed3a4ac2f763a11a15474124ae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 529094,
            "upload_time": "2024-12-20T14:28:01",
            "upload_time_iso_8601": "2024-12-20T14:28:01.247179Z",
            "url": "https://files.pythonhosted.org/packages/a5/0d/8b01a38d8da0ca901a360abdb04b90de12af5362f5269ad539829fd96652/wkbparse-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6219ff1db6dd65f52644509f98ca484319dbcfe5f12fd11b2db9d0fdcf234312",
                "md5": "62f7cb156bc66e2f5c83a2357624c1c0",
                "sha256": "e444aabf0bf269fa2a8c3ba43210f9abab1da90ba9128bd35b72e2bcc08889ea"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "62f7cb156bc66e2f5c83a2357624c1c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 449725,
            "upload_time": "2024-12-20T14:28:17",
            "upload_time_iso_8601": "2024-12-20T14:28:17.230823Z",
            "url": "https://files.pythonhosted.org/packages/62/19/ff1db6dd65f52644509f98ca484319dbcfe5f12fd11b2db9d0fdcf234312/wkbparse-0.1.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7647d48c21c439ef8d2310beee3ecf904efc6255cda589c42aa9e905ae3cef3",
                "md5": "bd4b6e44ac21eb7eed0910e2926bb966",
                "sha256": "043750a6e1ea3eeab1ca3fc903d583f02c40631df22740afaa284eb11f1d5dfe"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd4b6e44ac21eb7eed0910e2926bb966",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 429954,
            "upload_time": "2024-12-20T14:28:33",
            "upload_time_iso_8601": "2024-12-20T14:28:33.570457Z",
            "url": "https://files.pythonhosted.org/packages/e7/64/7d48c21c439ef8d2310beee3ecf904efc6255cda589c42aa9e905ae3cef3/wkbparse-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca2224ea928ba8c02b84ae20fc0fdb7a3f0e3cbca3a283e56d8762e9bd100d93",
                "md5": "65e32d2b6fed8a0c1454cf46dc3954e3",
                "sha256": "ebfb693ac49f1c6ad789918cc47e06edaf2978fd64a718df1a4446d347754d05"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "65e32d2b6fed8a0c1454cf46dc3954e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 137896,
            "upload_time": "2024-12-20T14:28:53",
            "upload_time_iso_8601": "2024-12-20T14:28:53.911163Z",
            "url": "https://files.pythonhosted.org/packages/ca/22/24ea928ba8c02b84ae20fc0fdb7a3f0e3cbca3a283e56d8762e9bd100d93/wkbparse-0.1.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12cb9712e3a3e3f43681594f33beeaad679a3b69fe36702bfaf5426e1a7b1146",
                "md5": "62dce932af8cdd60f423f2e033e92601",
                "sha256": "4826f6c5547ccfc36d9f0690dba176dd6d0ab74ef641c40d8a9d6ac10af69b76"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62dce932af8cdd60f423f2e033e92601",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 146438,
            "upload_time": "2024-12-20T14:28:46",
            "upload_time_iso_8601": "2024-12-20T14:28:46.010864Z",
            "url": "https://files.pythonhosted.org/packages/12/cb/9712e3a3e3f43681594f33beeaad679a3b69fe36702bfaf5426e1a7b1146/wkbparse-0.1.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "041cfee646499f40312324d1ab61acfbff019b2a87ca8f6302e5742f0e4ff299",
                "md5": "09e1465f613c71ad3e3fe987e17dca38",
                "sha256": "6641226424cb8b26a524f13f78abf1cfbb79a22d4a07b5ab63c3ded997743921"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09e1465f613c71ad3e3fe987e17dca38",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 252598,
            "upload_time": "2024-12-20T14:26:01",
            "upload_time_iso_8601": "2024-12-20T14:26:01.227562Z",
            "url": "https://files.pythonhosted.org/packages/04/1c/fee646499f40312324d1ab61acfbff019b2a87ca8f6302e5742f0e4ff299/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8cc06570809895903cea648057739877ec8be31e1bc2514e67cb901ac765967",
                "md5": "5ca210d182ca2dd15a260a4d19aa37dd",
                "sha256": "6833d81ff8ca3b15d7af129e5e73a6b67b35a0b2ded74dfd37816193a350cb3e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5ca210d182ca2dd15a260a4d19aa37dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 266141,
            "upload_time": "2024-12-20T14:26:23",
            "upload_time_iso_8601": "2024-12-20T14:26:23.467999Z",
            "url": "https://files.pythonhosted.org/packages/d8/cc/06570809895903cea648057739877ec8be31e1bc2514e67cb901ac765967/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e60b5a86389e388d2020b48a2b5ee730a6dd8f790c486f76b309ba6859cb928",
                "md5": "52f27053dab026fb54d78422f857eb50",
                "sha256": "01442e196e69ea78608ae9957034a7490d6f6a2f6781cce3477d027da76a33cc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "52f27053dab026fb54d78422f857eb50",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 281663,
            "upload_time": "2024-12-20T14:26:43",
            "upload_time_iso_8601": "2024-12-20T14:26:43.432100Z",
            "url": "https://files.pythonhosted.org/packages/2e/60/b5a86389e388d2020b48a2b5ee730a6dd8f790c486f76b309ba6859cb928/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a99431bc1edf5badff9fdd279b23408080737b174ca1c31444f3aea6ae06bd0",
                "md5": "c194a323ca47cd11d22ec969401efde5",
                "sha256": "debdf2a85629a39bfeb7e8f0ffd3060d60fe6e0284c08c5162b44d1fb12cc9da"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c194a323ca47cd11d22ec969401efde5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 355248,
            "upload_time": "2024-12-20T14:27:00",
            "upload_time_iso_8601": "2024-12-20T14:27:00.803589Z",
            "url": "https://files.pythonhosted.org/packages/8a/99/431bc1edf5badff9fdd279b23408080737b174ca1c31444f3aea6ae06bd0/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26c8f16dda0b013b65f9df2db837f0cd7e5635eebaaceec1eae1f8d2eecc9126",
                "md5": "443cfd4ab9098a5446690fbb52c17e66",
                "sha256": "887b5d6fabd12d3f8cec819838757d83cfc61931382f0c0de703f2cc79347ee1"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "443cfd4ab9098a5446690fbb52c17e66",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 259235,
            "upload_time": "2024-12-20T14:27:29",
            "upload_time_iso_8601": "2024-12-20T14:27:29.627827Z",
            "url": "https://files.pythonhosted.org/packages/26/c8/f16dda0b013b65f9df2db837f0cd7e5635eebaaceec1eae1f8d2eecc9126/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6beb6fcf42677c6e4d978ee4d5dc5fd993fca46c58f102d3ab58a9d1e8c9e079",
                "md5": "648deb6b96f41da0d42eb566178937e2",
                "sha256": "f3e58fbac8ba95fafae7f1173f6a71adb0e5f62d0d34aa3338669b4a8e916100"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "648deb6b96f41da0d42eb566178937e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 270059,
            "upload_time": "2024-12-20T14:27:18",
            "upload_time_iso_8601": "2024-12-20T14:27:18.709903Z",
            "url": "https://files.pythonhosted.org/packages/6b/eb/6fcf42677c6e4d978ee4d5dc5fd993fca46c58f102d3ab58a9d1e8c9e079/wkbparse-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8b6007c667f89a7a40a0d461231df6ba2e85c19642478c7429bbe79c798e46b",
                "md5": "9c073eee895ba00bdc9c77ca39d221ec",
                "sha256": "fd49c39bd8bf0f93cae5e81c4f7f2abf069f9e6d6fc355329bce00fc8f6fef8e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c073eee895ba00bdc9c77ca39d221ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 431422,
            "upload_time": "2024-12-20T14:27:46",
            "upload_time_iso_8601": "2024-12-20T14:27:46.530549Z",
            "url": "https://files.pythonhosted.org/packages/b8/b6/007c667f89a7a40a0d461231df6ba2e85c19642478c7429bbe79c798e46b/wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcd8f239bdb1b8d22f97a7793ef84e540278e51aca8c6700d5cf59263a1fa139",
                "md5": "9806924bb444ca8e1cceeefe7058a65b",
                "sha256": "492f7ec71f3c018affc6c915c531c753dbf03188035563a07e309a5033de1145"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9806924bb444ca8e1cceeefe7058a65b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 528554,
            "upload_time": "2024-12-20T14:28:02",
            "upload_time_iso_8601": "2024-12-20T14:28:02.538945Z",
            "url": "https://files.pythonhosted.org/packages/fc/d8/f239bdb1b8d22f97a7793ef84e540278e51aca8c6700d5cf59263a1fa139/wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70d3551cf9f08e9401746a265f9e3ce3630eb906649904f2cfdc15b8dfb63040",
                "md5": "903aa1bacac34393c1ddebc9fe93078c",
                "sha256": "5a6954a54f43733104a5921a5ad8a18105f97f54a2513dc77d6727c2ab263acc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "903aa1bacac34393c1ddebc9fe93078c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 449243,
            "upload_time": "2024-12-20T14:28:18",
            "upload_time_iso_8601": "2024-12-20T14:28:18.616574Z",
            "url": "https://files.pythonhosted.org/packages/70/d3/551cf9f08e9401746a265f9e3ce3630eb906649904f2cfdc15b8dfb63040/wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4677c3f35dd2b6f9bf74c1c22c170d91693dce4c8a6ae9ea1c8accdccc900da7",
                "md5": "898c205ece6bbf4cef714a8c2bfb9b07",
                "sha256": "bc4b0cd4f6830c7800fcf52a5944f0308058d095d907f2835fb768d6e79dbee0"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "898c205ece6bbf4cef714a8c2bfb9b07",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 430274,
            "upload_time": "2024-12-20T14:28:35",
            "upload_time_iso_8601": "2024-12-20T14:28:35.059572Z",
            "url": "https://files.pythonhosted.org/packages/46/77/c3f35dd2b6f9bf74c1c22c170d91693dce4c8a6ae9ea1c8accdccc900da7/wkbparse-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66278ea9b038238149cb29dbcbdf384ab6c3f3d934877df48aacf221199f27ff",
                "md5": "3afa7a01a79cc0b94dd11de6453c6adf",
                "sha256": "1433f0c44a5c62786534c31a1087c7e3b83bc28f9df76b56dd0e790674da91b3"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3afa7a01a79cc0b94dd11de6453c6adf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 252533,
            "upload_time": "2024-12-20T14:26:02",
            "upload_time_iso_8601": "2024-12-20T14:26:02.469799Z",
            "url": "https://files.pythonhosted.org/packages/66/27/8ea9b038238149cb29dbcbdf384ab6c3f3d934877df48aacf221199f27ff/wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9550d9d08d055e4fb2ead48a2d5ee00866ed63af6c11817d3b9d3487414585ab",
                "md5": "902d985ddf1b39bdd0fd787d199c257d",
                "sha256": "78155542a0bf52e3e2aed27d3b00729285aab629c97fcdedfa01e6628b7428f1"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "902d985ddf1b39bdd0fd787d199c257d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 266158,
            "upload_time": "2024-12-20T14:26:24",
            "upload_time_iso_8601": "2024-12-20T14:26:24.736930Z",
            "url": "https://files.pythonhosted.org/packages/95/50/d9d08d055e4fb2ead48a2d5ee00866ed63af6c11817d3b9d3487414585ab/wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71338146601492cd19c301ca95ec8b54fb4a30877b80a62324ec160428341032",
                "md5": "ff8894f3ddbb73ee19312b61ca969beb",
                "sha256": "b397343f3415b0c16376bf76765c5ebb13725a2939c5f026b2c32e5458653a0e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ff8894f3ddbb73ee19312b61ca969beb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 281694,
            "upload_time": "2024-12-20T14:26:45",
            "upload_time_iso_8601": "2024-12-20T14:26:45.911307Z",
            "url": "https://files.pythonhosted.org/packages/71/33/8146601492cd19c301ca95ec8b54fb4a30877b80a62324ec160428341032/wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d7a03ebecee9ff20b629615ccb6b2a3f2f8ebd243932a946dddaf55a28d2cd",
                "md5": "63a34625d485779ce24677f3e279e911",
                "sha256": "e5377e425d69d4a3eefeaf49cc42eb6ea7e8e1c3a6730fea98eadbb66204473b"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "63a34625d485779ce24677f3e279e911",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 355291,
            "upload_time": "2024-12-20T14:27:02",
            "upload_time_iso_8601": "2024-12-20T14:27:02.125366Z",
            "url": "https://files.pythonhosted.org/packages/f9/d7/a03ebecee9ff20b629615ccb6b2a3f2f8ebd243932a946dddaf55a28d2cd/wkbparse-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6822cc0751ee4c9fd5b07977fc26aa77015d452d43f2613ac5a3618ced7e92a8",
                "md5": "94868a0997ce95ac59f3089662876411",
                "sha256": "0cb7a5edd64fbef2e8d3079588fd4689ba45b298462fc91c51d1e32702ad740c"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94868a0997ce95ac59f3089662876411",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 431376,
            "upload_time": "2024-12-20T14:27:48",
            "upload_time_iso_8601": "2024-12-20T14:27:48.205851Z",
            "url": "https://files.pythonhosted.org/packages/68/22/cc0751ee4c9fd5b07977fc26aa77015d452d43f2613ac5a3618ced7e92a8/wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11baa991676362f7dfb7172afdc675ecb8cc24fc0387c62616b58308c2ff0eff",
                "md5": "0ec4b4f466a12cfd8bee798a6f9ba858",
                "sha256": "016b479fcec0841c0a0a34fad13995beb5efe397818c208643e160b92e00b2a4"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0ec4b4f466a12cfd8bee798a6f9ba858",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 528598,
            "upload_time": "2024-12-20T14:28:03",
            "upload_time_iso_8601": "2024-12-20T14:28:03.916866Z",
            "url": "https://files.pythonhosted.org/packages/11/ba/a991676362f7dfb7172afdc675ecb8cc24fc0387c62616b58308c2ff0eff/wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "102dfe1715e0157ba7d9a8eddcb81bfc1cc800afd3cd0aacbd3da8f6914f8f4a",
                "md5": "fdbd88660b29bc6aad2a3e7a77ca12b6",
                "sha256": "717895fcb9c8e95a5a1da7a4a5055ab950437bb200905409ff4022fa267567ad"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fdbd88660b29bc6aad2a3e7a77ca12b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 449198,
            "upload_time": "2024-12-20T14:28:19",
            "upload_time_iso_8601": "2024-12-20T14:28:19.978696Z",
            "url": "https://files.pythonhosted.org/packages/10/2d/fe1715e0157ba7d9a8eddcb81bfc1cc800afd3cd0aacbd3da8f6914f8f4a/wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3681523e4121fd9fa8c742639a0c8570cd8fe36e7551e62198a9390f2c565682",
                "md5": "02a0ca06b8caa2c77927c99026d30593",
                "sha256": "72ef9d1f9322e7180b6cfcb52d90e98f07c38072da1d68b9e0621c8654624080"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02a0ca06b8caa2c77927c99026d30593",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 430345,
            "upload_time": "2024-12-20T14:28:36",
            "upload_time_iso_8601": "2024-12-20T14:28:36.493042Z",
            "url": "https://files.pythonhosted.org/packages/36/81/523e4121fd9fa8c742639a0c8570cd8fe36e7551e62198a9390f2c565682/wkbparse-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f1bac2b163c35163e3977059945fd35522af889a82349dfa7578783c7c6d75c",
                "md5": "eccd7d83846e9f7c669f68018c5330f6",
                "sha256": "a865b1bbd35459c58443b535ac609ac2aad7f138f87b033654a688d8002896df"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eccd7d83846e9f7c669f68018c5330f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 252594,
            "upload_time": "2024-12-20T14:26:04",
            "upload_time_iso_8601": "2024-12-20T14:26:04.889905Z",
            "url": "https://files.pythonhosted.org/packages/0f/1b/ac2b163c35163e3977059945fd35522af889a82349dfa7578783c7c6d75c/wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7f28911f5286c40fa45753986f6dbc57186f0cca7cf69c25ac0df79fa919a01",
                "md5": "5d330da1f7491c6c11a56ecbbbd4e086",
                "sha256": "f3c5460bac293ea5d7f98b6558f5071667cf430915b6d101c7ae4deb93166d77"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5d330da1f7491c6c11a56ecbbbd4e086",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 266137,
            "upload_time": "2024-12-20T14:26:26",
            "upload_time_iso_8601": "2024-12-20T14:26:26.087200Z",
            "url": "https://files.pythonhosted.org/packages/a7/f2/8911f5286c40fa45753986f6dbc57186f0cca7cf69c25ac0df79fa919a01/wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0ef322df398b20bddf10f28f4403a0617966082913fc3725f96af81b6fe229b",
                "md5": "2c6d8fb37925daf601e2f10987648de1",
                "sha256": "de7cee3c70e4a2a94a3322150438d30a2169fc215f03b727984071276568bc58"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2c6d8fb37925daf601e2f10987648de1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 281551,
            "upload_time": "2024-12-20T14:26:47",
            "upload_time_iso_8601": "2024-12-20T14:26:47.034574Z",
            "url": "https://files.pythonhosted.org/packages/c0/ef/322df398b20bddf10f28f4403a0617966082913fc3725f96af81b6fe229b/wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f80ad91308c90c81ab9ba4f1bcc7bd0617adff838489835edb9ed42d86f5dfc9",
                "md5": "2047aee1a5a5264fba95fd63ea02e3b1",
                "sha256": "7ee2039d8c404401c660be3bd8851dad733c8feb824a066c0aaacba91285f0bb"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2047aee1a5a5264fba95fd63ea02e3b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 355243,
            "upload_time": "2024-12-20T14:27:05",
            "upload_time_iso_8601": "2024-12-20T14:27:05.327899Z",
            "url": "https://files.pythonhosted.org/packages/f8/0a/d91308c90c81ab9ba4f1bcc7bd0617adff838489835edb9ed42d86f5dfc9/wkbparse-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0225a0680a9173be4e7c0008db0df8c18c8245d4ba5f3f1d22acc16da0953cb1",
                "md5": "e0f1bac279cc3b3325d11cc20b47d4ab",
                "sha256": "96368eabd8066dcebbbc39eecff0783dbc691d0b1908541d202058187df0cc31"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0f1bac279cc3b3325d11cc20b47d4ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 431414,
            "upload_time": "2024-12-20T14:27:49",
            "upload_time_iso_8601": "2024-12-20T14:27:49.476415Z",
            "url": "https://files.pythonhosted.org/packages/02/25/a0680a9173be4e7c0008db0df8c18c8245d4ba5f3f1d22acc16da0953cb1/wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8f5167f1d8087ae6fcf4a6deec704ec1389810481f42e93f5a6faadd4ef5514",
                "md5": "cc15180a416191a7053e999e0d4a0110",
                "sha256": "f6a741db2349c29f75ddccb52ee2251ed84d86a34c0d755ad709a85f05fbe2a7"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cc15180a416191a7053e999e0d4a0110",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 528544,
            "upload_time": "2024-12-20T14:28:05",
            "upload_time_iso_8601": "2024-12-20T14:28:05.251796Z",
            "url": "https://files.pythonhosted.org/packages/e8/f5/167f1d8087ae6fcf4a6deec704ec1389810481f42e93f5a6faadd4ef5514/wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0ed436eab9b3ac522474d09f2d86c2977e72b3cc8f388d803b54c3d22c6d27c",
                "md5": "5d60b44098927dc7538b5505680fffc2",
                "sha256": "71cbc5ac339ad32bf05c2a82151bd8620560082782724ed5ebb49ac976bd95bc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5d60b44098927dc7538b5505680fffc2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 449233,
            "upload_time": "2024-12-20T14:28:21",
            "upload_time_iso_8601": "2024-12-20T14:28:21.235453Z",
            "url": "https://files.pythonhosted.org/packages/f0/ed/436eab9b3ac522474d09f2d86c2977e72b3cc8f388d803b54c3d22c6d27c/wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "732f26e3110db6cb7daf90b9bc1559d9e1768a9cc21e97750590a0caf07efd18",
                "md5": "46deb8c662748e7d36beb3b11ce88a38",
                "sha256": "cb44f01461b7eb474334fd104bdcec955ed2a0b85ff51d5a46c149570a94a767"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46deb8c662748e7d36beb3b11ce88a38",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 430267,
            "upload_time": "2024-12-20T14:28:38",
            "upload_time_iso_8601": "2024-12-20T14:28:38.021919Z",
            "url": "https://files.pythonhosted.org/packages/73/2f/26e3110db6cb7daf90b9bc1559d9e1768a9cc21e97750590a0caf07efd18/wkbparse-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee705bbe603ea972536e9aa7959cdb010f8b55fd463bbbd34cb3ccad5395a101",
                "md5": "e36071cd433c572ea966aa531d3ffda2",
                "sha256": "7f3c80c61e01957f6bc5f8bf6c7a78473b4422950027865d37441148a1c0f454"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "e36071cd433c572ea966aa531d3ffda2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 51356,
            "upload_time": "2024-12-20T14:28:39",
            "upload_time_iso_8601": "2024-12-20T14:28:39.280791Z",
            "url": "https://files.pythonhosted.org/packages/ee/70/5bbe603ea972536e9aa7959cdb010f8b55fd463bbbd34cb3ccad5395a101/wkbparse-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-20 14:28:39",
    "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"
}
        
Elapsed time: 0.43510s