Skip to main content

Manipulation and analysis of geometric objects

Project description

Documentation Status Travis CI status PyPI Anaconda

Manipulation and analysis of geometric objects in the Cartesian plane.

https://c2.staticflickr.com/6/5560/31301790086_b3472ea4e9_c.jpg

Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is using the widely deployed open-source geometry library GEOS (the engine of PostGIS, and a port of JTS). Shapely wraps GEOS geometries and operations to provide both a feature rich Geometry interface for singular (scalar) geometries and higher-performance NumPy ufuncs for operations using arrays of geometries. Shapely is not primarily focused on data serialization formats or coordinate systems, but can be readily integrated with packages that are.

What is a ufunc?

A universal function (or ufunc for short) is a function that operates on n-dimensional arrays on an element-by-element fashion and supports array broadcasting. The underlying for loops are implemented in C to reduce the overhead of the Python interpreter.

Multithreading

Shapely functions generally support multithreading by releasing the Global Interpreter Lock (GIL) during execution. Normally in Python, the GIL prevents multiple threads from computing at the same time. Shapely functions internally release this constraint so that the heavy lifting done by GEOS can be done in parallel, from a single Python process.

Usage

Here is the canonical example of building an approximately circular patch by buffering a point, using the scalar Geometry interface:

>>> from shapely import Point
>>> patch = Point(0.0, 0.0).buffer(10.0)
>>> patch
<POLYGON ((10 0, 9.952 -0.98, 9.808 -1.951, 9.569 -2.903, 9.239 -3.827, 8.81...>
>>> patch.area
313.6548490545941

Using the vectorized ufunc interface (instead of using a manual for loop), compare an array of points with a polygon:

>>> import shapely
>>> import numpy as np
>>> geoms = np.array([Point(0, 0), Point(1, 1), Point(2, 2)])
>>> polygon = shapely.box(0, 0, 2, 2)

>>> shapely.contains(polygon, geoms)
array([False,  True, False])

See the documentation for more examples and guidance: https://shapely.readthedocs.io

Requirements

Shapely 2.0 requires

  • Python >=3.7

  • GEOS >=3.5

  • NumPy >=1.14

Installing Shapely

We recommend installing Shapely using one of the available built distributions, for example using pip or conda:

$ pip install shapely
# or using conda
$ conda install shapely --channel conda-forge

See the installation documentation for more details and advanced installation instructions.

Integration

Shapely does not read or write data files, but it can serialize and deserialize using several well known formats and protocols. The shapely.wkb and shapely.wkt modules provide dumpers and loaders inspired by Python’s pickle module.

>>> from shapely.wkt import dumps, loads
>>> dumps(loads('POINT (0 0)'))
'POINT (0.0000000000000000 0.0000000000000000)'

Shapely can also integrate with other Python GIS packages using GeoJSON-like dicts.

>>> import json
>>> from shapely.geometry import mapping, shape
>>> s = shape(json.loads('{"type": "Point", "coordinates": [0.0, 0.0]}'))
>>> s
<POINT (0 0)>
>>> print(json.dumps(mapping(s)))
{"type": "Point", "coordinates": [0.0, 0.0]}

Support

Questions about using Shapely may be asked on the GIS StackExchange using the “shapely” tag.

Bugs may be reported at https://github.com/shapely/shapely/issues.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shapely-2.0.6.tar.gz (282.4 kB view details)

Uploaded Source

Built Distributions

shapely-2.0.6-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13 Windows x86-64

shapely-2.0.6-cp313-cp313-win32.whl (1.3 MB view details)

Uploaded CPython 3.13 Windows x86

shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

shapely-2.0.6-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86-64

shapely-2.0.6-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12 Windows x86

shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

shapely-2.0.6-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

shapely-2.0.6-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86

shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapely-2.0.6-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

shapely-2.0.6-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86

shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapely-2.0.6-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

shapely-2.0.6-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86

shapely-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapely-2.0.6-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

shapely-2.0.6-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

shapely-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

shapely-2.0.6-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

shapely-2.0.6-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

shapely-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

shapely-2.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

shapely-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file shapely-2.0.6.tar.gz.

File metadata

  • Download URL: shapely-2.0.6.tar.gz
  • Upload date:
  • Size: 282.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6.tar.gz
Algorithm Hash digest
SHA256 997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6
MD5 dcba063f67440195013c65dc699c26c5
BLAKE2b-256 4a890d20bac88016be35ff7d3c0c2ae64b477908f1b1dfa540c5d69ac7af07fe

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2
MD5 ba5a0473c0d90fb3af8410df9a1061b3
BLAKE2b-256 23382bc32dd1e7e67a471d4c60971e66df0bdace88656c47a9a728ace0091075

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a
MD5 220022fe13ab9fdf741d28a0cf39cc4d
BLAKE2b-256 f61da8c0e9ab49ff2f8e4dedd71b0122eafb22a18ad7e9d256025e1f10c84704

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805
MD5 27020bc62c428d51cb882bdadd5c11e3
BLAKE2b-256 afb0f8169f77eac7392d41e231911e0095eb1148b4d40c50ea9e34d999c89a7e

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381
MD5 86e071ef9e3e794951bfa3de7b53719e
BLAKE2b-256 cfdc790d4bda27d196cd56ec66975eaae3351c65614cafd0e16ddde39ec9fb92

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7
MD5 c4eac62030153c487803829892dd58c3
BLAKE2b-256 cee29fba7ac142f7831757a10852bfa465683724eadbc93d2d46f74a16f9af04

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013
MD5 ea0a54203012feca6388d7dd454c7849
BLAKE2b-256 34e8d164ef5b0eab86088cde06dee8415519ffd5bb0dd1bd9d021e640e64237c

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48
MD5 d7d22471eee594e719499c1c0b0fe75e
BLAKE2b-256 7bb3857afd9dfbfc554f10d683ac412eac6fa260d1f4cd2967ecb655c57e831a

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f
MD5 041e9b42748a0269ab8220c72b870b4f
BLAKE2b-256 6d0af407509ab56825f39bf8cfce1fb410238da96cf096809c3e404e5bc71ea1

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726
MD5 df5144b3a5307fedd2144d3912f7ca42
BLAKE2b-256 d57d9a57e187cbf2fbbbdfd4044a4f9ce141c8d221f9963750d3b001f0ec080d

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8
MD5 feaac149ec7ff5265b963f5b18710a2b
BLAKE2b-256 88a21be1db4fc262e536465a52d4f19d85834724fedf2299a1b9836bc82fe8fa

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3
MD5 39efe932c98c01cd10a59c3377a09c48
BLAKE2b-256 68535efa6e7a4036a94fe6276cf7bbb298afded51ca3396b03981ad680c8cc7d

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0
MD5 c76b56bb06a3d8d4f03d90d03e2e94a4
BLAKE2b-256 4677efd9f9d4b6a762f976f8b082f54c9be16f63050389500fb52e4f6cc07c1a

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b
MD5 281346cae3e28d248ce31d5dd4d4b5cc
BLAKE2b-256 b15a6a67d929c467a1973b6bb9f0b00159cc343b02bf9a8d26db1abd2f87aa23

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d
MD5 94b113702c58f02dae3a2a45ce494aa2
BLAKE2b-256 64640c7b0a22b416d36f6296b92bb4219d82b53d0a7c47e16fd0a4c85f2f117c

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0
MD5 ef505fb90e00e1e774f34a6e19bdb3ba
BLAKE2b-256 25aa53f145e5a610a49af9ac49f2f1be1ec8659ebd5c393d66ac94e57c83b00e

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855
MD5 6a823ad78b6e848aa2f8e5e03a3249b6
BLAKE2b-256 6e5ad019f69449329dcd517355444fdb9ddd58bec5e080b8bdba007e8e4c546d

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2
MD5 357f58865f6e2a1516c02956eb4de8d2
BLAKE2b-256 3763e182e43081fffa0a2d970c480f2ef91647a6ab94098f61748c23c2a485f2

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e
MD5 5fb597942d09d1de64513fe126d97d1d
BLAKE2b-256 3715269d8e1f7f658a37e61f7028683c546f520e4e7cedba1e32c77ff9d3a3c7

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28f87cdf5308a514763a5c38de295544cb27429cfa655d50ed8431a4796090c4
MD5 5207028a16426e3ce6520f0d21d2e905
BLAKE2b-256 cd4c6f4a6fc085e3be01c4c9de0117a2d373bf9fec5f0426cf4d5c94090a5a4d

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ec3a0eab496b5e04633a39fa3d5eb5454628228201fb24903d38174ee34565e
MD5 5c288ee0f88615716a120d06aafb4543
BLAKE2b-256 8cbee448681dc485f2931d4adee93d531fce93608a3ee59433303cc1a46e21a5

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3304883bd82d44be1b27a9d17f1167fda8c7f5a02a897958d86c59ec69b705e
MD5 4edb0e22159232d2e03267fd0b788dfb
BLAKE2b-256 2ba6302e0d9c210ccf4d1ffadf7ab941797d3255dcd5f93daa73aaf116a4db39

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ad2fae12dca8d2b727fa12b007e46fbc522148a584f5d6546c539f3464dccde
MD5 7863899c4e89fb94ec512437459da275
BLAKE2b-256 af096374c11cb493a9970e8c04d7be25f578a37f6494a2fecfbed3a447b16b2c

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1c84c3f53144febf6af909d6b581bc05e8785d57e27f35ebaa5c1ab9baba13b
MD5 b4e25a569ac3b2de9c8bc8e37b3ae460
BLAKE2b-256 0310bd6edb66ed0a845f0809f7ce653596f6fd9c6be675b3653872f47bf49f82

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29a34e068da2d321e926b5073539fd2a1d4429a2c656bd63f0bd4c8f5b236d0b
MD5 f21ddbf6362d6b388af9c3eb3c0d36f0
BLAKE2b-256 17d4f84bbbdb7771f5b9ade94db2398b256cf1471f1eb0ca8afbe0f6ca725d5a

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b542d7f1dbb89192d3512c52b679c822ba916f93479fa5d4fc2fe4fa0b3c9e8
MD5 e68bf89d9030609b967cc9cbf076dd09
BLAKE2b-256 a7680e4b9aab76d2b7f44013dc98aa16c7f9e33dd1b34088140fb15664967e8b

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 44246d30124a4f1a638a7d5419149959532b99dfa25b54393512e6acc9c211ac
MD5 c5f03c0f76d68282024588b221e562bd
BLAKE2b-256 42dd2a039361d249dc84f0470173356c36d74516fe2978dfdde98197618f4e5c

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b02154b3e9d076a29a8513dffcb80f047a5ea63c897c0cd3d3679f29363cf7e5
MD5 04b9d32743563b4fa9a02e742626cd2b
BLAKE2b-256 a5b26a4589439880244f86c1d3061efd91faf8ec21e646df18730810b6d59481

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7060566bc4888b0c8ed14b5d57df8a0ead5c28f9b69fb6bed4476df31c51b0af
MD5 84194a61aa302e86ed83695f40141d0e
BLAKE2b-256 76896be88c828e2c671dfdd5b0c875d08c8573c6f1bac759f297b166e0b2c64c

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eba5bae271d523c938274c61658ebc34de6c4b33fdf43ef7e938b5776388c1be
MD5 564b3ff630c288ebd1d4d2dbc9d73154
BLAKE2b-256 bcf55dfd13e90fe881560b4b1196e47fab48d6469c33d0b78d0f57a5e10bd409

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 392f66f458a0a2c706254f473290418236e52aa4c9b476a072539d63a2460595
MD5 4cbe1b98028199e7cf2b8870a6b8e67c
BLAKE2b-256 9d6f19fda412323f512e21b8888523596177070bca29a80d1b70f4b6a5e7869f

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a82d58a1134d5e975f19268710e53bddd9c473743356c90d97ce04b73e101ee
MD5 05a2b85ed4043742918d56cb54e9e74b
BLAKE2b-256 ed12f1518b49e1e34b49a1d33577e6fe04c0682e2cded33e21ba2ef2752137b9

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2de00c3bfa80d6750832bde1d9487e302a6dd21d90cb2f210515cefdb616e5f5
MD5 76ac3212631c0051c19c87ba9299fec1
BLAKE2b-256 759b5bc6960fba2f4ab629f2dcf5c68185793e143e14a9aa8773a7b103076510

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2423f6c0903ebe5df6d32e0066b3d94029aab18425ad4b07bf98c3972a6e25a1
MD5 2f343538657ccaae7a51d99a6796ca6f
BLAKE2b-256 ada07d303b58cdfd01e6c49278e0c969b2023ccbc0698316c478decd9ad863ed

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bbc783529a21f2bd50c79cef90761f72d41c45622b3e57acf78d984c50a5d13
MD5 32c6fcf524ebd9c0119b80e7afb3c298
BLAKE2b-256 d97ce2e4b6eace75fad4349b8834f67672574888636d1520396d9274c9dc1d9e

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b3b818c4407eaa0b4cb376fd2305e20ff6df757bf1356651589eadc14aab41b
MD5 257a37c0b8a02db1fd63965efd129816
BLAKE2b-256 27f792feb389e40fc4d64ec160523ed9a0a9115517880abbc6c8a308e7da87b1

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6d88ade96bf02f6bfd667ddd3626913098e243e419a0325ebef2bbd481d1eb6
MD5 f69b5d762451f489ce3d6f9c07a49426
BLAKE2b-256 39ecc5c62e98155a89e3bdd1cd14bfe9c504b1ab2c18a0431f4ddf1ea2f10a5b

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 837d395fac58aa01aa544495b97940995211e3e25f9aaf87bc3ba5b3a8cd1ac7
MD5 7a7e445fd47b829d04283d00474a1d9b
BLAKE2b-256 194140aa902cf93445ecefea2d1735aa07b837c8dceefd6fc70f206898803d28

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp37-cp37m-win32.whl.

File metadata

  • Download URL: shapely-2.0.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for shapely-2.0.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fbb7bf02a7542dba55129062570211cfb0defa05386409b3e306c39612e7fbcc
MD5 7daaecf491d1e08d1d6afe2a43d5e8ae
BLAKE2b-256 447353df153659d509ddf23ba377799125fe6fc0ff8f7d547eb0b9d441c347f8

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81d9dfe155f371f78c8d895a7b7f323bb241fb148d848a2bf2244f79213123fe
MD5 3f746a54577b82db80c3176b0867fafc
BLAKE2b-256 c22cade19c9907885c5481ecff0b2f6c383099c9b5ca86278fbed2d89374a6cc

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed5867e598a9e8ac3291da6cc9baa62ca25706eea186117034e8ec0ea4355653
MD5 3d6db8c501f9843ac3260650a6abd7d3
BLAKE2b-256 cf10b7e2c7354d36dc572f6da8b157ffb7c2c4cb8d9801cb270436fc278c0a75

See more details on using hashes here.

File details

Details for the file shapely-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa7468e4f5b92049c0f36d63c3e309f85f2775752e076378e36c6387245c5462
MD5 c77526ee77edcdbcf7bfd86a9730c6a8
BLAKE2b-256 32f58bddb8a944866eb1e250e31db096178f02cd9e9774b2da1853e519b456e1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page