pypolyline


Namepypolyline JSON
Version 0.5.4 PyPI version JSON
download
home_pageNone
SummaryFast Google Polyline encoding and decoding using Rust FFI
upload_time2024-10-10 16:33:59
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
license# Blue Oak Model License Version 1.0.0 ## Purpose This license gives everyone as much permission to work with this software as possible, while protecting contributors from liability. ## Acceptance In order to receive this license, you must agree to its rules. The rules of this license are both obligations under that agreement and conditions to your license. You must not do anything with this software that triggers a rule that you cannot or will not follow. ## Copyright Each contributor licenses you to do everything with this software that would otherwise infringe that contributor's copyright in it. ## Notices You must ensure that everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license or a link to <https://blueoakcouncil.org/license/1.0.0>. ## Excuse If anyone notifies you in writing that you have not complied with [Notices](#notices), you can keep your license by taking all practical steps to comply within 30 days after the notice. If you do not do so, your license ends immediately. ## Patent Each contributor licenses you to do everything with this software that would otherwise infringe any patent claims they can license or become able to license. ## Reliability No contributor can revoke this license. ## No Liability ***As far as the law allows, this software comes as is, without any warranty or condition, and no contributor will be liable to anyone for any damages related to this software or this license, under any kind of legal claim.***
keywords geo polyline
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![example workflow](https://github.com/urschrei/pypolyline/actions/workflows/wheels.yml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/urschrei/pypolyline/badge.svg?branch=master)](https://coveralls.io/github/urschrei/pypolyline?branch=master) [![Downloads](https://pepy.tech/badge/pypolyline)](https://pepy.tech/project/pypolyline)[![DOI](https://zenodo.org/badge/63355673.svg)](https://zenodo.org/badge/latestdoi/63355673)

# Fast Google [Polyline](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) Encoding and Decoding

## Installation
`pip install pypolyline`  

### Supported Python Versions
- Python 3.9
- Python 3.10
- Python 3.11
- Python 3.12
- Python 3.13

### Supported Platforms
- Linux (`manylinux*`-compatible, x86_64 and aarch64)
- macOS (x86_64 and arm64)
- Windows 64-bit

## Usage
Coordinates must be in (`Longitude, Latitude`) order

```python
from pypolyline.cutil import encode_coordinates, decode_polyline

coords = [
            [52.64125, 23.70162],
            [52.64938, 23.70154],
            [52.64957, 23.68546],
            [52.64122, 23.68549],
            [52.64125, 23.70162]
         ]

# precision is 5 for Google Polyline, 6 for OSRM / Valhalla
polyline = encode_coordinates(coords, 5)
# polyline is 'ynh`IcftoCyq@Ne@ncBds@EEycB'
decoded_coords = decode_polyline(polyline, 5)
```

## Error Handling
Failure to encode coordinates, or to decode a supplied Polyline, will raise a `RuntimeError` containing information about the invalid input.


## How it Works
FFI and a [Rust binary](https://github.com/urschrei/polyline-ffi)

## Is It Fast
…Yes.  
You can verify this by installing the `polyline` package, then running [`benchmarks.py`](benchmarks.py), a calibrated benchmark using `cProfile`.  
On an M2 MBP, The [pure-Python](https://pypi.org/project/polyline/) test runs in ~2500 ms, the [Flexpolyline](https://pypi.org/project/flexpolyline/) benchmark runs in ~1500 ms and The Rust + Cython benchmark runs in around 80 ms (30 x and 17.5 x faster, respectively).

## License
[The Blue Oak Model Licence 1.0.0](LICENCE.md)

## Citing `Pypolyline`
If Pypolyline has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing it as follows (example in APA style, 7th edition):

> Hügel, S. (2021). Pypolyline (Version X.Y.Z) [Computer software]. https://doi.org/10.5281/zenodo.5774925

In Bibtex format:


    @software{Hugel_Pypolyline_2021,
    author = {Hügel, Stephan},
    doi = {10.5281/zenodo.5774925},
    license = {MIT},
    month = {12},
    title = {{Pypolyline}},
    url = {https://github.com/urschrei/simplification},
    version = {X.Y.Z},
    year = {2021}
    }

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pypolyline",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "Geo, Polyline",
    "author": null,
    "author_email": "Stephan H\u00fcgel <urschrei@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/8f/1e/03797242071475f072283e0e3231487aac1e1a55feecb1b4c90c2cc3e323/pypolyline-0.5.4.tar.gz",
    "platform": null,
    "description": "![example workflow](https://github.com/urschrei/pypolyline/actions/workflows/wheels.yml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/urschrei/pypolyline/badge.svg?branch=master)](https://coveralls.io/github/urschrei/pypolyline?branch=master) [![Downloads](https://pepy.tech/badge/pypolyline)](https://pepy.tech/project/pypolyline)[![DOI](https://zenodo.org/badge/63355673.svg)](https://zenodo.org/badge/latestdoi/63355673)\n\n# Fast Google [Polyline](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) Encoding and Decoding\n\n## Installation\n`pip install pypolyline`  \n\n### Supported Python Versions\n- Python 3.9\n- Python 3.10\n- Python 3.11\n- Python 3.12\n- Python 3.13\n\n### Supported Platforms\n- Linux (`manylinux*`-compatible, x86_64 and aarch64)\n- macOS (x86_64 and arm64)\n- Windows 64-bit\n\n## Usage\nCoordinates must be in (`Longitude, Latitude`) order\n\n```python\nfrom pypolyline.cutil import encode_coordinates, decode_polyline\n\ncoords = [\n            [52.64125, 23.70162],\n            [52.64938, 23.70154],\n            [52.64957, 23.68546],\n            [52.64122, 23.68549],\n            [52.64125, 23.70162]\n         ]\n\n# precision is 5 for Google Polyline, 6 for OSRM / Valhalla\npolyline = encode_coordinates(coords, 5)\n# polyline is 'ynh`IcftoCyq@Ne@ncBds@EEycB'\ndecoded_coords = decode_polyline(polyline, 5)\n```\n\n## Error Handling\nFailure to encode coordinates, or to decode a supplied Polyline, will raise a `RuntimeError` containing information about the invalid input.\n\n\n## How it Works\nFFI and a [Rust binary](https://github.com/urschrei/polyline-ffi)\n\n## Is It Fast\n\u2026Yes.  \nYou can verify this by installing the `polyline` package, then running [`benchmarks.py`](benchmarks.py), a calibrated benchmark using `cProfile`.  \nOn an M2 MBP, The [pure-Python](https://pypi.org/project/polyline/) test runs in ~2500 ms, the [Flexpolyline](https://pypi.org/project/flexpolyline/) benchmark runs in ~1500 ms and The Rust + Cython benchmark runs in around 80 ms (30 x and 17.5 x faster, respectively).\n\n## License\n[The Blue Oak Model Licence 1.0.0](LICENCE.md)\n\n## Citing `Pypolyline`\nIf Pypolyline has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing it as follows (example in APA style, 7th edition):\n\n> H\u00fcgel, S. (2021). Pypolyline (Version X.Y.Z) [Computer software]. https://doi.org/10.5281/zenodo.5774925\n\nIn Bibtex format:\n\n\n    @software{Hugel_Pypolyline_2021,\n    author = {H\u00fcgel, Stephan},\n    doi = {10.5281/zenodo.5774925},\n    license = {MIT},\n    month = {12},\n    title = {{Pypolyline}},\n    url = {https://github.com/urschrei/simplification},\n    version = {X.Y.Z},\n    year = {2021}\n    }\n",
    "bugtrack_url": null,
    "license": "# Blue Oak Model License  Version 1.0.0  ## Purpose  This license gives everyone as much permission to work with this software as possible, while protecting contributors from liability.  ## Acceptance  In order to receive this license, you must agree to its rules. The rules of this license are both obligations under that agreement and conditions to your license. You must not do anything with this software that triggers a rule that you cannot or will not follow.  ## Copyright  Each contributor licenses you to do everything with this software that would otherwise infringe that contributor's copyright in it.  ## Notices  You must ensure that everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license or a link to <https://blueoakcouncil.org/license/1.0.0>.  ## Excuse  If anyone notifies you in writing that you have not complied with [Notices](#notices), you can keep your license by taking all practical steps to comply within 30 days after the notice. If you do not do so, your license ends immediately.  ## Patent  Each contributor licenses you to do everything with this software that would otherwise infringe any patent claims they can license or become able to license.  ## Reliability  No contributor can revoke this license.  ## No Liability  ***As far as the law allows, this software comes as is, without any warranty or condition, and no contributor will be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** ",
    "summary": "Fast Google Polyline encoding and decoding using Rust FFI",
    "version": "0.5.4",
    "project_urls": {
        "Repository": "https://github.com/urschrei/pypolyline",
        "Tracker": "https://github.com/urschrei/pypolyline/issues"
    },
    "split_keywords": [
        "geo",
        " polyline"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "737040a25754f76e0b46e1981be03da8e196b154c188244c230b3e7e76d206ff",
                "md5": "dce66ad515e8f6a5e4d6c108242bea3d",
                "sha256": "0934bd63b08215ed64fa5c4a5c15a9975bda8239c175ef17eaed973a76dc484b"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dce66ad515e8f6a5e4d6c108242bea3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 242888,
            "upload_time": "2024-10-10T16:33:23",
            "upload_time_iso_8601": "2024-10-10T16:33:23.080910Z",
            "url": "https://files.pythonhosted.org/packages/73/70/40a25754f76e0b46e1981be03da8e196b154c188244c230b3e7e76d206ff/pypolyline-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67cd2b96d0a27c15120b630d02318c88d4743eee5f1072a907bbc66bb251ee51",
                "md5": "1eb6f439acca370e57afad33a6aebfc9",
                "sha256": "18d444d33416852e556f4d49f2e7e23d239141593434e860296aa16c09b2627f"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1eb6f439acca370e57afad33a6aebfc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 228517,
            "upload_time": "2024-10-10T16:33:24",
            "upload_time_iso_8601": "2024-10-10T16:33:24.373984Z",
            "url": "https://files.pythonhosted.org/packages/67/cd/2b96d0a27c15120b630d02318c88d4743eee5f1072a907bbc66bb251ee51/pypolyline-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce4862a6da69456acc406f230d5d0381cc03e872c0af26940153e71e99f4f4b5",
                "md5": "eb6a5e72ef0082e3b5e5f1799bee03a0",
                "sha256": "1523354ad18d80915d6d33f8f9e87a367a8b96071362042e91014494547695ba"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb6a5e72ef0082e3b5e5f1799bee03a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 608093,
            "upload_time": "2024-10-10T16:33:25",
            "upload_time_iso_8601": "2024-10-10T16:33:25.947985Z",
            "url": "https://files.pythonhosted.org/packages/ce/48/62a6da69456acc406f230d5d0381cc03e872c0af26940153e71e99f4f4b5/pypolyline-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e59826aaa6468b6cf908fe6f5019cd7bbaacae0aeb37116dccb51638232c4c2",
                "md5": "c6feb889c2099d33b826765ea95bb6c7",
                "sha256": "87b9c37a343d24ca84dc6132c901e502466f0c93138a8adaa70d453453d89ee6"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6feb889c2099d33b826765ea95bb6c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 622860,
            "upload_time": "2024-10-10T16:33:27",
            "upload_time_iso_8601": "2024-10-10T16:33:27.346434Z",
            "url": "https://files.pythonhosted.org/packages/0e/59/826aaa6468b6cf908fe6f5019cd7bbaacae0aeb37116dccb51638232c4c2/pypolyline-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "453c8f975e3b1cc26148201d6078fb512669479ab17cd86c8bb437a765e8913b",
                "md5": "47f16e019381bbd7031cd659b9113866",
                "sha256": "7be332549de88d4fa6930fd910276236254ae2f13519e502a2d3dbd458334e30"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47f16e019381bbd7031cd659b9113866",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 152555,
            "upload_time": "2024-10-10T16:33:28",
            "upload_time_iso_8601": "2024-10-10T16:33:28.867328Z",
            "url": "https://files.pythonhosted.org/packages/45/3c/8f975e3b1cc26148201d6078fb512669479ab17cd86c8bb437a765e8913b/pypolyline-0.5.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4895f8068af81bf40f9a9ff91c1e6ca7c3553ccc9b87d93be55067469750285",
                "md5": "3a3d789eae535319549e8b58537911ae",
                "sha256": "63496444868258a58bfee4a8a515108805f04967ca239d5293701e2c47cc8b79"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a3d789eae535319549e8b58537911ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 242861,
            "upload_time": "2024-10-10T16:33:30",
            "upload_time_iso_8601": "2024-10-10T16:33:30.413389Z",
            "url": "https://files.pythonhosted.org/packages/b4/89/5f8068af81bf40f9a9ff91c1e6ca7c3553ccc9b87d93be55067469750285/pypolyline-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2d6234209f90ce426f3c3183e345a1f4ad0733e95878379b91ccbe3685369c3",
                "md5": "4db68e0b2224fcae0c13160dc138ffe2",
                "sha256": "77c017b0d167dc1cb78044c002b208367bd8778b07e9362c3a26fa9487a8ff0e"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4db68e0b2224fcae0c13160dc138ffe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 228486,
            "upload_time": "2024-10-10T16:33:32",
            "upload_time_iso_8601": "2024-10-10T16:33:32.109484Z",
            "url": "https://files.pythonhosted.org/packages/a2/d6/234209f90ce426f3c3183e345a1f4ad0733e95878379b91ccbe3685369c3/pypolyline-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5fe1cd872685d4ac6a1a0479e714e321514b5858529576ced75da99d6da716c",
                "md5": "c93cc0c59453f92f28edf3a09b4a4b60",
                "sha256": "c580a2ed2cc589b1b72e8df88d7149262d37760ec18774d1789c310a18872dad"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c93cc0c59453f92f28edf3a09b4a4b60",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 650658,
            "upload_time": "2024-10-10T16:33:33",
            "upload_time_iso_8601": "2024-10-10T16:33:33.710283Z",
            "url": "https://files.pythonhosted.org/packages/e5/fe/1cd872685d4ac6a1a0479e714e321514b5858529576ced75da99d6da716c/pypolyline-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b478bc8bcd6b39f0e566b3127ac7e629b3426fb1b778bab6333d1f3867a95219",
                "md5": "21760130c5b11c46fd642d802730c271",
                "sha256": "a5f7760bebfaeb61e7b2e43bc008952140a72780e7bfacbc3644e981fbd6ca49"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21760130c5b11c46fd642d802730c271",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 665820,
            "upload_time": "2024-10-10T16:33:35",
            "upload_time_iso_8601": "2024-10-10T16:33:35.692959Z",
            "url": "https://files.pythonhosted.org/packages/b4/78/bc8bcd6b39f0e566b3127ac7e629b3426fb1b778bab6333d1f3867a95219/pypolyline-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66e1cf0ab4c707d9d74f45a8bc6921bbd16b401c5849247a37ea2d0e72553593",
                "md5": "3e782288cb56311c9ba14d3f8889cb32",
                "sha256": "90754fab70549f609c062e07c191398d267550191df850751487177b0d59eef6"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3e782288cb56311c9ba14d3f8889cb32",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 152735,
            "upload_time": "2024-10-10T16:33:36",
            "upload_time_iso_8601": "2024-10-10T16:33:36.845171Z",
            "url": "https://files.pythonhosted.org/packages/66/e1/cf0ab4c707d9d74f45a8bc6921bbd16b401c5849247a37ea2d0e72553593/pypolyline-0.5.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81ff56ed06b294ccf58e1c9dd0c943ce9e48f9213fa1dc7bf041c2b582cbe78b",
                "md5": "fcd4b9b845d11a28d5bdd2b082f9e801",
                "sha256": "a30edb6d914074a5c13fe340808c908fdaf2e22f02c134a132e9c4bab5f34c4f"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcd4b9b845d11a28d5bdd2b082f9e801",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 243218,
            "upload_time": "2024-10-10T16:33:37",
            "upload_time_iso_8601": "2024-10-10T16:33:37.973858Z",
            "url": "https://files.pythonhosted.org/packages/81/ff/56ed06b294ccf58e1c9dd0c943ce9e48f9213fa1dc7bf041c2b582cbe78b/pypolyline-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dfe124058971b83c181d31235cf03bd40c0c76fb36c1785d333d0037d225298",
                "md5": "dbb50af5048edd5811dcdaf1142eeac3",
                "sha256": "61ee08f15072e20900bf2bd14c78ee8d89927c3ac32197d7b533df315067837b"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbb50af5048edd5811dcdaf1142eeac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 229516,
            "upload_time": "2024-10-10T16:33:39",
            "upload_time_iso_8601": "2024-10-10T16:33:39.941330Z",
            "url": "https://files.pythonhosted.org/packages/8d/fe/124058971b83c181d31235cf03bd40c0c76fb36c1785d333d0037d225298/pypolyline-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e30c56abe07d94bf81a26bf62ac0dd26cabe22d0a940d5e00fe416f5323addd0",
                "md5": "389d57abc980260654df45229409d1d6",
                "sha256": "bdf8801faea89fd8aac4ff57666b18a9becc37e54a94afa534268583bdb261d9"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "389d57abc980260654df45229409d1d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 635970,
            "upload_time": "2024-10-10T16:33:41",
            "upload_time_iso_8601": "2024-10-10T16:33:41.490126Z",
            "url": "https://files.pythonhosted.org/packages/e3/0c/56abe07d94bf81a26bf62ac0dd26cabe22d0a940d5e00fe416f5323addd0/pypolyline-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b411af23cf9c0f2f46adc817f9b26ca75e7268d570492a07cad922346b3b7989",
                "md5": "0fc3b8ffb9f653f3c0a47f0854a3461f",
                "sha256": "dd083a36c775d479ccc0e9e9d9c6b22f1eb78017b17687e5da716d4486491360"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fc3b8ffb9f653f3c0a47f0854a3461f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 652738,
            "upload_time": "2024-10-10T16:33:43",
            "upload_time_iso_8601": "2024-10-10T16:33:43.249444Z",
            "url": "https://files.pythonhosted.org/packages/b4/11/af23cf9c0f2f46adc817f9b26ca75e7268d570492a07cad922346b3b7989/pypolyline-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a27e384617fc508179dd23adca70b981d49ad7bafa210d68a2f13527f4d5ad5",
                "md5": "5a7e80116ab7a31a8c1f67895996424e",
                "sha256": "650b72f12ac6970af8d1eacbb2bdd073a56d243845ea4d33d67555f678c8efe5"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5a7e80116ab7a31a8c1f67895996424e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 153002,
            "upload_time": "2024-10-10T16:33:44",
            "upload_time_iso_8601": "2024-10-10T16:33:44.305433Z",
            "url": "https://files.pythonhosted.org/packages/9a/27/e384617fc508179dd23adca70b981d49ad7bafa210d68a2f13527f4d5ad5/pypolyline-0.5.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "722b726d30077585003c6e3ea3e80f1fec59b3a1e857915c0ad55fdefbff866e",
                "md5": "055d301d363c3a45f3a841d418bef33e",
                "sha256": "dcb4131046532cc5ed788535c8c78ee0e2c3d98ce64f0a430ef7a4acdd2c7ec7"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "055d301d363c3a45f3a841d418bef33e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 242144,
            "upload_time": "2024-10-10T16:33:45",
            "upload_time_iso_8601": "2024-10-10T16:33:45.463298Z",
            "url": "https://files.pythonhosted.org/packages/72/2b/726d30077585003c6e3ea3e80f1fec59b3a1e857915c0ad55fdefbff866e/pypolyline-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c1f7b8e2c2806f17dafde43b382e6e38c6b93e7c1adf59844784f037223fc50",
                "md5": "a2b609ffed55fd66c21334fc8fe5b56c",
                "sha256": "916aad4691b18d64691ba51bf74669faf58fa61f6205962d3e1c805f0cb5989f"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a2b609ffed55fd66c21334fc8fe5b56c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 228427,
            "upload_time": "2024-10-10T16:33:46",
            "upload_time_iso_8601": "2024-10-10T16:33:46.769393Z",
            "url": "https://files.pythonhosted.org/packages/4c/1f/7b8e2c2806f17dafde43b382e6e38c6b93e7c1adf59844784f037223fc50/pypolyline-0.5.4-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e122d71a5336f1bb84687c96830d4be9f4fbe09535f09a905d8d16396cd7b14a",
                "md5": "96fad963e7f5eb992134774aad3d4a11",
                "sha256": "85381427927d046d711df29b16f112d78b1fde7f6ac4831d449700211bf9b9bd"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96fad963e7f5eb992134774aad3d4a11",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 631665,
            "upload_time": "2024-10-10T16:33:47",
            "upload_time_iso_8601": "2024-10-10T16:33:47.948107Z",
            "url": "https://files.pythonhosted.org/packages/e1/22/d71a5336f1bb84687c96830d4be9f4fbe09535f09a905d8d16396cd7b14a/pypolyline-0.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1b29ea0f4b34397f0b0b203e6d0eabb7d3ad90175e858c7019d457a89b97f44",
                "md5": "421cfd2b77cb49e3e2b7e2d072094f08",
                "sha256": "4518cca28ce4e84a545136ad0fced53b365fe0f9fd204a904333de620f09f8bc"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "421cfd2b77cb49e3e2b7e2d072094f08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 649945,
            "upload_time": "2024-10-10T16:33:49",
            "upload_time_iso_8601": "2024-10-10T16:33:49.182288Z",
            "url": "https://files.pythonhosted.org/packages/f1/b2/9ea0f4b34397f0b0b203e6d0eabb7d3ad90175e858c7019d457a89b97f44/pypolyline-0.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc308bc1b7083889b58477de977ce68f52c803f19e62be0aeebd5a2c8a1d80a6",
                "md5": "4e9911f2fdf6d7e41eda4e9c8bf3e75b",
                "sha256": "c1eab59240beefb1971933650966900eb50e540c960f50148e2e7ec8cedf5dd8"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e9911f2fdf6d7e41eda4e9c8bf3e75b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 152766,
            "upload_time": "2024-10-10T16:33:50",
            "upload_time_iso_8601": "2024-10-10T16:33:50.612821Z",
            "url": "https://files.pythonhosted.org/packages/cc/30/8bc1b7083889b58477de977ce68f52c803f19e62be0aeebd5a2c8a1d80a6/pypolyline-0.5.4-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d848a446aa94561c1e3681c59824913f828612d26c0368abd721cd96e3c16e9a",
                "md5": "b12d053d25e0d89b51c7e063a079d9ad",
                "sha256": "28288ff64eb0f7e3f4d7ac5559500ca1af89da289de156d8ccb1e8290ede606e"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b12d053d25e0d89b51c7e063a079d9ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 243479,
            "upload_time": "2024-10-10T16:33:52",
            "upload_time_iso_8601": "2024-10-10T16:33:52.411340Z",
            "url": "https://files.pythonhosted.org/packages/d8/48/a446aa94561c1e3681c59824913f828612d26c0368abd721cd96e3c16e9a/pypolyline-0.5.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b02bdd975e7eda8782d3872d58a1fffd2b9fe4dad900de8c929c54255f059a67",
                "md5": "408dbc159b9dfb5a14973bdde79dea24",
                "sha256": "a3cc7848007833a33f89b3fdafbdc66b81d0f8ee8981e906b26f22ba3407e417"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "408dbc159b9dfb5a14973bdde79dea24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 229096,
            "upload_time": "2024-10-10T16:33:53",
            "upload_time_iso_8601": "2024-10-10T16:33:53.464210Z",
            "url": "https://files.pythonhosted.org/packages/b0/2b/dd975e7eda8782d3872d58a1fffd2b9fe4dad900de8c929c54255f059a67/pypolyline-0.5.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "874370d666855dff4e31e9e692328662dcf4fd1b9442c30c865879c5dd5d5890",
                "md5": "dc5e1a4d5c243e71f46df569346e8ce9",
                "sha256": "d9c8106f6703616dd50d3560fe5e4a79b2a11db896fff950092a7c7255c64bcc"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc5e1a4d5c243e71f46df569346e8ce9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 610970,
            "upload_time": "2024-10-10T16:33:54",
            "upload_time_iso_8601": "2024-10-10T16:33:54.774482Z",
            "url": "https://files.pythonhosted.org/packages/87/43/70d666855dff4e31e9e692328662dcf4fd1b9442c30c865879c5dd5d5890/pypolyline-0.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f691e334102c07de274b03d24b7a63ce7efc8cc4384ebe62bf7a2e9112533a06",
                "md5": "b63c7b1e3f7b39ce46a4a44f050aa1c5",
                "sha256": "fa1284c886b45339bf107e8c7f38799421bd0033921e520c194c319d5ff96080"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b63c7b1e3f7b39ce46a4a44f050aa1c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 625576,
            "upload_time": "2024-10-10T16:33:56",
            "upload_time_iso_8601": "2024-10-10T16:33:56.546869Z",
            "url": "https://files.pythonhosted.org/packages/f6/91/e334102c07de274b03d24b7a63ce7efc8cc4384ebe62bf7a2e9112533a06/pypolyline-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11d750a5a85d074fd5b830b8de8a4ba9efd918b419b5217535d054a14fb7edb0",
                "md5": "a2cf9e280d3d71b242388d80ea658cb7",
                "sha256": "196057db9b7d34ba968fd6305134b24db693b9f043707ae4d47841301167a3a1"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2cf9e280d3d71b242388d80ea658cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 153047,
            "upload_time": "2024-10-10T16:33:58",
            "upload_time_iso_8601": "2024-10-10T16:33:58.081484Z",
            "url": "https://files.pythonhosted.org/packages/11/d7/50a5a85d074fd5b830b8de8a4ba9efd918b419b5217535d054a14fb7edb0/pypolyline-0.5.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f1e03797242071475f072283e0e3231487aac1e1a55feecb1b4c90c2cc3e323",
                "md5": "07cee023edeb1e3e5d8e1733905fb1f0",
                "sha256": "5c9e1754f4df30f11c6307d8ff69c8487648535c396448e6b99ed2e8b3f7020c"
            },
            "downloads": -1,
            "filename": "pypolyline-0.5.4.tar.gz",
            "has_sig": false,
            "md5_digest": "07cee023edeb1e3e5d8e1733905fb1f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 19794,
            "upload_time": "2024-10-10T16:33:59",
            "upload_time_iso_8601": "2024-10-10T16:33:59.041113Z",
            "url": "https://files.pythonhosted.org/packages/8f/1e/03797242071475f072283e0e3231487aac1e1a55feecb1b4c90c2cc3e323/pypolyline-0.5.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-10 16:33:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "urschrei",
    "github_project": "pypolyline",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pypolyline"
}
        
Elapsed time: 1.01122s