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.1 requires

  • Python >=3.10

  • GEOS >=3.9

  • NumPy >=1.21

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

Uploaded Source

Built Distributions

shapely-2.1.1-cp313-cp313t-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13tWindows x86-64

shapely-2.1.1-cp313-cp313t-win32.whl (1.5 MB view details)

Uploaded CPython 3.13tWindows x86

shapely-2.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

shapely-2.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

shapely-2.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

shapely-2.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

shapely-2.1.1-cp313-cp313t-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

shapely-2.1.1-cp313-cp313t-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

shapely-2.1.1-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

shapely-2.1.1-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

shapely-2.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

shapely-2.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

shapely-2.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

shapely-2.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

shapely-2.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

shapely-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

shapely-2.1.1-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

shapely-2.1.1-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

shapely-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

shapely-2.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

shapely-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

shapely-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

shapely-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

shapely-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

shapely-2.1.1-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

shapely-2.1.1-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

shapely-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

shapely-2.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

shapely-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

shapely-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

shapely-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

shapely-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

shapely-2.1.1-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

shapely-2.1.1-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

shapely-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

shapely-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

shapely-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

shapely-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

shapely-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

shapely-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for shapely-2.1.1.tar.gz
Algorithm Hash digest
SHA256 500621967f2ffe9642454808009044c21e5b35db89ce69f8a2042c2ffd0e2772
MD5 b8c9d0ede04565cf37ffb17cffd9f8c2
BLAKE2b-256 ca3c2da625233f4e605155926566c0e7ea8dda361877f48e8b1655e53456f252

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: shapely-2.1.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8cb8f17c377260452e9d7720eeaf59082c5f8ea48cf104524d953e5d36d4bdb7
MD5 bdc02565be221f9d6104677b59f35f42
BLAKE2b-256 eaf15e9b3ba5c7aa7ebfaf269657e728067d16a7c99401c7973ddf5f0cf121bd

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: shapely-2.1.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ef2d09d5a964cc90c2c18b03566cf918a61c248596998a0301d5b632beadb9db
MD5 3a1aff904705902e10396e88bfeaf55a
BLAKE2b-256 336a27036a5a560b80012a544366bceafd491e8abb94a8db14047b5346b5a749

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69e08bf9697c1b73ec6aa70437db922bafcea7baca131c90c26d59491a9760f9
MD5 476b189acba908f5dfefdbd49cdebd94
BLAKE2b-256 93c920ca4afeb572763b07a7997f00854cb9499df6af85929e93012b189d8917

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b640e390dabde790e3fb947198b466e63223e0a9ccd787da5f07bcb14756c28d
MD5 8d7515991f17c288b85fbe77a24b0451
BLAKE2b-256 b9bf0619f37ceec6b924d84427c88835b61f27f43560239936ff88915c37da19

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d14a9afa5fa980fbe7bf63706fdfb8ff588f638f145a1d9dbc18374b5b7de913
MD5 8446df142f760147e0485eff8cd4e5f9
BLAKE2b-256 ee5336f1b1de1dfafd1b457dcbafa785b298ce1b8a3e7026b79619e708a245d5

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb00070b4c4860f6743c600285109c273cca5241e970ad56bb87bef0be1ea3a0
MD5 a8f5291e4235e257e2ca06c260a5e12a
BLAKE2b-256 ab780053aea449bb1d4503999525fec6232f049abcdc8df60d290416110de943

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ecf6c196b896e8f1360cc219ed4eee1c1e5f5883e505d449f263bd053fb8c05
MD5 9cde6dac6327a14fc8e7deff8a264b65
BLAKE2b-256 ceca8e6f59be0718893eb3e478141285796a923636dc8f086f83e5b0ec0036d0

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0c062384316a47f776305ed2fa22182717508ffdeb4a56d0ff4087a77b2a0f6d
MD5 181296108cadf8b1c129d74c7b649c19
BLAKE2b-256 6036b1452e3e7f35f5f6454d96f3be6e2bb87082720ff6c9437ecc215fa79be0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab8d878687b438a2f4c138ed1a80941c6ab0029e0f4c785ecfe114413b498a97
MD5 e8ff303d84adf9501b527d4ab7b31bfa
BLAKE2b-256 12d96d13b8957a17c95794f0c4dfb65ecd0957e6c7131a56ce18d135c1107a52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd9130501bf42ffb7e0695b9ea17a27ae8ce68d50b56b6941c7f9b3d3453bc52
MD5 44bc2a8269ef64300e5a431440e11e4d
BLAKE2b-256 bc4d9fea036eff2ef4059d30247128b2d67aaa5f0b25e9fc27e1d15cc1b84704

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ca74d851ca5264aae16c2b47e96735579686cb69fa93c4078070a0ec845b8d8
MD5 8123e4f623cbaec8e329614e20a11b41
BLAKE2b-256 ef597605289a95a6844056a2017ab36d9b0cb9d6a3c3b5317c1f968c193031c9

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04e4c12a45a1d70aeb266618d8cf81a2de9c4df511b63e105b90bfdfb52146de
MD5 774b4cc601be741b75c2042a7f114be5
BLAKE2b-256 1dfef4a03d81abd96a6ce31c49cd8aaba970eaaa98e191bd1e4d43041e57ae5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5ce6a5cc52c974b291237a96c08c5592e50f066871704fb5b12be2639d9026a
MD5 3a2335c03e1caea2ce83edea22a3b6c1
BLAKE2b-256 dd871017c31e52370b2b79e4d29e07cbb590ab9e5e58cf7e2bdfe363765d6251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21fcab88b7520820ec16d09d6bea68652ca13993c84dffc6129dc3607c95594c
MD5 8655bfa7b891e17033d606cfd38748a0
BLAKE2b-256 5b7e6d28b43d53fea56de69c744e34c2b999ed4042f7a811dc1bceb876071c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1415146fa12d80a47d13cfad5310b3c8b9c2aa8c14a0c845c9d3d75e77cb54f6
MD5 7ffbe6dd7aaffa5a1ea6b3a062f6eaa6
BLAKE2b-256 12a212c7cae5b62d5d851c2db836eadd0986f63918a91976495861f7c492f4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3004a644d9e89e26c20286d5fdc10f41b1744c48ce910bd1867fdff963fe6c48
MD5 57461bab97fdf04c4193081bddda1f2a
BLAKE2b-256 718e2bc836437f4b84d62efc1faddce0d4e023a5d990bbddd3c78b2004ebc246

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13d643256f81d55a50013eff6321142781cf777eb6a9e207c2c9e6315ba6044a
MD5 f7c9ae439b159b7e9f7497d267206938
BLAKE2b-256 bce9a4560e12b9338842a1f82c9016d2543eaa084fce30a1ca11991143086b57

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39dca52201e02996df02e447f729da97cfb6ff41a03cb50f5547f19d02905af8
MD5 7bce05a2c74dca61196c0b043b5d47d2
BLAKE2b-256 bd059a68f27fc6110baeedeeebc14fd86e73fa38738c5b741302408fb6355577

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b96cea171b3d7f6786976a0520f178c42792897653ecca0c5422fb1e6946e6d
MD5 7e2a25fe7f7d50197876b167bd3e58eb
BLAKE2b-256 1550d3b4e15fefc103a0eb13d83bad5f65cd6e07a5d8b2ae920e767932a247d1

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e2b9125ebfbc28ecf5353511de62f75a8515ae9470521c9a693e4bb9fbe0cf1
MD5 28258e005ea1c9f0331788629ba24970
BLAKE2b-256 f1440c21e7717c243e067c9ef8fa9126de24239f8345a5bba9280f7bb9935959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 872d3c0a7b8b37da0e23d80496ec5973c4692920b90de9f502b5beb994bbaaef
MD5 488e7ca849d5a9ecb5c5f6c3029eb631
BLAKE2b-256 1f1e83ec268ab8254a446b4178b45616ab5822d7b9d2b7eb6e27cf0b82f45601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78dec4d4fbe7b1db8dc36de3031767e7ece5911fb7782bc9e95c5cdec58fb1e9
MD5 c24eefa07625b4cdc07eeef1889b21d1
BLAKE2b-256 034661e03edba81de729f09d880ce7ae5c1af873a0814206bbfb4402ab5c3388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9c551f7fa7f1e917af2347fe983f21f212863f1d04f08eece01e9c275903fad
MD5 4557e16440523667552ea300ba9e719b
BLAKE2b-256 07aafb5f545e72e89b6a0f04a0effda144f5be956c9c312c7d4e00dfddbddbcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2827365b58bf98efb60affc94a8e01c56dd1995a80aabe4b701465d86dcbba43
MD5 c6d5e63668d6ea633329e37eab75071b
BLAKE2b-256 fb649544dc07dfe80a2d489060791300827c941c451e2910f7364b19607ea352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20a9d79958b3d6c70d8a886b250047ea32ff40489d7abb47d01498c704557a93
MD5 15c719439742b0d4428a897db88a0d6c
BLAKE2b-256 935b842022c00fbb051083c1c85430f3bb55565b7fd2d775f4f398c0ba8052ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4866de2673a971820c75c0167b1f1cd8fb76f2d641101c23d3ca021ad0449bab
MD5 46568ba8bb11e46a2b863bcfd77a17bf
BLAKE2b-256 d438150dd245beab179ec0d4472bf6799bf18f21b1efbef59ac87de3377dbf1c

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9a531c48f289ba355e37b134e98e28c557ff13965d4653a5228d0f42a09aed0
MD5 5c39b3d986c6e39af281a1e70258b573
BLAKE2b-256 a31aad696648f16fd82dd6bfcca0b3b8fbafa7aacc13431c7fc4c9b49e481681

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9878b9e37ad26c72aada8de0c9cfe418d9e2ff36992a1693b7f65a075b28647
MD5 4594775ce805ad4a52fa6e8d32aa5711
BLAKE2b-256 175d93a6c37c4b4e9955ad40834f42b17260ca74ecf36df2e81bb14d12221b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 586f6aee1edec04e16227517a866df3e9a2e43c1f635efc32978bb3dc9c63753
MD5 4eb3c25b4ceca453e158eb3b598b8b40
BLAKE2b-256 a217e09357274699c6e012bbb5a8ea14765a4d5860bb658df1931c9f90d53bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aabecd038841ab5310d23495253f01c2a82a3aedae5ab9ca489be214aa458aa7
MD5 b811dd7ccc798d8f47f46400edf7a50a
BLAKE2b-256 36a19677337d729b79fce1ef3296aac6b8ef4743419086f669e8a8070eff8f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fa5c53b0791a4b998f9ad84aad456c988600757a96b0a05e14bba10cebaaaea
MD5 edc6e12be8543aea1019a45dc0bee3b3
BLAKE2b-256 5617504518860370f0a28908b18864f43d72f03581e2b6680540ca668f07aa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 587a1aa72bc858fab9b8c20427b5f6027b7cbc92743b8e2c73b9de55aa71c7a7
MD5 28699c8cef7fd5cd01f5f49558c468d0
BLAKE2b-256 19972df985b1e03f90c503796ad5ecd3d9ed305123b64d4ccb54616b30295b29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for shapely-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c7b2b6143abf4fa77851cef8ef690e03feade9a0d48acd6dc41d9e0e78d7ca6
MD5 f5c319257ff2636e6c9f967a51e1803c
BLAKE2b-256 50fca7187e6dadb10b91e66a9e715d28105cde6489e1017cce476876185a43da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 23b8772c3b815e7790fb2eab75a0b3951f435bc0fce7bb146cb064f17d35ab4f
MD5 37f64b0bc96dcc96f5bd3772b504de10
BLAKE2b-256 43cceec3c01f754f5b3e0c47574b198f9deb70465579ad0dad0e1cef2ce9e103

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cacf067cdff741cd5c56a21c52f54ece4e4dad9d311130493a791997da4a886b
MD5 19999913723698d65628c5b1a866315e
BLAKE2b-256 7d9673232c5de0b9fdf0ec7ddfc95c43aaf928740e87d9f168bff0e928d78c6d

