wkbparse


Namewkbparse JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/arjuote/wkbparse
SummaryEWKB and TWKB parsing and conversion to GeoJSON
upload_time2023-08-04 10:26:17
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.

## 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/a4/69/be46cee7bca2f574363e21547b2801760aa44bef9dfff79157179f62495f/wkbparse-0.1.0.tar.gz",
    "platform": null,
    "description": "# wkbparse\n\n`wkbparse` is a Python module written in Rust for parsing [EWKB](https://postgis.net/docs/using_postgis_dbmanagement.html#EWKB_EWKT) and [TWKB](https://github.com/TWKB/Specification/blob/master/twkb.md) geometries into GeoJSON strings or GeoJSON-like Python dictionaries in a performant fashion.\n\nOriginal EWKB/TWKB encoding code forked from [https://github.com/Mortal/rust-ewkb](Mortal/rust-ewkb) which in turn originates from [https://github.com/andelf/rust-postgis](andelf/rust-postgis).\n\n`wkbparse` is developed mainly for usage with PostGIS and has been tested with geometries generated with one. However, it has no explicit dependencies towards PostgreSQL or PostGIS and can be used with EWKB/TWKB geometries originating from any system. In such case it is advisable to validate results carefully before using for anything serious.\n\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.0",
    "project_urls": {
        "Homepage": "https://github.com/arjuote/wkbparse",
        "Source": "https://github.com/arjuote/wkbparse"
    },
    "split_keywords": [
        "postgresql",
        "postgis",
        "gis",
        "geo",
        "wkb",
        "twkb",
        "geojson"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab52f0fbfb20bd957b40feff3eec6a7bbac2f6693cefb6d08702fa3f77973be0",
                "md5": "d5eb3f60840f1ba98f58ea97dfaad4cd",
                "sha256": "0c5c44fa3a458e399b44c2769bc63287df3b570cf633c32a302e28bd32347069"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5eb3f60840f1ba98f58ea97dfaad4cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 201409,
            "upload_time": "2023-08-04T10:24:30",
            "upload_time_iso_8601": "2023-08-04T10:24:30.177381Z",
            "url": "https://files.pythonhosted.org/packages/ab/52/f0fbfb20bd957b40feff3eec6a7bbac2f6693cefb6d08702fa3f77973be0/wkbparse-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8329c2d61b848c282198fd1ec544a945e62365f236ab478fb5b22e6d7c38f5ed",
                "md5": "9a4b0d7b5392a2a5418d890926de57d3",
                "sha256": "01c11befb69df5a1d0fe9162daa0a0decd5af2c7158be2abb09bf65caff51eee"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a4b0d7b5392a2a5418d890926de57d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 190085,
            "upload_time": "2023-08-04T10:24:32",
            "upload_time_iso_8601": "2023-08-04T10:24:32.643584Z",
            "url": "https://files.pythonhosted.org/packages/83/29/c2d61b848c282198fd1ec544a945e62365f236ab478fb5b22e6d7c38f5ed/wkbparse-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0801cec16166d4f47f47ab308107825c608e9de597c460487ef9cbf9bc0bd127",
                "md5": "e5ca1ec1a47919671729b0ae96060ca4",
                "sha256": "378f4b2d6a106ae2247e79dbd52b20d2b62d2a4944bb2e2b3f8458a3ac3076fa"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e5ca1ec1a47919671729b0ae96060ca4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 203949,
            "upload_time": "2023-08-04T10:24:34",
            "upload_time_iso_8601": "2023-08-04T10:24:34.997311Z",
            "url": "https://files.pythonhosted.org/packages/08/01/cec16166d4f47f47ab308107825c608e9de597c460487ef9cbf9bc0bd127/wkbparse-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dba294a35d6fb8172f01177d60539ef3e9fa0599f53838bb90e121a02974956e",
                "md5": "ba1e3a94a33151fd703b40e565373aaf",
                "sha256": "7622548471a36aeb4b2acb8110c48a10fd0d5a50bfef3ae6c79e931bb099d368"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ba1e3a94a33151fd703b40e565373aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 206884,
            "upload_time": "2023-08-04T10:24:36",
            "upload_time_iso_8601": "2023-08-04T10:24:36.544645Z",
            "url": "https://files.pythonhosted.org/packages/db/a2/94a35d6fb8172f01177d60539ef3e9fa0599f53838bb90e121a02974956e/wkbparse-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a03eda1a6d1d3f806070e6cc00ae8855eb149aea6f0ce6c4bc9df5f44af4ea0",
                "md5": "b1a8e1d8f8bba69ba1b0ebc93c25e0d6",
                "sha256": "3475ceffb007472bccc7aab2e7bbed826312045d284e46404f75b536328480d6"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b1a8e1d8f8bba69ba1b0ebc93c25e0d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 228741,
            "upload_time": "2023-08-04T10:24:38",
            "upload_time_iso_8601": "2023-08-04T10:24:38.031666Z",
            "url": "https://files.pythonhosted.org/packages/7a/03/eda1a6d1d3f806070e6cc00ae8855eb149aea6f0ce6c4bc9df5f44af4ea0/wkbparse-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e35e79488a971f5e87dc4aa3707c32d1130b436274088da3a9b9347071e0c5d2",
                "md5": "228a47264dcb193c11bcac6639476871",
                "sha256": "1e617c9754f29e1a8a79c137c5f2aed8cd0ec22894ca50a92bfe0af037d2009a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "228a47264dcb193c11bcac6639476871",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 296864,
            "upload_time": "2023-08-04T10:24:40",
            "upload_time_iso_8601": "2023-08-04T10:24:40.299831Z",
            "url": "https://files.pythonhosted.org/packages/e3/5e/79488a971f5e87dc4aa3707c32d1130b436274088da3a9b9347071e0c5d2/wkbparse-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e147b40d0f8aad84ea32d49fe9c16d069a7e0f86a823010e1cbf6004800d735c",
                "md5": "f38b63d32cb58b60721c034e6ed7a4a6",
                "sha256": "99caa9c1ec959c09b193d7b28cce4ebd5e9b91060fd87bcc859607ddd2fb8f55"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f38b63d32cb58b60721c034e6ed7a4a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 213946,
            "upload_time": "2023-08-04T10:24:42",
            "upload_time_iso_8601": "2023-08-04T10:24:42.122505Z",
            "url": "https://files.pythonhosted.org/packages/e1/47/b40d0f8aad84ea32d49fe9c16d069a7e0f86a823010e1cbf6004800d735c/wkbparse-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9894bd67475a99bb77e1343015824de74a01ac68e35049d458dbbe03852664a5",
                "md5": "e13565bec3f55d3f5e2e78ad3ec27a92",
                "sha256": "08286a7c574c6d4035808bebb76143e03b9cb8d5b59b7330ed1a922d330f14f8"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e13565bec3f55d3f5e2e78ad3ec27a92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 222403,
            "upload_time": "2023-08-04T10:24:43",
            "upload_time_iso_8601": "2023-08-04T10:24:43.832018Z",
            "url": "https://files.pythonhosted.org/packages/98/94/bd67475a99bb77e1343015824de74a01ac68e35049d458dbbe03852664a5/wkbparse-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79f908fd11887e10bd026c613458d7bd158795eecbf32f42ed2bf9852cc7af3d",
                "md5": "d1a6607f2bf4f141adeb26ac9bf9aa44",
                "sha256": "3b44d8a61e0b9d4bf4294b8db0e6c649ce79ed29365e0804f447e83dcc86561c"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d1a6607f2bf4f141adeb26ac9bf9aa44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 134548,
            "upload_time": "2023-08-04T10:24:45",
            "upload_time_iso_8601": "2023-08-04T10:24:45.276636Z",
            "url": "https://files.pythonhosted.org/packages/79/f9/08fd11887e10bd026c613458d7bd158795eecbf32f42ed2bf9852cc7af3d/wkbparse-0.1.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51a0cb4f5fdff608eac64b6bde625e02fef5b38fff6c38206c7b80e72acaefc3",
                "md5": "f0a459e88aaf82e3f5e45d844d8e8b95",
                "sha256": "ac8adf76528badb0b77eab62a6e90ef8f2c5c1b5b222b03ef38f466bf4bbb001"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f0a459e88aaf82e3f5e45d844d8e8b95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 144775,
            "upload_time": "2023-08-04T10:24:46",
            "upload_time_iso_8601": "2023-08-04T10:24:46.794647Z",
            "url": "https://files.pythonhosted.org/packages/51/a0/cb4f5fdff608eac64b6bde625e02fef5b38fff6c38206c7b80e72acaefc3/wkbparse-0.1.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9228a7319b618175119c234344d2e09a41b65c13092de356bc65b0410ffdb9c",
                "md5": "c60fc345062347b3616eef6f72d52b20",
                "sha256": "870763be0d99051a46c0a0cca313760a34cfbf3232fab2cb9f39c2b474ce5c98"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c60fc345062347b3616eef6f72d52b20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 201408,
            "upload_time": "2023-08-04T10:24:48",
            "upload_time_iso_8601": "2023-08-04T10:24:48.423912Z",
            "url": "https://files.pythonhosted.org/packages/b9/22/8a7319b618175119c234344d2e09a41b65c13092de356bc65b0410ffdb9c/wkbparse-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33039c2350a7e1b9620e3351de3c40b1ccc277daf238e3e29cbfcbd6ff1e3c53",
                "md5": "f23e5288ba972bf18910a467d3417366",
                "sha256": "24cf45c6dc3463240e0683eb1288dc4989ded5ceede52c14d49ebb504260f40d"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f23e5288ba972bf18910a467d3417366",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 190086,
            "upload_time": "2023-08-04T10:24:49",
            "upload_time_iso_8601": "2023-08-04T10:24:49.959524Z",
            "url": "https://files.pythonhosted.org/packages/33/03/9c2350a7e1b9620e3351de3c40b1ccc277daf238e3e29cbfcbd6ff1e3c53/wkbparse-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5335460ed28a7999c294fe441a6db3077c5a7298ccae4640e23fba2b20acecda",
                "md5": "a3d50e64a3bc98618c49cd91ca123b00",
                "sha256": "2fd15868d580cd5eb5a080cd0ec112a00acb53d1e3ffad16a4c4d7380efe8f61"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a3d50e64a3bc98618c49cd91ca123b00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 203948,
            "upload_time": "2023-08-04T10:24:51",
            "upload_time_iso_8601": "2023-08-04T10:24:51.576895Z",
            "url": "https://files.pythonhosted.org/packages/53/35/460ed28a7999c294fe441a6db3077c5a7298ccae4640e23fba2b20acecda/wkbparse-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40aef6038e86e9c1f7c6a11045171e99dd1d33958df405bbc50c86ce4276285d",
                "md5": "7c0552b2fc7f63dd594cf6c9615366fc",
                "sha256": "5c2b858535212bcbd7a62f6b76be2ccce6a55bcaca41da627c3df8230bc3aaee"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7c0552b2fc7f63dd594cf6c9615366fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 206882,
            "upload_time": "2023-08-04T10:24:53",
            "upload_time_iso_8601": "2023-08-04T10:24:53.489574Z",
            "url": "https://files.pythonhosted.org/packages/40/ae/f6038e86e9c1f7c6a11045171e99dd1d33958df405bbc50c86ce4276285d/wkbparse-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5835df48b8c1e5765c8a8058c7bb65e9b1233365097151dc74f19178ef9abc12",
                "md5": "c040b98fdbb9cad14a910c4a77392a7b",
                "sha256": "778acc27ba9053d03bb907a2599cf974e1a2ad076300e5e34553ea02e68007dd"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c040b98fdbb9cad14a910c4a77392a7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 228741,
            "upload_time": "2023-08-04T10:24:55",
            "upload_time_iso_8601": "2023-08-04T10:24:55.236386Z",
            "url": "https://files.pythonhosted.org/packages/58/35/df48b8c1e5765c8a8058c7bb65e9b1233365097151dc74f19178ef9abc12/wkbparse-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46c6efe71e6feab3a695deb61dc2988c7313bf54b3fc827275587698c20d2d7d",
                "md5": "1bea60aa381f2aaa66b83e03548cf4b0",
                "sha256": "1c644b5782e4e5e186576b4359fc3a37c16cdbf0f5e345b1b752743e356f0a17"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1bea60aa381f2aaa66b83e03548cf4b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 296863,
            "upload_time": "2023-08-04T10:24:56",
            "upload_time_iso_8601": "2023-08-04T10:24:56.871184Z",
            "url": "https://files.pythonhosted.org/packages/46/c6/efe71e6feab3a695deb61dc2988c7313bf54b3fc827275587698c20d2d7d/wkbparse-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c98f78f168d2747f6e412da6dfc4d3e050ee3ac406e4ab74b741dd627460e79a",
                "md5": "3350f903474d3acbeceaa78e589f511f",
                "sha256": "4a05071869e59ef52f6e67777d1c7d8dfa078debae69d510fb38755beb22f0a9"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3350f903474d3acbeceaa78e589f511f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 213944,
            "upload_time": "2023-08-04T10:24:58",
            "upload_time_iso_8601": "2023-08-04T10:24:58.380633Z",
            "url": "https://files.pythonhosted.org/packages/c9/8f/78f168d2747f6e412da6dfc4d3e050ee3ac406e4ab74b741dd627460e79a/wkbparse-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b100fd7e83859bb01236fa0b0e3724221f85ab51e1b94669f71534bc3f0bf21",
                "md5": "c6e791c09a3d907a6c6bac3f48c37d46",
                "sha256": "45d3c87e21adeb6546bab9598463510abaf34b6129765c5241d772b16b5546c2"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c6e791c09a3d907a6c6bac3f48c37d46",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 222402,
            "upload_time": "2023-08-04T10:25:00",
            "upload_time_iso_8601": "2023-08-04T10:25:00.069905Z",
            "url": "https://files.pythonhosted.org/packages/5b/10/0fd7e83859bb01236fa0b0e3724221f85ab51e1b94669f71534bc3f0bf21/wkbparse-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e3a99724e59ef194e920a2d7c380da798ad253b6b2b1177241871e4bfce2b04",
                "md5": "692318e54223fd7bbeffba3c394cc77e",
                "sha256": "52b791963cbdd64d0236f418fb2b8931ec9b2811d858574faa575a6c8c95f659"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "692318e54223fd7bbeffba3c394cc77e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 134565,
            "upload_time": "2023-08-04T10:25:01",
            "upload_time_iso_8601": "2023-08-04T10:25:01.875664Z",
            "url": "https://files.pythonhosted.org/packages/4e/3a/99724e59ef194e920a2d7c380da798ad253b6b2b1177241871e4bfce2b04/wkbparse-0.1.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d0fc362bc3f088228155965b408723725bf7f0ead405f3e247dd640745a9b44",
                "md5": "00205956cbed36bb74ba7faf9d4d6982",
                "sha256": "8ec6a0aca6a6cdbda609bd40f90f993b8b9b96497a0e4612468ff084f11eb311"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00205956cbed36bb74ba7faf9d4d6982",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 144789,
            "upload_time": "2023-08-04T10:25:03",
            "upload_time_iso_8601": "2023-08-04T10:25:03.526738Z",
            "url": "https://files.pythonhosted.org/packages/4d/0f/c362bc3f088228155965b408723725bf7f0ead405f3e247dd640745a9b44/wkbparse-0.1.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe08e83f07231b087eab39e2dfc7fd7fd71a7f6b4a1e492a3c85e88e3468fa15",
                "md5": "ab4599d93b6ca3e43cd94330ea0b6bf3",
                "sha256": "feb5cdafe8a370c272455432696135e8c8c162286031124f79f7b60390939434"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab4599d93b6ca3e43cd94330ea0b6bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 203309,
            "upload_time": "2023-08-04T10:25:05",
            "upload_time_iso_8601": "2023-08-04T10:25:05.591464Z",
            "url": "https://files.pythonhosted.org/packages/fe/08/e83f07231b087eab39e2dfc7fd7fd71a7f6b4a1e492a3c85e88e3468fa15/wkbparse-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa1f80fb34e22bb321732de194a3087395f0d7827df532921066232256024f60",
                "md5": "0c882441b2bd675895c9e288df30cc9a",
                "sha256": "2e10dc89d500b3dea487836622e225eceb4bebd8040d19a268707d7471ddebc6"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c882441b2bd675895c9e288df30cc9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 206376,
            "upload_time": "2023-08-04T10:25:07",
            "upload_time_iso_8601": "2023-08-04T10:25:07.231770Z",
            "url": "https://files.pythonhosted.org/packages/fa/1f/80fb34e22bb321732de194a3087395f0d7827df532921066232256024f60/wkbparse-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17f6bf4ab4f158db4e0bbd234a23cebb9690109788703ade94d75122e5319606",
                "md5": "6d2e4e2e54648d266a2fe5d103590f9b",
                "sha256": "d1c4cca9db7bce49152c7cb75dc0358e617db42115613e450410c3546ba585d0"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6d2e4e2e54648d266a2fe5d103590f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 227952,
            "upload_time": "2023-08-04T10:25:08",
            "upload_time_iso_8601": "2023-08-04T10:25:08.915467Z",
            "url": "https://files.pythonhosted.org/packages/17/f6/bf4ab4f158db4e0bbd234a23cebb9690109788703ade94d75122e5319606/wkbparse-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01efd638eca53be5c4dad07e48026b6748cc41c03406df912c409082dedf682b",
                "md5": "b955243d7d27bf1e422d5845d4c27c67",
                "sha256": "c0a8910b4a4cfd9da9b5f376ae5751b99f4b3b3f84dab055768fe4e46b5e96ed"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b955243d7d27bf1e422d5845d4c27c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 289074,
            "upload_time": "2023-08-04T10:25:10",
            "upload_time_iso_8601": "2023-08-04T10:25:10.562094Z",
            "url": "https://files.pythonhosted.org/packages/01/ef/d638eca53be5c4dad07e48026b6748cc41c03406df912c409082dedf682b/wkbparse-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1032ecf129f9e6a98676154c8d9c2e70e056c86646f16c51debd156382d3fdef",
                "md5": "74092ae5a538b5d69672f8885cf82ccd",
                "sha256": "b9bbe1cca7c9e1455128e76141fbe520b82dae0684f2fe251d9fd2417f7b21fc"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74092ae5a538b5d69672f8885cf82ccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 213633,
            "upload_time": "2023-08-04T10:25:12",
            "upload_time_iso_8601": "2023-08-04T10:25:12.671291Z",
            "url": "https://files.pythonhosted.org/packages/10/32/ecf129f9e6a98676154c8d9c2e70e056c86646f16c51debd156382d3fdef/wkbparse-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15d1f410503a61a93e448020dc226a54aa8ca7ae8ac8f617189f092713b6d088",
                "md5": "acfef33be0b07e5fe71189817bd8edcf",
                "sha256": "28fe43d76c8e9a81ebf119915ecdb4cf71c7b444a1188c73b7df78507204f4ed"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "acfef33be0b07e5fe71189817bd8edcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 221864,
            "upload_time": "2023-08-04T10:25:14",
            "upload_time_iso_8601": "2023-08-04T10:25:14.493028Z",
            "url": "https://files.pythonhosted.org/packages/15/d1/f410503a61a93e448020dc226a54aa8ca7ae8ac8f617189f092713b6d088/wkbparse-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2237986b70598f411b7e937da8de6bc31837b7bca423fbdf7927ebb99f576a37",
                "md5": "575db88c26f05d70a3a29ef192ffe62c",
                "sha256": "0c2fe9397802095525e3d342b9d562285a625322b1f55f59f2c255b708336559"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "575db88c26f05d70a3a29ef192ffe62c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 203986,
            "upload_time": "2023-08-04T10:25:15",
            "upload_time_iso_8601": "2023-08-04T10:25:15.981699Z",
            "url": "https://files.pythonhosted.org/packages/22/37/986b70598f411b7e937da8de6bc31837b7bca423fbdf7927ebb99f576a37/wkbparse-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22cc1917e5ab280bba68a80e23835a94fde2870041ebd34e1ad76e72a4c23b8d",
                "md5": "3bac2a2880123bed37884dedde165944",
                "sha256": "ac1c987d74fc3a119f141e9d0c7ec430f4ba208f6bb966fcc35c6d9fa1b76b8f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3bac2a2880123bed37884dedde165944",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 206829,
            "upload_time": "2023-08-04T10:25:17",
            "upload_time_iso_8601": "2023-08-04T10:25:17.627543Z",
            "url": "https://files.pythonhosted.org/packages/22/cc/1917e5ab280bba68a80e23835a94fde2870041ebd34e1ad76e72a4c23b8d/wkbparse-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08a9a3dc7741b76fa55f0b827ce1c82be6cf007e74b5193f5cbf5fe4dd0bc240",
                "md5": "172678cb622a14bd0bb75f44f19875ee",
                "sha256": "c638ede50678bc1432ae049b8ddfeae600904ee6b1688c6d2f243ea942f43b7c"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "172678cb622a14bd0bb75f44f19875ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 228728,
            "upload_time": "2023-08-04T10:25:19",
            "upload_time_iso_8601": "2023-08-04T10:25:19.579949Z",
            "url": "https://files.pythonhosted.org/packages/08/a9/a3dc7741b76fa55f0b827ce1c82be6cf007e74b5193f5cbf5fe4dd0bc240/wkbparse-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d5bcb1447dfca1d13ae38f9474e2deece856cbe91839fe3ea7e3d9b02272e82",
                "md5": "d21f907c677d5305012176ce1a280962",
                "sha256": "7717bd788ec1057495d0d8cb84230c2245edc2b8de87995a8e43dae8d49012c5"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d21f907c677d5305012176ce1a280962",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 296851,
            "upload_time": "2023-08-04T10:25:21",
            "upload_time_iso_8601": "2023-08-04T10:25:21.243088Z",
            "url": "https://files.pythonhosted.org/packages/4d/5b/cb1447dfca1d13ae38f9474e2deece856cbe91839fe3ea7e3d9b02272e82/wkbparse-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "010467786648aa8c5d92ec877686ca0f1dcf8d4128a5679a503c4cb1caee9419",
                "md5": "22dade1af5eb341bc49315c066cd4083",
                "sha256": "390374780b03c439454152ba5a0262cdd8fc9f2a12690c643b03694ca25d4f96"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22dade1af5eb341bc49315c066cd4083",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 213922,
            "upload_time": "2023-08-04T10:25:23",
            "upload_time_iso_8601": "2023-08-04T10:25:23.156356Z",
            "url": "https://files.pythonhosted.org/packages/01/04/67786648aa8c5d92ec877686ca0f1dcf8d4128a5679a503c4cb1caee9419/wkbparse-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0199ee9f3d5c572a75aa8aba40c46816d7cfc529865d55ab622496a7f88185c4",
                "md5": "183f59950cc01a1cef220037530f6cd1",
                "sha256": "2f4aab215afd8eaa698d01782f8258ea84d3be948f860b555cb600dc1ffd6df7"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "183f59950cc01a1cef220037530f6cd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 222397,
            "upload_time": "2023-08-04T10:25:24",
            "upload_time_iso_8601": "2023-08-04T10:25:24.731753Z",
            "url": "https://files.pythonhosted.org/packages/01/99/ee9f3d5c572a75aa8aba40c46816d7cfc529865d55ab622496a7f88185c4/wkbparse-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0be23fcbc85ab34ed80ea9eb9e6f1ed067e59a6ea4a189675e1bc778668bc5f",
                "md5": "f000d764241223f272399458fc29110e",
                "sha256": "cc269a54aa047d053c2932c057677d7264b0a4c2138c1351555b19e0799b001e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f000d764241223f272399458fc29110e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 134757,
            "upload_time": "2023-08-04T10:25:26",
            "upload_time_iso_8601": "2023-08-04T10:25:26.249878Z",
            "url": "https://files.pythonhosted.org/packages/c0/be/23fcbc85ab34ed80ea9eb9e6f1ed067e59a6ea4a189675e1bc778668bc5f/wkbparse-0.1.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23cafa1b8f3d6fef4537b59d491e435d904648f7c2df47f6f7bba6976c1568bc",
                "md5": "236d75a1fb5456fa0f694e4a0f43a81d",
                "sha256": "66ab630c4a65c53265e5bafecc7cbb0db541edd7551ab1d13077aa9775e66c3a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "236d75a1fb5456fa0f694e4a0f43a81d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 144829,
            "upload_time": "2023-08-04T10:25:28",
            "upload_time_iso_8601": "2023-08-04T10:25:28.377487Z",
            "url": "https://files.pythonhosted.org/packages/23/ca/fa1b8f3d6fef4537b59d491e435d904648f7c2df47f6f7bba6976c1568bc/wkbparse-0.1.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8c16e93de13c8f513ae641cd0be06e907248c80d6816cc26f281d6729775d20",
                "md5": "c265a0c9c46ef9cbd9a1bb42b39bf770",
                "sha256": "a81f327acd03e15fedaf21e0417caafc7e60285eafe94eb1b26043b0e6dbbe7c"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c265a0c9c46ef9cbd9a1bb42b39bf770",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 203947,
            "upload_time": "2023-08-04T10:25:30",
            "upload_time_iso_8601": "2023-08-04T10:25:30.438842Z",
            "url": "https://files.pythonhosted.org/packages/e8/c1/6e93de13c8f513ae641cd0be06e907248c80d6816cc26f281d6729775d20/wkbparse-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed09895e6aa1cc1f20f8df315ee307c9c153974136c5fa166a4053a2978361b2",
                "md5": "e1f1add91580d2da0f74907136ca722a",
                "sha256": "29ad8643ed44b564b051be0976db0ad732badb36379c20447b4bb61db71a393e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e1f1add91580d2da0f74907136ca722a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 206879,
            "upload_time": "2023-08-04T10:25:32",
            "upload_time_iso_8601": "2023-08-04T10:25:32.033173Z",
            "url": "https://files.pythonhosted.org/packages/ed/09/895e6aa1cc1f20f8df315ee307c9c153974136c5fa166a4053a2978361b2/wkbparse-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3b29751372871b9b4270b9398f349220a222191f8782870e7de3057bb490eb8",
                "md5": "ce4e6fbae9e46c9252c7c88cc187376d",
                "sha256": "741f4384bf781e90ca19832662eec49e61733017fbbb43056368dfb4941a6981"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ce4e6fbae9e46c9252c7c88cc187376d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 228739,
            "upload_time": "2023-08-04T10:25:33",
            "upload_time_iso_8601": "2023-08-04T10:25:33.762915Z",
            "url": "https://files.pythonhosted.org/packages/f3/b2/9751372871b9b4270b9398f349220a222191f8782870e7de3057bb490eb8/wkbparse-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66c738894a76468e71942d38e78e8c41560573c1b7a7996eff193978fd02cb28",
                "md5": "e90ee9c6e8e1f59a8d6e30348c37eacd",
                "sha256": "2f75818bf9287146860497bdb1009d836365b332ab0a4f681be197e0023bfc86"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e90ee9c6e8e1f59a8d6e30348c37eacd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 296861,
            "upload_time": "2023-08-04T10:25:35",
            "upload_time_iso_8601": "2023-08-04T10:25:35.376978Z",
            "url": "https://files.pythonhosted.org/packages/66/c7/38894a76468e71942d38e78e8c41560573c1b7a7996eff193978fd02cb28/wkbparse-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f5b044d9812747a41e314631cc8f66d5217ce733e05ebe9f4f9acd3ac4e2cd5",
                "md5": "82bfc7d7294bf73d407c4b24f67a18fa",
                "sha256": "c5462d4e89473d3f47291ce1af12654cab7ab0fb09113890dc8fae4fc9b96e97"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82bfc7d7294bf73d407c4b24f67a18fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 213942,
            "upload_time": "2023-08-04T10:25:37",
            "upload_time_iso_8601": "2023-08-04T10:25:37.495585Z",
            "url": "https://files.pythonhosted.org/packages/8f/5b/044d9812747a41e314631cc8f66d5217ce733e05ebe9f4f9acd3ac4e2cd5/wkbparse-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec4c82ea89c0fcb76229fd1eb0d0e5900875a92bb0f0492a7f3a54d8dd6f999f",
                "md5": "0a0909d716dc04099997fe0c12e595f2",
                "sha256": "4568ed013de3ae441279c8e07880d7f2ffae94ecbd9281edbea789e3524d8637"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0a0909d716dc04099997fe0c12e595f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 222400,
            "upload_time": "2023-08-04T10:25:39",
            "upload_time_iso_8601": "2023-08-04T10:25:39.195240Z",
            "url": "https://files.pythonhosted.org/packages/ec/4c/82ea89c0fcb76229fd1eb0d0e5900875a92bb0f0492a7f3a54d8dd6f999f/wkbparse-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d6c8c0e25d7f1129f2553312814fc59f9342173d64dcae97dd7151f7f61fb4e",
                "md5": "c2dae92cceb4a848b089fb1ab39d712c",
                "sha256": "490e0e2056c4a3e9695c515cd0743fa250c21bc7c123501b6050019f4f08793f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c2dae92cceb4a848b089fb1ab39d712c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 134555,
            "upload_time": "2023-08-04T10:25:40",
            "upload_time_iso_8601": "2023-08-04T10:25:40.837001Z",
            "url": "https://files.pythonhosted.org/packages/3d/6c/8c0e25d7f1129f2553312814fc59f9342173d64dcae97dd7151f7f61fb4e/wkbparse-0.1.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "daa8ac378a1675a1b01b6ed95949d2d39360fce5a568e25cca97c09b8893731b",
                "md5": "3f44dfd097422372df22b5361ddf9dc9",
                "sha256": "be4263fa826f04297b720204fe5975d5999a04ddf3f5387b043d29719b5c60a6"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f44dfd097422372df22b5361ddf9dc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 144778,
            "upload_time": "2023-08-04T10:25:42",
            "upload_time_iso_8601": "2023-08-04T10:25:42.806036Z",
            "url": "https://files.pythonhosted.org/packages/da/a8/ac378a1675a1b01b6ed95949d2d39360fce5a568e25cca97c09b8893731b/wkbparse-0.1.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f391ed5efa03e236ffafbb4defe34ac857f71661bf6ba22ae100ba87f5a317d",
                "md5": "e601afa7d822e9fe35be35c9d5d84310",
                "sha256": "64aaf2fa9c60b23f505dfb08c26eef3c438754a3e498e482417cc639f1960bcf"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e601afa7d822e9fe35be35c9d5d84310",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 204375,
            "upload_time": "2023-08-04T10:25:44",
            "upload_time_iso_8601": "2023-08-04T10:25:44.766023Z",
            "url": "https://files.pythonhosted.org/packages/1f/39/1ed5efa03e236ffafbb4defe34ac857f71661bf6ba22ae100ba87f5a317d/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7a19b557b926ec1d80b3196a5c2ba6fe2a1086d446b50d0d416a466998a72db",
                "md5": "078243e452597778ced9ae6da93dfc15",
                "sha256": "c1c90006e396acaf716ca22a7d674af97e97b152cdf887a016d468eaf79b439a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "078243e452597778ced9ae6da93dfc15",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 207036,
            "upload_time": "2023-08-04T10:25:46",
            "upload_time_iso_8601": "2023-08-04T10:25:46.359768Z",
            "url": "https://files.pythonhosted.org/packages/b7/a1/9b557b926ec1d80b3196a5c2ba6fe2a1086d446b50d0d416a466998a72db/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55370ef01d1d22abb15ee2c9408cf1648f8da00423e5cfe1d3c0c59947534b5d",
                "md5": "9637a24e89143ac07c3252bcd7e1a132",
                "sha256": "2ab96bb13fa66808dae81196ea65f804099bb9ca760ca005cb9c509b3458aac9"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9637a24e89143ac07c3252bcd7e1a132",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 229019,
            "upload_time": "2023-08-04T10:25:48",
            "upload_time_iso_8601": "2023-08-04T10:25:48.064243Z",
            "url": "https://files.pythonhosted.org/packages/55/37/0ef01d1d22abb15ee2c9408cf1648f8da00423e5cfe1d3c0c59947534b5d/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e25b2f954dbcaa5a5c1a2246f86e5f970ddd4313290562dac09342820cb66f21",
                "md5": "e121858d61fb323d3ff41203e30c7d36",
                "sha256": "4e9a1e90653e36810300e7b27974d0957af1d639e0c480979801e7783b9c6b38"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e121858d61fb323d3ff41203e30c7d36",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 297839,
            "upload_time": "2023-08-04T10:25:49",
            "upload_time_iso_8601": "2023-08-04T10:25:49.841298Z",
            "url": "https://files.pythonhosted.org/packages/e2/5b/2f954dbcaa5a5c1a2246f86e5f970ddd4313290562dac09342820cb66f21/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22545ca1b93af27084b5cb5a8ca80495777b4f8907abc5e582101e794f491c30",
                "md5": "e0cb96bc5997f2200c3ff581b12ea45c",
                "sha256": "e886ba472ceb0b437e7f346a18fa6cdadc39330b86cae5666bdaf7e524b5ed15"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0cb96bc5997f2200c3ff581b12ea45c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 214174,
            "upload_time": "2023-08-04T10:25:51",
            "upload_time_iso_8601": "2023-08-04T10:25:51.639127Z",
            "url": "https://files.pythonhosted.org/packages/22/54/5ca1b93af27084b5cb5a8ca80495777b4f8907abc5e582101e794f491c30/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bda4ed1d0accd38fc56cef7cf37f159d1f4d1ce7384b66ae2e526b0eb7265e3",
                "md5": "71a54a5a3f1004fea8da69e510388852",
                "sha256": "1b921a7d3b4d7ae96ed35fd689c7c9475d183c0bf422f38c30ab7a8755a1e13a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "71a54a5a3f1004fea8da69e510388852",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 222596,
            "upload_time": "2023-08-04T10:25:53",
            "upload_time_iso_8601": "2023-08-04T10:25:53.386250Z",
            "url": "https://files.pythonhosted.org/packages/6b/da/4ed1d0accd38fc56cef7cf37f159d1f4d1ce7384b66ae2e526b0eb7265e3/wkbparse-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "501ea9cc4389fad5fb464232b5fcd1d51ef00ce661067ecf24655cc19904f783",
                "md5": "20e9a896a0860158d16640bc4506c4c7",
                "sha256": "b6bb30930e52ea94c9b7a9e56487cc36d31402340a85435bf120423b4cf75665"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20e9a896a0860158d16640bc4506c4c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 204363,
            "upload_time": "2023-08-04T10:25:55",
            "upload_time_iso_8601": "2023-08-04T10:25:55.108000Z",
            "url": "https://files.pythonhosted.org/packages/50/1e/a9cc4389fad5fb464232b5fcd1d51ef00ce661067ecf24655cc19904f783/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70bdc428143474c473a07543f8281c0f5b4509da80ecb95de484c6ce91bc30e0",
                "md5": "4151ecc3ad4e14546f1a2ab9a173356b",
                "sha256": "819aa8d42d68258a57e3350761419d1ea56b5213bbf5f63637f690a3a373e8b0"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4151ecc3ad4e14546f1a2ab9a173356b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 207016,
            "upload_time": "2023-08-04T10:25:57",
            "upload_time_iso_8601": "2023-08-04T10:25:57.132048Z",
            "url": "https://files.pythonhosted.org/packages/70/bd/c428143474c473a07543f8281c0f5b4509da80ecb95de484c6ce91bc30e0/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04a0a18731709c2d81e62fbca1ec108232b5356919efe107449a6844920340b0",
                "md5": "78a2510359b977865392f279f3040f30",
                "sha256": "41f4cd193781b6f20c76961723eeb6872a7af09b5bb5e4f29868da8220847834"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "78a2510359b977865392f279f3040f30",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 229027,
            "upload_time": "2023-08-04T10:25:59",
            "upload_time_iso_8601": "2023-08-04T10:25:59.217237Z",
            "url": "https://files.pythonhosted.org/packages/04/a0/a18731709c2d81e62fbca1ec108232b5356919efe107449a6844920340b0/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b6b5065438882a01a235cd90ca5fce968f5400f39d3407441f043ae8c5b72e7",
                "md5": "c2cadadbaebe7fffb14507c298e02239",
                "sha256": "a99ccdc9d1eca0ce305b89afb1b9115f1e1ef71230c597dd43367e1c8bbf3a7e"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c2cadadbaebe7fffb14507c298e02239",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 297775,
            "upload_time": "2023-08-04T10:26:01",
            "upload_time_iso_8601": "2023-08-04T10:26:01.258478Z",
            "url": "https://files.pythonhosted.org/packages/2b/6b/5065438882a01a235cd90ca5fce968f5400f39d3407441f043ae8c5b72e7/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d04ed93ee20d48c4c3ee8f53a66cfe558c397de90b8bf37268712ee4d915847",
                "md5": "f8b812544d641cca628353f730935cbd",
                "sha256": "32730ad3dd323f75a7ba852fe47a6fecdb9939a513fa4b679f21bde2cc818fe2"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8b812544d641cca628353f730935cbd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 214152,
            "upload_time": "2023-08-04T10:26:03",
            "upload_time_iso_8601": "2023-08-04T10:26:03.056403Z",
            "url": "https://files.pythonhosted.org/packages/3d/04/ed93ee20d48c4c3ee8f53a66cfe558c397de90b8bf37268712ee4d915847/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a72ca31b9832c7590b014f94aca9c5361c4acfd14c51d250810b3a0714b31dc1",
                "md5": "5c75392561a9cb5c1b504931bc3c9467",
                "sha256": "616e8065f9f269c8aab950f061c90f26c7a6cf00d575f44a3f5d3c7e4930900f"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5c75392561a9cb5c1b504931bc3c9467",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 222592,
            "upload_time": "2023-08-04T10:26:04",
            "upload_time_iso_8601": "2023-08-04T10:26:04.710552Z",
            "url": "https://files.pythonhosted.org/packages/a7/2c/a31b9832c7590b014f94aca9c5361c4acfd14c51d250810b3a0714b31dc1/wkbparse-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93c40f4873d35626164661c979b36cffba708b9a8a3780ebc0797bcbc4093946",
                "md5": "1304d0d139636d61d05678b6a3c57e11",
                "sha256": "7778738e962d108a9a333fdf6bc21d3677ed2b9ddd27d9b73f1f3fa049476564"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1304d0d139636d61d05678b6a3c57e11",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 204363,
            "upload_time": "2023-08-04T10:26:06",
            "upload_time_iso_8601": "2023-08-04T10:26:06.733007Z",
            "url": "https://files.pythonhosted.org/packages/93/c4/0f4873d35626164661c979b36cffba708b9a8a3780ebc0797bcbc4093946/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "808755fe8fd1f2cf212577a384b18aee3c710bb13334f9e4d040f4dfe5833b1a",
                "md5": "c554d2f6222faac0a69d7968dd70a885",
                "sha256": "027f93c8e7292714b83386102be0c1cbaff6d1542abd52727e5cdbf13989722d"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c554d2f6222faac0a69d7968dd70a885",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 207033,
            "upload_time": "2023-08-04T10:26:08",
            "upload_time_iso_8601": "2023-08-04T10:26:08.431140Z",
            "url": "https://files.pythonhosted.org/packages/80/87/55fe8fd1f2cf212577a384b18aee3c710bb13334f9e4d040f4dfe5833b1a/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab8f8fa2180e8a00aa23ee38eeed5d44c0120e05197cebe0bb6bcd78ff5cbbe9",
                "md5": "49d96bbaf320c93b8752e668755fd0bb",
                "sha256": "5fbbfb647a92241d55a5158c214cff2020618dd7b83da740e946d074b4f87539"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "49d96bbaf320c93b8752e668755fd0bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 229019,
            "upload_time": "2023-08-04T10:26:10",
            "upload_time_iso_8601": "2023-08-04T10:26:10.168681Z",
            "url": "https://files.pythonhosted.org/packages/ab/8f/8fa2180e8a00aa23ee38eeed5d44c0120e05197cebe0bb6bcd78ff5cbbe9/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e063a6630bc7e895ee7a94ba9656a5e5c79c8cd3654d1560a0b3b31fa15d05c3",
                "md5": "e14df3ee1228db1b1bf59b010410e3ed",
                "sha256": "ea0e5617f4e260708c75c5e2f5fe32a06862590b08606350c185c2318fbad06b"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e14df3ee1228db1b1bf59b010410e3ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 297858,
            "upload_time": "2023-08-04T10:26:12",
            "upload_time_iso_8601": "2023-08-04T10:26:12.215224Z",
            "url": "https://files.pythonhosted.org/packages/e0/63/a6630bc7e895ee7a94ba9656a5e5c79c8cd3654d1560a0b3b31fa15d05c3/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "577979f3a5b641c771d1812fc23038e8ae83de74a3955af1e1943960c6f9634b",
                "md5": "78537b6eef6adb5b9ae746e8e2b5f335",
                "sha256": "e908d6cd6ee4b1ed86e072e6cc94e4a874755ff09f5990d87300ad4b1e9129cf"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78537b6eef6adb5b9ae746e8e2b5f335",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 214168,
            "upload_time": "2023-08-04T10:26:14",
            "upload_time_iso_8601": "2023-08-04T10:26:14.505976Z",
            "url": "https://files.pythonhosted.org/packages/57/79/79f3a5b641c771d1812fc23038e8ae83de74a3955af1e1943960c6f9634b/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0de25f7abe0fa4d83c9341c0bd4c27853d6e87800b52c4a4705fd6df1f44284e",
                "md5": "a7afd41b005b44845f53edbaa050e714",
                "sha256": "75e0143d4ead7f24cc7d7c54ea9d54791c98129290e84f7d115e6e51a81e6d1a"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a7afd41b005b44845f53edbaa050e714",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 222591,
            "upload_time": "2023-08-04T10:26:16",
            "upload_time_iso_8601": "2023-08-04T10:26:16.314364Z",
            "url": "https://files.pythonhosted.org/packages/0d/e2/5f7abe0fa4d83c9341c0bd4c27853d6e87800b52c4a4705fd6df1f44284e/wkbparse-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a469be46cee7bca2f574363e21547b2801760aa44bef9dfff79157179f62495f",
                "md5": "3705d2876c414c900503e1d07761ab90",
                "sha256": "009d08a6f0a97d2d95eefbde43c8ad51f86edbe98c6b1439b533d653a9a025f8"
            },
            "downloads": -1,
            "filename": "wkbparse-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3705d2876c414c900503e1d07761ab90",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 50071,
            "upload_time": "2023-08-04T10:26:17",
            "upload_time_iso_8601": "2023-08-04T10:26:17.686205Z",
            "url": "https://files.pythonhosted.org/packages/a4/69/be46cee7bca2f574363e21547b2801760aa44bef9dfff79157179f62495f/wkbparse-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-04 10:26:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "arjuote",
    "github_project": "wkbparse",
    "github_not_found": true,
    "lcname": "wkbparse"
}
        
Elapsed time: 0.09749s