Skip to main content

Manipulation and analysis of geometric objects

Project description

Documentation 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.7.tar.gz (283.4 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

shapely-2.0.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

shapely-2.0.7-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

shapely-2.0.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shapely-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

shapely-2.0.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shapely-2.0.7-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

shapely-2.0.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shapely-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

shapely-2.0.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0.7-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.7-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

shapely-2.0.7-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.7-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.7-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0.7-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.7-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

shapely-2.0.7-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.7-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.7-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: shapely-2.0.7.tar.gz
  • Upload date:
  • Size: 283.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for shapely-2.0.7.tar.gz
Algorithm Hash digest
SHA256 28fe2997aab9a9dc026dc6a355d04e85841546b2a5d232ed953e3321ab958ee5
MD5 dc1f4d6c570fd3273d1084af63f558c4
BLAKE2b-256 21c0a911d1fd765d07a2b6769ce155219a281bfbe311584ebe97340d75c5bdb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aaaf5f7e6cc234c1793f2a2760da464b604584fb58c6b6d7d94144fd2692d67e
MD5 1cb9e23166ce79d59310dd984187d947
BLAKE2b-256 d71e6461e5cfc8e73ae165b8cff6eb26a4d65274fad0e1435137c5ba34fe4e88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a7f04691ce1c7ed974c2f8b34a1fe4c3c5dfe33128eae886aa32d730f1ec1913
MD5 fdc0e3beaca1910a266c5640033a476b
BLAKE2b-256 87542344ce7da39676adec94e84fbaba92a8f1664e4ae2d33bd404dafcbe607f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adeddfb1e22c20548e840403e5e0b3d9dc3daf66f05fa59f1fcf5b5f664f0e98
MD5 b556d11e6f102fefe2d921fe868caf37
BLAKE2b-256 f58a2545cc2a30afc63fc6176c1da3b76af28ef9c7358ed4f68f7c6a9d86cf5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d6dbf096f961ca6bec5640e22e65ccdec11e676344e8157fe7d636e7904fd36
MD5 0fdba1539c8254122b79064d509e7a7e
BLAKE2b-256 6747f934fe2b70d31bb9774ad4376e34f81666deed6b811306ff574faa3d115e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06ff6020949b44baa8fc2e5e57e0f3d09486cd5c33b47d669f847c54136e7027
MD5 233511dcd9ffa7845d98270ab7073683
BLAKE2b-256 d971af688798da36fe355a6e6ffe1d4628449cb5fa131d57fc169bcb614aeee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a0c09e3e02f948631c7763b4fd3dd175bc45303a0ae04b000856dedebefe13cb
MD5 fa9a5c7c670c57fe39fd9752751a596e
BLAKE2b-256 c621abea43effbfe11f792e44409ee9ad7635aa93ef1c8ada0ef59b3c1c3abad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f86e2c0259fe598c4532acfcf638c1f520fa77c1275912bbc958faecbf00b108
MD5 98a3889508e41fc9689e42fcb691b3cb
BLAKE2b-256 63058a1c279c226d6ad7604d9e237713dd21788eab96db97bf4ce0ea565e5596

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6bca5095e86be9d4ef3cb52d56bdd66df63ff111d580855cb8546f06c3c907cd
MD5 1e30c326fe9abf3c4798e685c705be01
BLAKE2b-256 9664faf0413ebc7a84fe7a0790bf39ec0b02b40132b68e57aba985c0b6e4e7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9469f49ff873ef566864cb3516091881f217b5d231c8164f7883990eec88b73
MD5 e51ab9a14436493bb3a2d1872fe1ecd5
BLAKE2b-256 62de8dbd7df60eb23cb983bb698aac982944b3d602ef0ce877a940c269eae34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73c9ae8cf443187d784d57202199bf9fd2d4bb7d5521fe8926ba40db1bc33e8e
MD5 b08bf2b4f0e9c4a7be0189e694e23793
BLAKE2b-256 fdddb35d7891d25cc11066a70fb8d8169a6a7fca0735dd9b4d563a84684969a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aed1c6764f51011d69a679fdf6b57e691371ae49ebe28c3edb5486537ffbd51
MD5 2ce2bf4a1465f330c07d898b3aac61a9
BLAKE2b-256 ce53c6a3487716fd32e1f813d2a9608ba7b72a8a52a6966e31c6443480a1d016

See more details on using hashes here.

File details

Details for the file shapely-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c2b9859424facbafa54f4a19b625a752ff958ab49e01bc695f254f7db1835fa
MD5 dc8a416e484acda4a91a59be56094f94
BLAKE2b-256 4f3eea100eec5811bafd0175eb21828a3be5b0960f65250f4474391868be7c0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b52f3ab845d32dfd20afba86675c91919a622f4627182daec64974db9b0b4608
MD5 e88ac0436b3d96dc11b4d01a3357c689
BLAKE2b-256 27578ec7c62012bed06731f7ee979da7f207bbc4b27feed5f36680b6a70df54f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f6e4759cf680a0f00a54234902415f2fa5fe02f6b05546c662654001f0793a2
MD5 1faa83c797d27a63734f493e2d05ef5f
BLAKE2b-256 dc4ee1d608773c7fe4cde36d48903c0d6298e3233dc69412403783ac03fa5205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6d95703efaa64aaabf278ced641b888fc23d9c6dd71f8215091afd8a26a66e3
MD5 e3f2aa69abfcf821b66484aa7696eea8
BLAKE2b-256 0ba52c8dbb0f383519771df19164e3bf3a8895d195d2edeab4b6040f176ee28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f623b64bb219d62014781120f47499a7adc30cf7787e24b659e56651ceebcb0
MD5 72ec333f6e89955431168529fe189354
BLAKE2b-256 fe6777851dd17738bbe7762a0ef1acf7bc499d756f68600dd68a987d78229412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8f1da01c04527f7da59ee3755d8ee112cd8967c15fab9e43bba936b81e2a013
MD5 38ae0620dc63f07d9d9a14d9403b42ea
BLAKE2b-256 1563eef4f180f1b5859c70e7f91d2f2570643e5c61e7d7c40743d15f8c6cbc42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cf23400cb25deccf48c56a7cdda8197ae66c0e9097fcdd122ac2007e320bc34
MD5 1ca658f38261c2ef56cc0b331d5d8e79
BLAKE2b-256 1dad21798c2fec013e289f8ab91d42d4d3299c315b8c4460c08c75fef0901713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35524cc8d40ee4752520819f9894b9f28ba339a42d4922e92c99b148bed3be39
MD5 b6cc1ef294ce5701dc7786e5ce9fc4bf
BLAKE2b-256 fed18df43f94cf4cda0edbab4545f7cdd67d3f1d02910eaff152f9f45c6d00d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e97104d28e60b69f9b6a957c4d3a2a893b27525bc1fc96b47b3ccef46726bf2
MD5 3b901eaa3b800a7f14340c3b5e5c6f53
BLAKE2b-256 5db9fc63d6b0b25063a3ff806857a5dc88851d54d1c278288f18cef1b322b449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04a65d882456e13c8b417562c36324c0cd1e5915f3c18ad516bb32ee3f5fc895
MD5 67bcb4add426f24e092694a45bb86d2b
BLAKE2b-256 d6f3c9cc07a7a03b5f5e83bd059f9adf3e21cf086b0e41d7f95e6464b151e798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf6c50cd879831955ac47af9c907ce0310245f9d162e298703f82e1785e38c98
MD5 2a74ef226d81cccdb5b43e982c1f2c49
BLAKE2b-256 b3f940473fcb5b66ff849e563ca523d2a26dafd6957d52dd876ffd0eded39f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f44eda8bd7a4bccb0f281264b34bf3518d8c4c9a8ffe69a1a05dabf6e8461147
MD5 24bb780f92b7412b2ebf7ebf59699c98
BLAKE2b-256 8769b54a08bcd25e561bdd5183c008ace4424c25e80506e80674032504800efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33fb10e50b16113714ae40adccf7670379e9ccf5b7a41d0002046ba2b8f0f691
MD5 61c52723aa6914dfc203b251a5ebc535
BLAKE2b-256 152e02c694d6ddacd4f13b625722d313d2838f23c5b988cbc680132983f73ce3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a3fb7fbae257e1b042f440289ee7235d03f433ea880e73e687f108d044b24db5
MD5 cda989b72a1d28b3c528d4a600d11ceb
BLAKE2b-256 7b954d164c2fcb19c51e50537aafb99ecfda82f62356bfdb6f4ca620a3932bad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 98697c842d5c221408ba8aa573d4f49caef4831e9bc6b6e785ce38aca42d1999
MD5 e1f7a653280e09594a4b9eaf990152e2
BLAKE2b-256 13b8edaf33dfb97e281d9de3871810de131b01e4f33d38d8f613515abc89d91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0145387565fcf8f7c028b073c802956431308da933ef41d08b1693de49990d27
MD5 d35d4b7be106c03c14019c949915f8f8
BLAKE2b-256 abf0befc440a6c90c577300f5f84361bad80919e7c7ac381ae4960ce3195cedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7977d8a39c4cf0e06247cd2dca695ad4e020b81981d4c82152c996346cf1094b
MD5 398e0b1be70dead5f431bc531b460df5
BLAKE2b-256 e522f6b074b08748d6f6afedd79f707d7eb88b79fa0121369246c25bbc721776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd0e75d9124b73e06a42bf1615ad3d7d805f66871aa94538c3a9b7871d620013
MD5 96b58096492f423db7ee131e7314e82d
BLAKE2b-256 53ea70fec89a9f6fa84a8bf6bd2807111a9175cee22a3df24470965acdd5fb74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4abeb44b3b946236e4e1a1b3d2a0987fb4d8a63bfb3fdefb8a19d142b72001e5
MD5 1acfb933da904fc27c3b3dda1d978c79
BLAKE2b-256 addedc856cf99a981b83aa041d1a240a65b36618657d5145d1c0c7ffb4263d5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ae5cb6b645ac3fba34ad84b32fbdccb2ab321facb461954925bde807a0d3b74
MD5 4dbcfd008b622d1f4278ea64c3b3148a
BLAKE2b-256 7c54c1b7ca8286df3ba767a99e8c706ae2e793b7e443c474b0840f3b3f10d09a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2e4a1749ad64bc6e7668c8f2f9479029f079991f4ae3cb9e6b25440e35a4b532
MD5 2a3ce8318b1074a12d16c6c87c2c6412
BLAKE2b-256 b4759a98ca8cbf9d4b08b60c8d3e17a7bb31cebd74e4b170ec84cd16d1d7e000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2934834c7f417aeb7cba3b0d9b4441a76ebcecf9ea6e80b455c33c7c62d96a24
MD5 395be23398431702485894a4b2562fcc
BLAKE2b-256 9adde40b2bef35e21d788ecd64ea711ec2d909529f6c1e006c1f5e97b3c9bed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e9fed9a7d6451979d914cb6ebbb218b4b4e77c0d50da23e23d8327948662611
MD5 dc87a6705c9500995f62162f14435a61
BLAKE2b-256 03098d305e181260a1adbe79ed7a209e1bdd5abad5f896a333bb93a0031e7e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3697bd078b4459f5a1781015854ef5ea5d824dbf95282d0b60bfad6ff83ec8dc
MD5 28bf231eb93fb5c392b1ca3ec8604553
BLAKE2b-256 ada58ef2740f26be8a5fec518d46219502ba4e678e868b0e2c613581ac657d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1c4f1071fe9c09af077a69b6c75f17feb473caeea0c3579b3e94834efcbdc36
MD5 b318c8ca5b40f7c31c44862a604c32a1
BLAKE2b-256 d58a22f7c2734b8e61c754fd7f7fceb9a1a8689b9298245d08e59b43cccb09b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.7-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/6.1.0 CPython/3.11.9

File hashes

Hashes for shapely-2.0.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1a2e03277128e62f9a49a58eb7eb813fa9b343925fca5e7d631d50f4c0e8e0b8
MD5 e1572fdf6d7436dd0bd04beec301be5c
BLAKE2b-256 e53aa725c7e7b48683d529119eaa156f1e361639b2e79b4e9280900d3d65d919

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 25085a30a2462cee4e850a6e3fb37431cbbe4ad51cbcc163af0cea1eaa9eb96d
MD5 74475e177c75a986a333f6853f971c4f
BLAKE2b-256 22559dc5538b3311978639c52e1b03eed05cb41e3f23dd525b88039f30470af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd37d65519b3f8ed8976fa4302a2827cbb96e0a461a2e504db583b08a22f0b98
MD5 0080aa13ec47c462e60b579eec6af866
BLAKE2b-256 b1ee834c24687d14123d7d94a4716154148d3710454dd36a9a8d0df8d15fe999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc19b78cc966db195024d8011649b4e22812f805dd49264323980715ab80accc
MD5 1c86331727b6791728a5610946edd906
BLAKE2b-256 d73d80702d2f87e94d797e10fcde51f4176d0821557b0207ee9d6412cec4369e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19cbc8808efe87a71150e785b71d8a0e614751464e21fb679d97e274eca7bd43
MD5 c8c8e4038635d217f3b39d750a52fddc
BLAKE2b-256 46bcc338d81c1c1c35b47a23fac18739d82b14799be74ae07d10f626a0de0868

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page