shapelysmooth


Nameshapelysmooth JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryA polyline smoothing package for shapely.
upload_time2024-04-11 15:37:41
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseUnlicense
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version shields.io](https://img.shields.io/pypi/v/shapelysmooth.svg)](https://pypi.python.org/pypi/shapelysmooth/)

<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/main.png?raw=true" width="519" height="294" />
</p>

`shapelysmooth` is a polyline smoothing package for Python - mainly intended for use on shapely LineStrings and Polygons.
  * [Requirements](#requirements)
  * [Installation](#installation)
  * [Methods](#methods)
    + [Taubin Smoothing - `taubin_smooth`](#taubin)
    + [Chaikin Interpolation - `chaikin_smooth`](#chaikin)
    + [Catmull-Rom Spline Interpolation - `catmull_rom_smooth`](#catmullrom)
  * [Smoothing Collections of Geometries](#smoothing-collections-of-geometries)
  * [Smoothing Geometries stored in Numpy Arrays](#smoothing-geometries-stored-in-numpy-arrays)

## Requirements

This package requires
- Python >=3.6
- shapely

## Installation
Build from source, or

    pip install shapelysmooth

## Methods
Currently, three smoothing methods are provided, suited to different use cases.

<a id="taubin"></a>
### Taubin Smoothing - `taubin_smooth`
---
    >>> from shapelysmooth import taubin_smooth
    >>> smoothed_geometry = taubin_smooth(geometry, factor, mu, steps)
Taubin polyline smoothing.

**Parameters**

<code><b>geometry</b> : LineString | Polygon | list</code>
>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.

<code><b>factor</b> : float</code>
>How far each node is moved toward the average position of its neighbours during every second iteration. $0 <$ `factor` $< 1$. Default value: $\mathbf{0.5}$.

<code><b>mu</b> : float</code>
>How far each node is moved opposite the direction of the average position of its neighbours during every second iteration. $0 <$ `-mu` $< 1$. Default value: $\mathbf{-0.5}$.

<code><b>steps</b> : int</code>
>Number of smoothing steps. Default value: $\mathbf{5}$.

**Returns**

<code><b>output</b> : LineString | Polygon | List</code>
> The smoothed geometry.
---
The Laplacian smoothing algorithm defines for each interior node in a polyline consisting of nodes $(p_0, p_1,..., p_n)$ the Laplacian, $L$, of node $p_i$ as
$$L(p_i)=\frac{1}{2}p_{i+1}+\frac{1}{2}p_{i-1}-p_i.$$
For a given factor $\lambda$, node $p_i$ is at each iteration redefined as:
$$p_i\leftarrow p_i+\lambda L(p_i).$$
Geometrically this corresponds to moving $p_i$ a fraction $\lambda$ of the distance toward the average of its neighbouring nodes, in the direction of that average. However, this will cause cause shrinkage, i.e. closed polylines will eventually collapse to a point. Taubin smoothing prevents this by, at every second iteration, instead redefining each node $p_i$ as
$$p_i\leftarrow p_i+\mu L(p_i),$$
where $0<-\mu<1$. This corresponds to moving $p_i$ a fraction $-\mu$ of the distance toward the average of it's neighbouring nodes, but in the opposite direction to that of the average. One step of Taubin smoothing therefore consists of two iterations of Laplacian smoothing, with different factors - one positive one negative.

See
>[Gabriel Taubin. 1995. Curve and Surface Smoothing Without Shrinkage. IEEE International Conference on Computer Vision. 852-857.  ](https://graphics.stanford.edu/courses/cs468-01-fall/Papers/taubin-smoothing.pdf)

The implementation also supports closed polylines and polygons (with or without holes).
<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/laplace1.png?raw=true" width="500" height="239" />
</p>

<a id="chaikin"></a>
### Chaikin Interpolation - `chaikin_smooth`
---
    >>> from shapelysmooth import chaikin_smooth
    >>> smoothed_geometry = chaikin_smooth(geometry, iters, keep_ends)
Polyline smoothing based on Chaikin's Corner Cutting algorithm.

**Parameters**

<code><b>geometry</b> : LineString | Polygon | list</code>
>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.

<code><b>iters</b> : int</code>
>Number of iterations. Default value: $\mathbf{5}$.

<code><b>keep_ends</b> : bool</code>
>Preserve the original start and end nodes of the polyline. Not applicable to closed polylines and polygons. (The original algorithm results in a contraction of the start and end nodes). Default value: **`True`**.

**Returns**

<code><b>output</b> : LineString | Polygon | List</code>
> The smoothed geometry.
---
Chaikin's Corner Cutting algorithm smooths a polyline by iterative refinement of the nodes of the polyline. At each iteration, every node is replaced by two new nodes: one a quarter of the way to the next node, and one quarter of the way to the previous node.

Note that the algorithm (roughly) doubles the amount of nodes at each iteration, therefore care should be taken when selecting the number of iterations.

Instead of the original iterative algorithm by Chaikin, this implementation makes use of the equivalent multi-step algorithm introduced by Wu et al. See
>[Ling Wu, Jun-Hai Yong, You-Wei Zhang, and Li Zhang. 2004. Multi-step Subdivision Algorithm for Chaikin Curves. In Proceedings of the First international conference on Computational and Information Science (CIS'04). Springer-Verlag, Berlin, Heidelberg. 1232–1238.](https://sci-hub.st/10.1007/978-3-540-30497-5_188)

By default, the algorithm will not contract the endpoints of an open polyline. Set the `keep_ends` parameter if this behaviour is unwanted.

<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/chaikin1.png?raw=true" width="500" height="239" />
</p>

The implementation also supports closed polylines and polygons (with or without holes).

<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/chaikin2.png?raw=true" width="240" height="239" />
</p>

<a id="catmullrom"></a>
### Catmull-Rom Spline Interpolation - `catmull_rom_smooth`
---
    >>> from shapelysmooth import catmull_rom_smooth
    >>> smoothed_geometry = catmull_rom_smooth(geometry, alpha, subdivs)
Polyline smoothing using Catmull-Rom splines.

**Parameters**

<code><b>geometry</b> : LineString | Polygon | list</code>
>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.

<code><b>alpha</b> : float</code>
> Tension parameter. $0 \leq$ `alpha` $\leq 1$. For uniform Catmull-Rom splines, `alpha`  $= 0$. For centripetal Catmull-Rom splines, `alpha`  $= 0.5$. For chordal Catmull-Rom splines, `alpha`  $= 1.0$. Default value: $\mathbf{0.5}$.

<code><b>subdivs</b> : int</code>
> Number of subdivisions of each polyline segment. Default value: $\mathbf{10}$.

**Returns**

<code><b>output</b> : LineString | Polygon | List</code>
> The smoothed geometry.
---
Catmull-Rom splines are a class of cubic splines which can be efficiently calculated, and have the property that they pass through each interpolation node. The splines are piecewise-defined, but have $C^1$ continuity throughout.

For more detail see
>[Edwin Catmull, Raphael Rom. 1974. A Class of Local Interpolating Splines. Computer Aided Geometric Design. Academic Press. 317-326.](https://sci-hub.hkvisa.net/10.1016/b978-0-12-079050-0.50020-5)

This implementation makes use of the algorithm proposed by Barry and Goldman, see
>[Philip Barry and Ronald Goldman. 1988. Recursive evaluation algorithm for a class of Catmull-Rom splines. ACM Siggraph Computer Graphics. 22. 199-204.](https://www.researchgate.net/profile/Ronald-Goldman/publication/220720141_Recursive_evaluation_algorithm_for_a_class_of_Catmull-Rom_splines/links/559d5d3d08ae76bed0bb3523/Recursive-evaluation-algorithm-for-a-class-of-Catmull-Rom-splines.pdf)

There are three types of Catmull-Rom splines: uniform, centripetal and chordal, which are determined by tension parameter, $\alpha$, values of $0$, $0.5$ and $1$, respectively. Note that uniform Catmull-Rom splines may contain spurious self-intersections.
<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/catmullrom1.png?raw=true" width="500" height="239" />
</p>
The implementation also supports closed polylines and polygons (with or without holes).
<p align="center">
  <img src="https://github.com/philipschall/shapelysmooth/blob/main/images/catmullrom2.png?raw=true" width="240" height="239" />
</p>

## Smoothing Collections of Geometries
Objects of type `shapely.geometry.MultiLineString` and `shapely.geometry.MultiPolygon` can be smoothed by making use of the `geoms` property provided by these classes.

    >>> from shapely.geometry import MultiPolygon
    >>> from shapelysmooth import chaikin_smooth
    >>> polys = MultiPolygon(...)
    >>> smoothed_polys = MultiPolygon([chaikin_smooth(poly) for poly in polys.geoms])

## Smoothing Geometries stored in Numpy Arrays
Given a `numpy.array` of shape $(n, 2)$ (thus containing $n$ 2-dimensional coordinates or nodes), it can be smoothed as follows.
    
    >>> import numpy as np
    >>> from shapelysmooth import chaikin_smooth
    >>> array = np.array(...)
    >>> array_smoothed = np.array(chaikin_smooth(list(map(tuple, array))))

Direct support for Numpy arrays is being worked on for a future version.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "shapelysmooth",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Philip Schall <philip.schall@live.com>",
    "download_url": null,
    "platform": "any",
    "description": "[![PyPI version shields.io](https://img.shields.io/pypi/v/shapelysmooth.svg)](https://pypi.python.org/pypi/shapelysmooth/)\n\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/main.png?raw=true\" width=\"519\" height=\"294\" />\n</p>\n\n`shapelysmooth` is a polyline smoothing package for Python - mainly intended for use on shapely LineStrings and Polygons.\n  * [Requirements](#requirements)\n  * [Installation](#installation)\n  * [Methods](#methods)\n    + [Taubin Smoothing - `taubin_smooth`](#taubin)\n    + [Chaikin Interpolation - `chaikin_smooth`](#chaikin)\n    + [Catmull-Rom Spline Interpolation - `catmull_rom_smooth`](#catmullrom)\n  * [Smoothing Collections of Geometries](#smoothing-collections-of-geometries)\n  * [Smoothing Geometries stored in Numpy Arrays](#smoothing-geometries-stored-in-numpy-arrays)\n\n## Requirements\n\nThis package requires\n- Python >=3.6\n- shapely\n\n## Installation\nBuild from source, or\n\n    pip install shapelysmooth\n\n## Methods\nCurrently, three smoothing methods are provided, suited to different use cases.\n\n<a id=\"taubin\"></a>\n### Taubin Smoothing - `taubin_smooth`\n---\n    >>> from shapelysmooth import taubin_smooth\n    >>> smoothed_geometry = taubin_smooth(geometry, factor, mu, steps)\nTaubin polyline smoothing.\n\n**Parameters**\n\n<code><b>geometry</b> : LineString | Polygon | list</code>\n>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.\n\n<code><b>factor</b> : float</code>\n>How far each node is moved toward the average position of its neighbours during every second iteration. $0 <$ `factor` $< 1$. Default value: $\\mathbf{0.5}$.\n\n<code><b>mu</b> : float</code>\n>How far each node is moved opposite the direction of the average position of its neighbours during every second iteration. $0 <$ `-mu` $< 1$. Default value: $\\mathbf{-0.5}$.\n\n<code><b>steps</b> : int</code>\n>Number of smoothing steps. Default value: $\\mathbf{5}$.\n\n**Returns**\n\n<code><b>output</b> : LineString | Polygon | List</code>\n> The smoothed geometry.\n---\nThe Laplacian smoothing algorithm defines for each interior node in a polyline consisting of nodes $(p_0, p_1,..., p_n)$ the Laplacian, $L$, of node $p_i$ as\n$$L(p_i)=\\frac{1}{2}p_{i+1}+\\frac{1}{2}p_{i-1}-p_i.$$\nFor a given factor $\\lambda$, node $p_i$ is at each iteration redefined as:\n$$p_i\\leftarrow p_i+\\lambda L(p_i).$$\nGeometrically this corresponds to moving $p_i$ a fraction $\\lambda$ of the distance toward the average of its neighbouring nodes, in the direction of that average. However, this will cause cause shrinkage, i.e. closed polylines will eventually collapse to a point. Taubin smoothing prevents this by, at every second iteration, instead redefining each node $p_i$ as\n$$p_i\\leftarrow p_i+\\mu L(p_i),$$\nwhere $0<-\\mu<1$. This corresponds to moving $p_i$ a fraction $-\\mu$ of the distance toward the average of it's neighbouring nodes, but in the opposite direction to that of the average. One step of Taubin smoothing therefore consists of two iterations of Laplacian smoothing, with different factors - one positive one negative.\n\nSee\n>[Gabriel Taubin. 1995. Curve and Surface Smoothing Without Shrinkage. IEEE International Conference on Computer Vision. 852-857.  ](https://graphics.stanford.edu/courses/cs468-01-fall/Papers/taubin-smoothing.pdf)\n\nThe implementation also supports closed polylines and polygons (with or without holes).\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/laplace1.png?raw=true\" width=\"500\" height=\"239\" />\n</p>\n\n<a id=\"chaikin\"></a>\n### Chaikin Interpolation - `chaikin_smooth`\n---\n    >>> from shapelysmooth import chaikin_smooth\n    >>> smoothed_geometry = chaikin_smooth(geometry, iters, keep_ends)\nPolyline smoothing based on Chaikin's Corner Cutting algorithm.\n\n**Parameters**\n\n<code><b>geometry</b> : LineString | Polygon | list</code>\n>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.\n\n<code><b>iters</b> : int</code>\n>Number of iterations. Default value: $\\mathbf{5}$.\n\n<code><b>keep_ends</b> : bool</code>\n>Preserve the original start and end nodes of the polyline. Not applicable to closed polylines and polygons. (The original algorithm results in a contraction of the start and end nodes). Default value: **`True`**.\n\n**Returns**\n\n<code><b>output</b> : LineString | Polygon | List</code>\n> The smoothed geometry.\n---\nChaikin's Corner Cutting algorithm smooths a polyline by iterative refinement of the nodes of the polyline. At each iteration, every node is replaced by two new nodes: one a quarter of the way to the next node, and one quarter of the way to the previous node.\n\nNote that the algorithm (roughly) doubles the amount of nodes at each iteration, therefore care should be taken when selecting the number of iterations.\n\nInstead of the original iterative algorithm by Chaikin, this implementation makes use of the equivalent multi-step algorithm introduced by Wu et al. See\n>[Ling Wu, Jun-Hai Yong, You-Wei Zhang, and Li Zhang. 2004. Multi-step Subdivision Algorithm for Chaikin Curves. In Proceedings of the First international conference on Computational and Information Science (CIS'04). Springer-Verlag, Berlin, Heidelberg. 1232\u20131238.](https://sci-hub.st/10.1007/978-3-540-30497-5_188)\n\nBy default, the algorithm will not contract the endpoints of an open polyline. Set the `keep_ends` parameter if this behaviour is unwanted.\n\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/chaikin1.png?raw=true\" width=\"500\" height=\"239\" />\n</p>\n\nThe implementation also supports closed polylines and polygons (with or without holes).\n\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/chaikin2.png?raw=true\" width=\"240\" height=\"239\" />\n</p>\n\n<a id=\"catmullrom\"></a>\n### Catmull-Rom Spline Interpolation - `catmull_rom_smooth`\n---\n    >>> from shapelysmooth import catmull_rom_smooth\n    >>> smoothed_geometry = catmull_rom_smooth(geometry, alpha, subdivs)\nPolyline smoothing using Catmull-Rom splines.\n\n**Parameters**\n\n<code><b>geometry</b> : LineString | Polygon | list</code>\n>Geometric object consisting of polylines to smooth. A `shapely.geometry.Linestring` or `shapely.geometry.Polygon` or a `list` containing tuples of $(x, y)$ coordinates.\n\n<code><b>alpha</b> : float</code>\n> Tension parameter. $0 \\leq$ `alpha` $\\leq 1$. For uniform Catmull-Rom splines, `alpha`  $= 0$. For centripetal Catmull-Rom splines, `alpha`  $= 0.5$. For chordal Catmull-Rom splines, `alpha`  $= 1.0$. Default value: $\\mathbf{0.5}$.\n\n<code><b>subdivs</b> : int</code>\n> Number of subdivisions of each polyline segment. Default value: $\\mathbf{10}$.\n\n**Returns**\n\n<code><b>output</b> : LineString | Polygon | List</code>\n> The smoothed geometry.\n---\nCatmull-Rom splines are a class of cubic splines which can be efficiently calculated, and have the property that they pass through each interpolation node. The splines are piecewise-defined, but have $C^1$ continuity throughout.\n\nFor more detail see\n>[Edwin Catmull, Raphael Rom. 1974. A Class of Local Interpolating Splines. Computer Aided Geometric Design. Academic Press. 317-326.](https://sci-hub.hkvisa.net/10.1016/b978-0-12-079050-0.50020-5)\n\nThis implementation makes use of the algorithm proposed by Barry and Goldman, see\n>[Philip Barry and Ronald Goldman. 1988. Recursive evaluation algorithm for a class of Catmull-Rom splines. ACM Siggraph Computer Graphics. 22. 199-204.](https://www.researchgate.net/profile/Ronald-Goldman/publication/220720141_Recursive_evaluation_algorithm_for_a_class_of_Catmull-Rom_splines/links/559d5d3d08ae76bed0bb3523/Recursive-evaluation-algorithm-for-a-class-of-Catmull-Rom-splines.pdf)\n\nThere are three types of Catmull-Rom splines: uniform, centripetal and chordal, which are determined by tension parameter, $\\alpha$, values of $0$, $0.5$ and $1$, respectively. Note that uniform Catmull-Rom splines may contain spurious self-intersections.\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/catmullrom1.png?raw=true\" width=\"500\" height=\"239\" />\n</p>\nThe implementation also supports closed polylines and polygons (with or without holes).\n<p align=\"center\">\n  <img src=\"https://github.com/philipschall/shapelysmooth/blob/main/images/catmullrom2.png?raw=true\" width=\"240\" height=\"239\" />\n</p>\n\n## Smoothing Collections of Geometries\nObjects of type `shapely.geometry.MultiLineString` and `shapely.geometry.MultiPolygon` can be smoothed by making use of the `geoms` property provided by these classes.\n\n    >>> from shapely.geometry import MultiPolygon\n    >>> from shapelysmooth import chaikin_smooth\n    >>> polys = MultiPolygon(...)\n    >>> smoothed_polys = MultiPolygon([chaikin_smooth(poly) for poly in polys.geoms])\n\n## Smoothing Geometries stored in Numpy Arrays\nGiven a `numpy.array` of shape $(n, 2)$ (thus containing $n$ 2-dimensional coordinates or nodes), it can be smoothed as follows.\n    \n    >>> import numpy as np\n    >>> from shapelysmooth import chaikin_smooth\n    >>> array = np.array(...)\n    >>> array_smoothed = np.array(chaikin_smooth(list(map(tuple, array))))\n\nDirect support for Numpy arrays is being worked on for a future version.\n",
    "bugtrack_url": null,
    "license": "Unlicense",
    "summary": "A polyline smoothing package for shapely.",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/philipschall/shapelysmooth"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad5014bd85591f427f81e867bd26f4f3a478822fbfe1934dad100fc2291fb2bd",
                "md5": "73141ca4fcaa6ccbe6789a75f68a46d4",
                "sha256": "32ff1b6e7dac450420dfe5f073d3e2ef8cf6f130f05ceff7e1f11e72b4dccd17"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73141ca4fcaa6ccbe6789a75f68a46d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 68407,
            "upload_time": "2024-04-11T15:37:41",
            "upload_time_iso_8601": "2024-04-11T15:37:41.388110Z",
            "url": "https://files.pythonhosted.org/packages/ad/50/14bd85591f427f81e867bd26f4f3a478822fbfe1934dad100fc2291fb2bd/shapelysmooth-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a5ddab51be12335284e797a20be1b8e484cfdfad4862deb28af784f1503111e",
                "md5": "6561955f7fc82c5d763d20959b3623c5",
                "sha256": "ae937107d4071d251c96ef662980ca97ffcc1f75f6dda16a50028ecb13e4f3fa"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6561955f7fc82c5d763d20959b3623c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 66377,
            "upload_time": "2024-04-11T15:37:42",
            "upload_time_iso_8601": "2024-04-11T15:37:42.751629Z",
            "url": "https://files.pythonhosted.org/packages/1a/5d/dab51be12335284e797a20be1b8e484cfdfad4862deb28af784f1503111e/shapelysmooth-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad95f94cac282a2487e652d2717d8565d38a8dfd7d431001ba78925d0f59cae7",
                "md5": "344341cd618a0ce7bbc587342cb6c38f",
                "sha256": "652828017005160fd5fc9a9ea0272d39bab22d92fcf25633ddc1f1305cefabd4"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "344341cd618a0ce7bbc587342cb6c38f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 109674,
            "upload_time": "2024-04-11T15:37:44",
            "upload_time_iso_8601": "2024-04-11T15:37:44.166900Z",
            "url": "https://files.pythonhosted.org/packages/ad/95/f94cac282a2487e652d2717d8565d38a8dfd7d431001ba78925d0f59cae7/shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c508daa3a26f9b221271d88e65003712b82b4dd13c9c7bd6b731e865e720aedd",
                "md5": "7f3cc34d3bbde9b5d21dbd47ef164f9f",
                "sha256": "75c2a6d294fbb16d0936e5b713b5fc133b6e3432d9db0879e280df63d1a2f1c3"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f3cc34d3bbde9b5d21dbd47ef164f9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 102970,
            "upload_time": "2024-04-11T15:37:45",
            "upload_time_iso_8601": "2024-04-11T15:37:45.937026Z",
            "url": "https://files.pythonhosted.org/packages/c5/08/daa3a26f9b221271d88e65003712b82b4dd13c9c7bd6b731e865e720aedd/shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93484efd720e5a0acbd4cc3fcd7f8c6066d28d0c4590817af00c709fe968130c",
                "md5": "267c9809807912263f5e4399dc7801b8",
                "sha256": "8a6e8953dc8e5ba3791340538d2a177869bc08aaa71b102f3d85c484bd281718"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "267c9809807912263f5e4399dc7801b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 679765,
            "upload_time": "2024-04-11T15:37:47",
            "upload_time_iso_8601": "2024-04-11T15:37:47.921585Z",
            "url": "https://files.pythonhosted.org/packages/93/48/4efd720e5a0acbd4cc3fcd7f8c6066d28d0c4590817af00c709fe968130c/shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82a01d215cb91da97aa3961128c85c2abb0ee2e32df2dfb18d58d50c3c49bb94",
                "md5": "5f63dc271a33f41907bbe9a619af9ec8",
                "sha256": "ac7cb4b29e1cc6c5e2a34ba910b0818f77e1e0ba95e5b6da286655668363d6e1"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f63dc271a33f41907bbe9a619af9ec8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 621603,
            "upload_time": "2024-04-11T15:37:49",
            "upload_time_iso_8601": "2024-04-11T15:37:49.294787Z",
            "url": "https://files.pythonhosted.org/packages/82/a0/1d215cb91da97aa3961128c85c2abb0ee2e32df2dfb18d58d50c3c49bb94/shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dbad858dbe455d947d3bd74274222a8a6093ac1305486abe1906986f1ed1c25",
                "md5": "3fd7262264606a30ace877cd7569aa06",
                "sha256": "6a4eb75c4cf4270ef18ef09657d230059ad566492c62f7d46515b2f59e162eee"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "3fd7262264606a30ace877cd7569aa06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 57489,
            "upload_time": "2024-04-11T15:37:50",
            "upload_time_iso_8601": "2024-04-11T15:37:50.575464Z",
            "url": "https://files.pythonhosted.org/packages/8d/ba/d858dbe455d947d3bd74274222a8a6093ac1305486abe1906986f1ed1c25/shapelysmooth-0.2.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fae18b3ed64df687155d8c074769f86cb8dc5f7618bce559f9776d43598efb1a",
                "md5": "3272414c13fca873d432ae487f081ba4",
                "sha256": "6f4097480edd0e11eccefe91c64a32a07923d66927556d38509f02ac95d3004b"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3272414c13fca873d432ae487f081ba4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 64946,
            "upload_time": "2024-04-11T15:37:51",
            "upload_time_iso_8601": "2024-04-11T15:37:51.750713Z",
            "url": "https://files.pythonhosted.org/packages/fa/e1/8b3ed64df687155d8c074769f86cb8dc5f7618bce559f9776d43598efb1a/shapelysmooth-0.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f740849eb276a22a1270abd8428022f235ebfc94052f7d8a6e16dc2f62d80b02",
                "md5": "9c2179676c2567a69dd8f2130b85bb2e",
                "sha256": "c8ef3b5895cefece129a708485c8aa9a2e39729a6296445e715ea02f7a75bb4e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c2179676c2567a69dd8f2130b85bb2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 69915,
            "upload_time": "2024-04-11T15:37:53",
            "upload_time_iso_8601": "2024-04-11T15:37:53.059838Z",
            "url": "https://files.pythonhosted.org/packages/f7/40/849eb276a22a1270abd8428022f235ebfc94052f7d8a6e16dc2f62d80b02/shapelysmooth-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87c5ee9701de9ee064e17989ae7b0b42f9d7f1695075e61b9f68e58734da6527",
                "md5": "0e3525ad842add21b6fa33045cb4d2ea",
                "sha256": "9f25a9a4c7bb01866ddeee17ee29699f017d63be73f4d8d6cc5fbb834d95d108"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e3525ad842add21b6fa33045cb4d2ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 67757,
            "upload_time": "2024-04-11T15:37:54",
            "upload_time_iso_8601": "2024-04-11T15:37:54.824761Z",
            "url": "https://files.pythonhosted.org/packages/87/c5/ee9701de9ee064e17989ae7b0b42f9d7f1695075e61b9f68e58734da6527/shapelysmooth-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56eb3d296a838e3f70e9d2c663ff4e77d8bf9d460203f68aea39a95394fd89f9",
                "md5": "ac7b1140c1f75781ef55dedf7e1fc066",
                "sha256": "97be92d06631bff0b624c966152524351bbe7ad0df8e74c07b7c15713f6e9a5e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ac7b1140c1f75781ef55dedf7e1fc066",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 110335,
            "upload_time": "2024-04-11T15:37:56",
            "upload_time_iso_8601": "2024-04-11T15:37:56.484474Z",
            "url": "https://files.pythonhosted.org/packages/56/eb/3d296a838e3f70e9d2c663ff4e77d8bf9d460203f68aea39a95394fd89f9/shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf7f4f790312c752e1496e46887d2bff0d7fe009b66e8a49e33ba38154ff7728",
                "md5": "32c2bd5b31a2b80f5b6919ba27665729",
                "sha256": "c71dfd61c8c5ec09980f9544a98d69c1750a519f9cbe9ecc5f603518d3cb69a9"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32c2bd5b31a2b80f5b6919ba27665729",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 104802,
            "upload_time": "2024-04-11T15:37:57",
            "upload_time_iso_8601": "2024-04-11T15:37:57.718523Z",
            "url": "https://files.pythonhosted.org/packages/cf/7f/4f790312c752e1496e46887d2bff0d7fe009b66e8a49e33ba38154ff7728/shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e663867fa17c428f6d32c32fbfdd58e636bc47637ff95df67bc7f2e23bf80ff2",
                "md5": "22b9124bc85e60c5a21db428365c6dad",
                "sha256": "79a3f5ec92d4cd08ea51c29e1c9a05c7477d1350da8482cb9d4ced437f2d167e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "22b9124bc85e60c5a21db428365c6dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 681062,
            "upload_time": "2024-04-11T15:37:59",
            "upload_time_iso_8601": "2024-04-11T15:37:59.066214Z",
            "url": "https://files.pythonhosted.org/packages/e6/63/867fa17c428f6d32c32fbfdd58e636bc47637ff95df67bc7f2e23bf80ff2/shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c262122bb8c5df7ec400603a8f04f54be0b5202b9100af4b5ee68d41028cb740",
                "md5": "adba8e02bba72dfa34d25cec5baa8076",
                "sha256": "4a2a76dd7d6225e0c17282dabb166acd07dc404866e0be09550084c5036bdcfa"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adba8e02bba72dfa34d25cec5baa8076",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 622633,
            "upload_time": "2024-04-11T15:38:00",
            "upload_time_iso_8601": "2024-04-11T15:38:00.491677Z",
            "url": "https://files.pythonhosted.org/packages/c2/62/122bb8c5df7ec400603a8f04f54be0b5202b9100af4b5ee68d41028cb740/shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41c9dd2d72882fcc3de0693e562f26140bfe284979cae12b254e3e1c48ca8e46",
                "md5": "dc63935aca1dd4b7b2067e180c30016f",
                "sha256": "ddf97cc4719b94591c7c56ddff03dd25f6fc6d91136ec87e986ea95b2c16cee1"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "dc63935aca1dd4b7b2067e180c30016f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 58762,
            "upload_time": "2024-04-11T15:38:02",
            "upload_time_iso_8601": "2024-04-11T15:38:02.595541Z",
            "url": "https://files.pythonhosted.org/packages/41/c9/dd2d72882fcc3de0693e562f26140bfe284979cae12b254e3e1c48ca8e46/shapelysmooth-0.2.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55d20963df3c7ffdd499378e741c03891dca12dc14586c6ac654e884606ffe84",
                "md5": "c78ddbd7242d5d85c30292b317603c68",
                "sha256": "15a673c2cb8e889396b90f13b767b17b5b00fe096075fa3dd7e7a50e0c56f39e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c78ddbd7242d5d85c30292b317603c68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 66185,
            "upload_time": "2024-04-11T15:38:03",
            "upload_time_iso_8601": "2024-04-11T15:38:03.757082Z",
            "url": "https://files.pythonhosted.org/packages/55/d2/0963df3c7ffdd499378e741c03891dca12dc14586c6ac654e884606ffe84/shapelysmooth-0.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6db681447e4b5f777fedf8d85257273adde8a00abe117097144cf3c81c938df3",
                "md5": "e2e0aab20bcb1785eeab34e7c50234d2",
                "sha256": "ac378817da7677c9568fbf43dfecf4ef36eb50fb3511d94593e469546d16c9fe"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2e0aab20bcb1785eeab34e7c50234d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 68600,
            "upload_time": "2024-04-11T15:38:04",
            "upload_time_iso_8601": "2024-04-11T15:38:04.846701Z",
            "url": "https://files.pythonhosted.org/packages/6d/b6/81447e4b5f777fedf8d85257273adde8a00abe117097144cf3c81c938df3/shapelysmooth-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f40c8ef671099c886777edc29d7694d7070ae88fd9b0ef194606991b6cf78ffc",
                "md5": "d356ab30b42daeef7b6602b6f2ac5f79",
                "sha256": "8c30911435fa9e8ac2c982d9599f28b3b47ad286cc18e5c2cd9391497ec647ea"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d356ab30b42daeef7b6602b6f2ac5f79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 66416,
            "upload_time": "2024-04-11T15:38:05",
            "upload_time_iso_8601": "2024-04-11T15:38:05.997995Z",
            "url": "https://files.pythonhosted.org/packages/f4/0c/8ef671099c886777edc29d7694d7070ae88fd9b0ef194606991b6cf78ffc/shapelysmooth-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "139c6c7c584143b2097f029e3a1cddd2d511abea74a08730885144928f982b68",
                "md5": "c6a71d17ed72126044aa5df507935322",
                "sha256": "eb789ef6704550d245f8f55a69734b30ae0ba0ebf4e7e1d69827c98119883263"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c6a71d17ed72126044aa5df507935322",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 111363,
            "upload_time": "2024-04-11T15:38:08",
            "upload_time_iso_8601": "2024-04-11T15:38:08.197285Z",
            "url": "https://files.pythonhosted.org/packages/13/9c/6c7c584143b2097f029e3a1cddd2d511abea74a08730885144928f982b68/shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b261d252992545513a7297801c3d3558bf17cd5959d0c82b8b9631a4fec4b832",
                "md5": "ace08e38657779b0a2eb87ecd56edd79",
                "sha256": "c48baa3081d7d52b1f0351aa6c2b2a82bbf4fec6aa7aee7cca3227d6e5226264"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ace08e38657779b0a2eb87ecd56edd79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 105289,
            "upload_time": "2024-04-11T15:38:09",
            "upload_time_iso_8601": "2024-04-11T15:38:09.515555Z",
            "url": "https://files.pythonhosted.org/packages/b2/61/d252992545513a7297801c3d3558bf17cd5959d0c82b8b9631a4fec4b832/shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "022415f66447b3cc54153a573bd6a78c11f5f558bb05d4d06db0202dac2550bd",
                "md5": "2058e1ac08faccba5fc50d1824b9a111",
                "sha256": "1707c61b4b3a608402541fcae15700ec331c0295e156b22b71b427151b0288e8"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2058e1ac08faccba5fc50d1824b9a111",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 680846,
            "upload_time": "2024-04-11T15:38:12",
            "upload_time_iso_8601": "2024-04-11T15:38:12.889121Z",
            "url": "https://files.pythonhosted.org/packages/02/24/15f66447b3cc54153a573bd6a78c11f5f558bb05d4d06db0202dac2550bd/shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d141b4d7ad7389d01ff810138f3ff6db3cf14b997355b2c2d66a286493b948e",
                "md5": "948a43d28429cf4cca5bb1fda7e63a61",
                "sha256": "77493320db40c3bb90d34a54b23e2794a764f9eab2ed18866fe8f927782e5b05"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "948a43d28429cf4cca5bb1fda7e63a61",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 622625,
            "upload_time": "2024-04-11T15:38:14",
            "upload_time_iso_8601": "2024-04-11T15:38:14.359668Z",
            "url": "https://files.pythonhosted.org/packages/8d/14/1b4d7ad7389d01ff810138f3ff6db3cf14b997355b2c2d66a286493b948e/shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4391893f816c8ceda910bc7d61c475eab1ef1c3d30ec3392b10634bdb165cfc7",
                "md5": "ddb0bd5e110d0d34e58572dc640cc3db",
                "sha256": "9ad8d485f6c4b3ed0efb53eeb325e23252240b240385bca8447261acd022e46d"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ddb0bd5e110d0d34e58572dc640cc3db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 59050,
            "upload_time": "2024-04-11T15:38:15",
            "upload_time_iso_8601": "2024-04-11T15:38:15.887462Z",
            "url": "https://files.pythonhosted.org/packages/43/91/893f816c8ceda910bc7d61c475eab1ef1c3d30ec3392b10634bdb165cfc7/shapelysmooth-0.2.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdc043c72eed29e4aa430a860c3d9247dea9c45e3ab465a7fae2894ab414c637",
                "md5": "3c46b135cd5a2e09852ac93eab299001",
                "sha256": "9127b7b686afb11c9ad830055d6036db60f207c47a2d22c0a53206f84357b507"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c46b135cd5a2e09852ac93eab299001",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 66281,
            "upload_time": "2024-04-11T15:38:19",
            "upload_time_iso_8601": "2024-04-11T15:38:19.671412Z",
            "url": "https://files.pythonhosted.org/packages/bd/c0/43c72eed29e4aa430a860c3d9247dea9c45e3ab465a7fae2894ab414c637/shapelysmooth-0.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "161b9c28377d30ff66b850975165061686e7d48b645a6a9dc9eed42975f24e71",
                "md5": "b0a04cde38634af41427173ed6dc8ea2",
                "sha256": "fca04be0f02beaf79b8f733bd392d4984f98f6ca7be063be43bf00a8da93b837"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0a04cde38634af41427173ed6dc8ea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 68349,
            "upload_time": "2024-04-11T15:38:21",
            "upload_time_iso_8601": "2024-04-11T15:38:21.363510Z",
            "url": "https://files.pythonhosted.org/packages/16/1b/9c28377d30ff66b850975165061686e7d48b645a6a9dc9eed42975f24e71/shapelysmooth-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f717258a62d0fb5d46f1b0c179365bcd168d9e837959384d95691d4c18bf30ea",
                "md5": "63fe607551928bb7782fa50692d975f1",
                "sha256": "35fccaa30748698320a1be19b7d6f4649baac18ef7e36e792130eb90e881b9bc"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "63fe607551928bb7782fa50692d975f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 111575,
            "upload_time": "2024-04-11T15:38:22",
            "upload_time_iso_8601": "2024-04-11T15:38:22.657664Z",
            "url": "https://files.pythonhosted.org/packages/f7/17/258a62d0fb5d46f1b0c179365bcd168d9e837959384d95691d4c18bf30ea/shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "294762586f8a639feb24c58239604ed1dea54e03d88bd808d4fae3dbdacdeb27",
                "md5": "0e6b4b0cfdf9187d87990ef6ea80032c",
                "sha256": "78cad03b54e0af6d0078d4881f9fe4b43553b97cb32e7a8a9cffb3d54f3e682a"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e6b4b0cfdf9187d87990ef6ea80032c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 104847,
            "upload_time": "2024-04-11T15:38:23",
            "upload_time_iso_8601": "2024-04-11T15:38:23.941647Z",
            "url": "https://files.pythonhosted.org/packages/29/47/62586f8a639feb24c58239604ed1dea54e03d88bd808d4fae3dbdacdeb27/shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5bf2f1a4bde94c159b3a77de25f625fb5ac4834910be2bc68656ca6453ab795",
                "md5": "2c20b1ccbff373cd2b20be6235879047",
                "sha256": "ef5a67ccd05c135aac306db561971b7e703217102c09d2552bbd4ad8d8c36a64"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2c20b1ccbff373cd2b20be6235879047",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 681284,
            "upload_time": "2024-04-11T15:38:25",
            "upload_time_iso_8601": "2024-04-11T15:38:25.375640Z",
            "url": "https://files.pythonhosted.org/packages/f5/bf/2f1a4bde94c159b3a77de25f625fb5ac4834910be2bc68656ca6453ab795/shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06ef7fe9616bf8fd37e1b00e947d92d10fc9b8eaf87d7a275e56b6944b48bfcd",
                "md5": "e93c601bf15446fec330f5458ee20cd2",
                "sha256": "dc205c935338839c23432449f111123b949fcb22c2d63800990c601c3c4f0816"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e93c601bf15446fec330f5458ee20cd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 622826,
            "upload_time": "2024-04-11T15:38:26",
            "upload_time_iso_8601": "2024-04-11T15:38:26.740154Z",
            "url": "https://files.pythonhosted.org/packages/06/ef/7fe9616bf8fd37e1b00e947d92d10fc9b8eaf87d7a275e56b6944b48bfcd/shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb808125e1c164034fd941b3042763098fcd8470c1a4874e2587686ebfc5d60a",
                "md5": "d122584bdf9ef6d677235cad154fde57",
                "sha256": "fb6d4453fc87dca1debb9d17ebdb0fcdd34c36761735e57e325ae39c0ee83336"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "d122584bdf9ef6d677235cad154fde57",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 58585,
            "upload_time": "2024-04-11T15:38:28",
            "upload_time_iso_8601": "2024-04-11T15:38:28.039538Z",
            "url": "https://files.pythonhosted.org/packages/bb/80/8125e1c164034fd941b3042763098fcd8470c1a4874e2587686ebfc5d60a/shapelysmooth-0.2.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dd1102c3f5867e39ad5dc72e3f9a10bffa120c5d0bbd4a0750852a474e61290",
                "md5": "ef100ad467dc7504a90c2bbc4f2535f1",
                "sha256": "880f223e342f1f6efae3947ef3414a9927083d606d6cb52e1cbc5c14e49c0c68"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef100ad467dc7504a90c2bbc4f2535f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 65541,
            "upload_time": "2024-04-11T15:38:29",
            "upload_time_iso_8601": "2024-04-11T15:38:29.220317Z",
            "url": "https://files.pythonhosted.org/packages/0d/d1/102c3f5867e39ad5dc72e3f9a10bffa120c5d0bbd4a0750852a474e61290/shapelysmooth-0.2.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "677e2dfcf9ab0390e32fccc1f8de8477cdf34bd8522d200b5ea109d5e2dd5ee3",
                "md5": "9ce8c11d76edd7f414f1d0dc79735838",
                "sha256": "9f9cac980fe64467c21631a4fdbff7ab28190eae38247a1f50902d31198cc802"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ce8c11d76edd7f414f1d0dc79735838",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 68227,
            "upload_time": "2024-04-11T15:38:30",
            "upload_time_iso_8601": "2024-04-11T15:38:30.369962Z",
            "url": "https://files.pythonhosted.org/packages/67/7e/2dfcf9ab0390e32fccc1f8de8477cdf34bd8522d200b5ea109d5e2dd5ee3/shapelysmooth-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d777bf2d55708e4aeba090c2f04399f628ca7d8af42b2f39a537edbecf635f46",
                "md5": "228f0201f33443724ed85d947e22b6f3",
                "sha256": "c30863380eeb37c33535e927e54b29cd2008b0723dac588b656c4af2cf19c13a"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "228f0201f33443724ed85d947e22b6f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 66273,
            "upload_time": "2024-04-11T15:38:32",
            "upload_time_iso_8601": "2024-04-11T15:38:32.091546Z",
            "url": "https://files.pythonhosted.org/packages/d7/77/bf2d55708e4aeba090c2f04399f628ca7d8af42b2f39a537edbecf635f46/shapelysmooth-0.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf7bc7cb5f86d9b513213b2af718a54506da95a8deddead7823a38a95f849b7e",
                "md5": "5d5e6f06957821ec26645d65086729f0",
                "sha256": "2b72f228ff990c4ff9303b25c077c767c2ef334018a6210b3d62e4a9aa3ecca4"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5d5e6f06957821ec26645d65086729f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 109393,
            "upload_time": "2024-04-11T15:38:34",
            "upload_time_iso_8601": "2024-04-11T15:38:34.021959Z",
            "url": "https://files.pythonhosted.org/packages/cf/7b/c7cb5f86d9b513213b2af718a54506da95a8deddead7823a38a95f849b7e/shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b426156783673840bf9bbe0bd604d66bf991a8975bd25025af5525241fdf43e5",
                "md5": "9ed4b3b5dc92fb4348e54e711afdb2cd",
                "sha256": "12e21c20214c3e69a0d3221e6ae819f0b0f7ee7dfcd805af824ff691c93ab90b"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ed4b3b5dc92fb4348e54e711afdb2cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 102730,
            "upload_time": "2024-04-11T15:38:35",
            "upload_time_iso_8601": "2024-04-11T15:38:35.227114Z",
            "url": "https://files.pythonhosted.org/packages/b4/26/156783673840bf9bbe0bd604d66bf991a8975bd25025af5525241fdf43e5/shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50b901d4d6b6c53387d4dfc25d0b0a2f619403b3258799058d4341722b0d25e2",
                "md5": "834b800ab568bb60cac72a4131bfefa9",
                "sha256": "07b18b05e0fc5d0ec1067bdae724227d1a6643e2e513d3e1cc8bf604e4a0f7e4"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "834b800ab568bb60cac72a4131bfefa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 679416,
            "upload_time": "2024-04-11T15:38:37",
            "upload_time_iso_8601": "2024-04-11T15:38:37.520391Z",
            "url": "https://files.pythonhosted.org/packages/50/b9/01d4d6b6c53387d4dfc25d0b0a2f619403b3258799058d4341722b0d25e2/shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55155276d8cde22867b20a8a3c39c053e757e1fb71d47bcc49313182f0efa58a",
                "md5": "3a358e16493276ebb30a0af710e3d5a8",
                "sha256": "c583ef228d43d5d639155c77c268bfcbb5d150d548054541371a0bf739328c3e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a358e16493276ebb30a0af710e3d5a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 621383,
            "upload_time": "2024-04-11T15:38:39",
            "upload_time_iso_8601": "2024-04-11T15:38:39.072260Z",
            "url": "https://files.pythonhosted.org/packages/55/15/5276d8cde22867b20a8a3c39c053e757e1fb71d47bcc49313182f0efa58a/shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6798ea074241655e8566ba0fb88955774bf588423f95a80b4f82b12c6867c9b9",
                "md5": "837707c73ad487b55f5bbc7209e84c87",
                "sha256": "a29a9207d633dc155d31ede5445872fcf180af096c44b6938403e2876c1330fa"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "837707c73ad487b55f5bbc7209e84c87",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 57672,
            "upload_time": "2024-04-11T15:38:40",
            "upload_time_iso_8601": "2024-04-11T15:38:40.351473Z",
            "url": "https://files.pythonhosted.org/packages/67/98/ea074241655e8566ba0fb88955774bf588423f95a80b4f82b12c6867c9b9/shapelysmooth-0.2.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e25f47b1ce6482eb8ccae08393c22dde0c55f924e94e5e4c48434c53a76847d",
                "md5": "f4daaaa918c327a27b065ef1cb62f4be",
                "sha256": "4facb2d3853374fccf91c8b2b139da69bed611c44aff14e4cf22d26bfd8c7343"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f4daaaa918c327a27b065ef1cb62f4be",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 65114,
            "upload_time": "2024-04-11T15:38:41",
            "upload_time_iso_8601": "2024-04-11T15:38:41.632418Z",
            "url": "https://files.pythonhosted.org/packages/7e/25/f47b1ce6482eb8ccae08393c22dde0c55f924e94e5e4c48434c53a76847d/shapelysmooth-0.2.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a673b448fc647f7596555981120471c03f8c8e9cb5394971d2ac7d6b76954986",
                "md5": "dc08a5f41a8194dd626ead7040c0c28d",
                "sha256": "f5034473701063a1c701b0843cb602f3ee63618465975f79c9aa9b2fd60e1641"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc08a5f41a8194dd626ead7040c0c28d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 68474,
            "upload_time": "2024-04-11T15:38:42",
            "upload_time_iso_8601": "2024-04-11T15:38:42.932283Z",
            "url": "https://files.pythonhosted.org/packages/a6/73/b448fc647f7596555981120471c03f8c8e9cb5394971d2ac7d6b76954986/shapelysmooth-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7852607e9d80537e1e62fa2e9d1605b48822e8c503ae48afaaa8abac34c56602",
                "md5": "cd1338bb5f7554c5d5968217372a41f3",
                "sha256": "5567d200e4a548ab2c066dd89a7924923885749affb4063721fa63ebf8dd5b12"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd1338bb5f7554c5d5968217372a41f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 66466,
            "upload_time": "2024-04-11T15:38:44",
            "upload_time_iso_8601": "2024-04-11T15:38:44.236171Z",
            "url": "https://files.pythonhosted.org/packages/78/52/607e9d80537e1e62fa2e9d1605b48822e8c503ae48afaaa8abac34c56602/shapelysmooth-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad3d9309a1e0b6f535586d0387cf7624e3d688ad7a1a092778517a60440ad2b2",
                "md5": "4f484903f4cb310644b2de63669ecb10",
                "sha256": "2b4635cd2e85775421bf39cc467544e3b04ccfbcad5ce62077c38efcf032f089"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4f484903f4cb310644b2de63669ecb10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 109585,
            "upload_time": "2024-04-11T15:38:45",
            "upload_time_iso_8601": "2024-04-11T15:38:45.611476Z",
            "url": "https://files.pythonhosted.org/packages/ad/3d/9309a1e0b6f535586d0387cf7624e3d688ad7a1a092778517a60440ad2b2/shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fa5a4a016b29c1aaabf363f2115d3128e7e6146f4679347df6c1ee13077f569",
                "md5": "74efc9e3b91d5d254247b29aedf6868f",
                "sha256": "ae504e25a927048ad827cb00250cb27ae1cee1054d0821c625edc33a9c41c4e5"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74efc9e3b91d5d254247b29aedf6868f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 102915,
            "upload_time": "2024-04-11T15:38:47",
            "upload_time_iso_8601": "2024-04-11T15:38:47.454963Z",
            "url": "https://files.pythonhosted.org/packages/6f/a5/a4a016b29c1aaabf363f2115d3128e7e6146f4679347df6c1ee13077f569/shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66cc16fd4aa1229b53c014876a8175b04f8e1d52550795bd171cff713965061f",
                "md5": "706ea47c17273feee89d37a4e4a8bede",
                "sha256": "41246003f893edad1e7a3e4ebbba31f2f2b3ecf872c39668cde8cc28dde2d0f2"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "706ea47c17273feee89d37a4e4a8bede",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 679643,
            "upload_time": "2024-04-11T15:38:48",
            "upload_time_iso_8601": "2024-04-11T15:38:48.859949Z",
            "url": "https://files.pythonhosted.org/packages/66/cc/16fd4aa1229b53c014876a8175b04f8e1d52550795bd171cff713965061f/shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "988c8d08bd77cee3046d8840aa6ffc83ad9ca884dcf564adeaba7e97d6ec2c5c",
                "md5": "b8faaf7d22996a39ac7f87b4321633f7",
                "sha256": "221a39ef35f417114728abcadd68aa7a44e8e2bed68059ece7d6086a0cd58538"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8faaf7d22996a39ac7f87b4321633f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 621620,
            "upload_time": "2024-04-11T15:38:50",
            "upload_time_iso_8601": "2024-04-11T15:38:50.284758Z",
            "url": "https://files.pythonhosted.org/packages/98/8c/8d08bd77cee3046d8840aa6ffc83ad9ca884dcf564adeaba7e97d6ec2c5c/shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c3c43401a8da280c28bcb4416787a8a086154ac349e25c3b17343472b0b125b",
                "md5": "d86500b327e0a3fe25613206cd5381cd",
                "sha256": "d7992af1d33f071d6049a1ba86d4344f187ad82f4c013ab4e6bdb88cadaf61e7"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d86500b327e0a3fe25613206cd5381cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 57631,
            "upload_time": "2024-04-11T15:38:51",
            "upload_time_iso_8601": "2024-04-11T15:38:51.898360Z",
            "url": "https://files.pythonhosted.org/packages/1c/3c/43401a8da280c28bcb4416787a8a086154ac349e25c3b17343472b0b125b/shapelysmooth-0.2.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b69b2e5cf2450d5dcf5a0abf82ec05dee1d896a3a124763d2fcfe8c42d40c67",
                "md5": "c7039556d7b0a3691004901bcb8eb4a7",
                "sha256": "b2ed4b02f6b99b69d46eeb4d740b3ba42a95a404b2548aab143654a388aaa828"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7039556d7b0a3691004901bcb8eb4a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 64869,
            "upload_time": "2024-04-11T15:38:53",
            "upload_time_iso_8601": "2024-04-11T15:38:53.021841Z",
            "url": "https://files.pythonhosted.org/packages/0b/69/b2e5cf2450d5dcf5a0abf82ec05dee1d896a3a124763d2fcfe8c42d40c67/shapelysmooth-0.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d82759550ac3143cc31d21f7b1d3909511a2addd1dc5e06032989bd5385d965e",
                "md5": "b1941020495c4dff7415ce1ccf7cf984",
                "sha256": "5a11e36d5fdb949da7c74a5cd898160b1bf7148d92a3b0b9f46b1f9bd0439250"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1941020495c4dff7415ce1ccf7cf984",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 70217,
            "upload_time": "2024-04-11T15:38:54",
            "upload_time_iso_8601": "2024-04-11T15:38:54.289709Z",
            "url": "https://files.pythonhosted.org/packages/d8/27/59550ac3143cc31d21f7b1d3909511a2addd1dc5e06032989bd5385d965e/shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bc1f1f682a5173e07694a448b84961c34df34c99495059ee2dd8c45cdb58bb6",
                "md5": "201784917bccdfb9e9e55b7473498a1c",
                "sha256": "7f9a6dde7276402dbc52f938e07d4174cd9d9401dd8f25a93aa14ead263d61e4"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "201784917bccdfb9e9e55b7473498a1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 67110,
            "upload_time": "2024-04-11T15:38:55",
            "upload_time_iso_8601": "2024-04-11T15:38:55.394572Z",
            "url": "https://files.pythonhosted.org/packages/8b/c1/f1f682a5173e07694a448b84961c34df34c99495059ee2dd8c45cdb58bb6/shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77febc4622c576601de1cf8bf51981b5bb4d396b3655e2cb162ca1c9ee729efb",
                "md5": "a5277621a51287be52d0943a41a19bf6",
                "sha256": "54cf87f5a62dd005f93ee83a32ffa98f8034bcd31e0b3e9a07458009d519c3e7"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a5277621a51287be52d0943a41a19bf6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 106380,
            "upload_time": "2024-04-11T15:38:56",
            "upload_time_iso_8601": "2024-04-11T15:38:56.796011Z",
            "url": "https://files.pythonhosted.org/packages/77/fe/bc4622c576601de1cf8bf51981b5bb4d396b3655e2cb162ca1c9ee729efb/shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4aaf5e9d2dc65fb6f28aec9dd7c02a2c99b5877b40e35fe4cf6482fa4f3166c",
                "md5": "e917c2027915c6d0539eee6261df2bf8",
                "sha256": "d2eb2d50f69c204252546060ac548b779856a13c55d1b633f294f4ea53003376"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e917c2027915c6d0539eee6261df2bf8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 100667,
            "upload_time": "2024-04-11T15:38:58",
            "upload_time_iso_8601": "2024-04-11T15:38:58.627586Z",
            "url": "https://files.pythonhosted.org/packages/a4/aa/f5e9d2dc65fb6f28aec9dd7c02a2c99b5877b40e35fe4cf6482fa4f3166c/shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e94beef1bd6c63a0b13c433f0d3b2f74883c70d8dcfe34e13d8f058700ed4eb0",
                "md5": "8af45509ecbe29a382de2c2fc1b530ed",
                "sha256": "767a7fbb6ab5043754d55edda08945430e5e64858ab8ae6ef4a2e882728cc18e"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8af45509ecbe29a382de2c2fc1b530ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 65140,
            "upload_time": "2024-04-11T15:39:00",
            "upload_time_iso_8601": "2024-04-11T15:39:00.447475Z",
            "url": "https://files.pythonhosted.org/packages/e9/4b/eef1bd6c63a0b13c433f0d3b2f74883c70d8dcfe34e13d8f058700ed4eb0/shapelysmooth-0.2.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a89fe32f1119516e4cd9d639c41317f214f169f2c9f2102e62659ffcbbdef43",
                "md5": "7d957601ef1021086fa298f474bae485",
                "sha256": "5aaf0a9a5b479ecab6059cfb7ec6571d17aa0be745eb0a77119a7402df624302"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d957601ef1021086fa298f474bae485",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 69851,
            "upload_time": "2024-04-11T15:39:01",
            "upload_time_iso_8601": "2024-04-11T15:39:01.776917Z",
            "url": "https://files.pythonhosted.org/packages/5a/89/fe32f1119516e4cd9d639c41317f214f169f2c9f2102e62659ffcbbdef43/shapelysmooth-0.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7403e2957c8b5feda22600d6b15f62bf4ba4f28076c714e9260eee4b6a3b8d0",
                "md5": "15fc4f4c633dbc9f3cfd03b6eee63d7e",
                "sha256": "e854ab591d77da2c42a42efa65b5e41a5635fbd03d36c45f78ff5a6bd303d302"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "15fc4f4c633dbc9f3cfd03b6eee63d7e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 106732,
            "upload_time": "2024-04-11T15:39:03",
            "upload_time_iso_8601": "2024-04-11T15:39:03.304844Z",
            "url": "https://files.pythonhosted.org/packages/d7/40/3e2957c8b5feda22600d6b15f62bf4ba4f28076c714e9260eee4b6a3b8d0/shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38e2f4905fdd2c186ea966231f15a285b49072d57a24bd87348ab19f506df1e5",
                "md5": "fe485fa168eeaa99aed59d36b5fd41e7",
                "sha256": "9f3cecc50d9014a1293dde75623cb7cb9b7057f4412046199a204b2997213154"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe485fa168eeaa99aed59d36b5fd41e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 100901,
            "upload_time": "2024-04-11T15:39:05",
            "upload_time_iso_8601": "2024-04-11T15:39:05.305911Z",
            "url": "https://files.pythonhosted.org/packages/38/e2/f4905fdd2c186ea966231f15a285b49072d57a24bd87348ab19f506df1e5/shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f42465bccb7dc00f917cfb8599c8526bdf0fcfee695181aec96ca9285d914001",
                "md5": "93abc5ab37f6bec8006c354912f21fae",
                "sha256": "5908e5411dd580636335868f7ffbb1d17aad853007d1c51748301acd53fa3338"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "93abc5ab37f6bec8006c354912f21fae",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 64908,
            "upload_time": "2024-04-11T15:39:06",
            "upload_time_iso_8601": "2024-04-11T15:39:06.694881Z",
            "url": "https://files.pythonhosted.org/packages/f4/24/65bccb7dc00f917cfb8599c8526bdf0fcfee695181aec96ca9285d914001/shapelysmooth-0.2.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1acdeaba314644b1139603f470b1a510d0e64919b39c9b01b0c6e1efbe8f7d73",
                "md5": "224ed0b73e7436f3c551811aa8e62ae9",
                "sha256": "bfb5fd08b4ed0938ff0823cffc6a02a904e66fd1e11e44f1438c92c178233452"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "224ed0b73e7436f3c551811aa8e62ae9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 70224,
            "upload_time": "2024-04-11T15:39:07",
            "upload_time_iso_8601": "2024-04-11T15:39:07.832240Z",
            "url": "https://files.pythonhosted.org/packages/1a/cd/eaba314644b1139603f470b1a510d0e64919b39c9b01b0c6e1efbe8f7d73/shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d5d5628c19521fb3e23ec4338ba37f29d335a75fd97b326bf4586a339cc415c",
                "md5": "548f6903aa5fbf5a0bfa845fe7ecd52b",
                "sha256": "3d408c45e8964edd745d8bbdb072a4179696415f7bc5ccae9dcf93b1d3c8b4c7"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "548f6903aa5fbf5a0bfa845fe7ecd52b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 67131,
            "upload_time": "2024-04-11T15:39:08",
            "upload_time_iso_8601": "2024-04-11T15:39:08.933038Z",
            "url": "https://files.pythonhosted.org/packages/7d/5d/5628c19521fb3e23ec4338ba37f29d335a75fd97b326bf4586a339cc415c/shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90f720062d702357c39423735c785e463b569780e0082c44dde18b1f2e41208a",
                "md5": "80030ded508a91bff312ac7ab570402d",
                "sha256": "6840b03b2a940e114042b8509fab74e32c8ade4b283b9faff2e3a493dd38c172"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "80030ded508a91bff312ac7ab570402d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 106274,
            "upload_time": "2024-04-11T15:39:10",
            "upload_time_iso_8601": "2024-04-11T15:39:10.299466Z",
            "url": "https://files.pythonhosted.org/packages/90/f7/20062d702357c39423735c785e463b569780e0082c44dde18b1f2e41208a/shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38ebd1084ba18fa8142b94821a7779f939a36e804d538e1847425203bad2fce0",
                "md5": "784b89510ae91e697e6d4a21c8c42bff",
                "sha256": "55bf60268d9bef79ff6c807a72d61726b816448b6ada9601324d7938177fc8c4"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "784b89510ae91e697e6d4a21c8c42bff",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 100294,
            "upload_time": "2024-04-11T15:39:11",
            "upload_time_iso_8601": "2024-04-11T15:39:11.708071Z",
            "url": "https://files.pythonhosted.org/packages/38/eb/d1084ba18fa8142b94821a7779f939a36e804d538e1847425203bad2fce0/shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f445f4f986ac4fd4a80d2bffcdede9472d12092aea1a9cde5a0a7998537a1f5a",
                "md5": "2cc4a24771d878e18fcab70692c563ef",
                "sha256": "0cbdd91edff72f00601051844bdc8b38984f5830da89db94bb00f71514b6ba09"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2cc4a24771d878e18fcab70692c563ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 65166,
            "upload_time": "2024-04-11T15:39:12",
            "upload_time_iso_8601": "2024-04-11T15:39:12.857410Z",
            "url": "https://files.pythonhosted.org/packages/f4/45/f4f986ac4fd4a80d2bffcdede9472d12092aea1a9cde5a0a7998537a1f5a/shapelysmooth-0.2.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "415d589ae62b1b2ebc738975e22bffe2244ec2064050dd4de35ac1ef354b4ace",
                "md5": "c6c6f3a9f46645d2a1046f33f5a9248d",
                "sha256": "507cd8c5637391d095e02834b9d7224d7f50816812abc8fd3d98391ffad8c642"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6c6f3a9f46645d2a1046f33f5a9248d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 70201,
            "upload_time": "2024-04-11T15:39:14",
            "upload_time_iso_8601": "2024-04-11T15:39:14.010528Z",
            "url": "https://files.pythonhosted.org/packages/41/5d/589ae62b1b2ebc738975e22bffe2244ec2064050dd4de35ac1ef354b4ace/shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0a2942c785f2eb977631a283ce1cbfbcc1277aecf98c9f72cb1f55d70b2589f",
                "md5": "96ec6096a057228441888daeb9c14f6f",
                "sha256": "a959e29d0e5c0b0020bd0088721d4553bc15558ac931d2fc5c4bd0efc41339a9"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96ec6096a057228441888daeb9c14f6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 67073,
            "upload_time": "2024-04-11T15:39:15",
            "upload_time_iso_8601": "2024-04-11T15:39:15.141946Z",
            "url": "https://files.pythonhosted.org/packages/c0/a2/942c785f2eb977631a283ce1cbfbcc1277aecf98c9f72cb1f55d70b2589f/shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85e4154ad7c3cb86b79379c52598375f83d93e36d6fd4a572160bfc25a1fa87b",
                "md5": "2105641f1171b2a924c315c4f387e96c",
                "sha256": "5a9f229a4e1e0dba3acb1e1bd10cb3e38665d7f250ca7e166b525a8caa652a97"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2105641f1171b2a924c315c4f387e96c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 106303,
            "upload_time": "2024-04-11T15:39:16",
            "upload_time_iso_8601": "2024-04-11T15:39:16.450414Z",
            "url": "https://files.pythonhosted.org/packages/85/e4/154ad7c3cb86b79379c52598375f83d93e36d6fd4a572160bfc25a1fa87b/shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa41a0e940683b2d70d6ead7d9279302575e0adfc52ecf8b046ecd5d48c72972",
                "md5": "577a62bdc4d5f5fc2abfcf53dfff6ff5",
                "sha256": "76d9ed0ec165f27b8079b458e5f9c985d0eda107f3acac21e756f68968c43ba7"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "577a62bdc4d5f5fc2abfcf53dfff6ff5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 100461,
            "upload_time": "2024-04-11T15:39:18",
            "upload_time_iso_8601": "2024-04-11T15:39:18.093694Z",
            "url": "https://files.pythonhosted.org/packages/aa/41/a0e940683b2d70d6ead7d9279302575e0adfc52ecf8b046ecd5d48c72972/shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e827eb8f0f35c043c76e39cee9389cf525b6f41bed2cd58c302ed546cc41e4f5",
                "md5": "26023886a5614f9cb25a111c68efdfb8",
                "sha256": "91923e1907ebcf58c1c95ba0800e5f4024c7c4b316a2ba889d3cef37d9cd2856"
            },
            "downloads": -1,
            "filename": "shapelysmooth-0.2.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26023886a5614f9cb25a111c68efdfb8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 65198,
            "upload_time": "2024-04-11T15:39:20",
            "upload_time_iso_8601": "2024-04-11T15:39:20.521969Z",
            "url": "https://files.pythonhosted.org/packages/e8/27/eb8f0f35c043c76e39cee9389cf525b6f41bed2cd58c302ed546cc41e4f5/shapelysmooth-0.2.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 15:37:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "philipschall",
    "github_project": "shapelysmooth",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "shapelysmooth"
}
        
Elapsed time: 3.99675s