See more details on using hashes here.

File details

Details for the file shapely-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61168010dfe4e45f956ffbbaf080c88afce199ea81eb1f0ac43230065df320bd
MD5 3ccd77cb3289a1cdda1f7fbf67c62a4e
BLAKE2b-256 890bad1b0af491d753a83ea93138eee12a4597f763ae12727968d05934fe7c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c10ce6f11904d65e9bbb3e41e774903c944e20b3f0b282559885302f52f224a
MD5 4aca81e8d67037ef8a3fee373c83db8f
BLAKE2b-256 a94f6c9bb4bd7b1a14d7051641b9b479ad2a643d5cbc382bcf5bd52fd0896974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45112a5be0b745b49e50f8829ce490eb67fefb0cea8d4f8ac5764bfedaa83d2d
MD5 5f518d2038b72ae21e4611af84c9718d
BLAKE2b-256 29510b158a261df94e33505eadfe737db9531f346dfa60850945ad25fd4162f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f24f2ecda1e6c091da64bcbef8dd121380948074875bd1b247b3d17e99407099
MD5 417f6f17769ae9d11240f6806c3ca1eb
BLAKE2b-256 c76546b519555ee9fb851234288be7c78be11e6260995281071d13abf2c313d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8ccc872a632acb7bdcb69e5e78df27213f7efd195882668ffba5405497337c6
MD5 be17dd196c7a9bc7f2724aa672a3962f
BLAKE2b-256 82faf18025c95b86116dd8f1ec58cab078bd59ab51456b448136ca27463be533

See more details on using hashes here.

Supported by

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