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.0b2.tar.gz (263.1 kB view details)

Uploaded Source

Built Distributions

shapely-2.0b2-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

shapely-2.0b2-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86

shapely-2.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shapely-2.0b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

shapely-2.0b2-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapely-2.0b2-cp311-cp311-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

shapely-2.0b2-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

shapely-2.0b2-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

shapely-2.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shapely-2.0b2-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapely-2.0b2-cp310-cp310-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

shapely-2.0b2-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

shapely-2.0b2-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

shapely-2.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shapely-2.0b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

shapely-2.0b2-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0b2-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapely-2.0b2-cp39-cp39-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

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

Uploaded CPython 3.8 Windows x86-64

shapely-2.0b2-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

shapely-2.0b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shapely-2.0b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

shapely-2.0b2-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0b2-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

shapely-2.0b2-cp38-cp38-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

shapely-2.0b2-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

shapely-2.0b2-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86

shapely-2.0b2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

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

shapely-2.0b2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

shapely-2.0b2-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.0b2.tar.gz.

File metadata

  • Download URL: shapely-2.0b2.tar.gz
  • Upload date:
  • Size: 263.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2.tar.gz
Algorithm Hash digest
SHA256 4345ea7a75f6933325dbe82bdec14b4b4b16b15f6543eb5f5525f363430573d1
MD5 1b75d00283e2487e809d7ad1937fa9c0
BLAKE2b-256 24925f91320f08d6cab3ee030506fe53fd57ed4057ac2c0ea431da0d672348f9

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb95f5f08bcd34f8d810bfd3514c4580881e95f155fe9d8840c2c7e620ce46b0
MD5 c2024dccbbae41cbbc747dbc1896cc6b
BLAKE2b-256 2cd457159eb11b93af28608f7ff634a6ceab1001f65f166f6a52856db3bb0c1f

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-win32.whl.

File metadata

  • Download URL: shapely-2.0b2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 130536b8b4db588c2b6e3bce4d9e9d7d14e4f40e92dbecb25fbe765ae6530aee
MD5 06399a8de371ca1b6f9819d08f91ed9f
BLAKE2b-256 ab68e9c04d4f54c8c98b175db0ce63abc0e11324250c50ce9459d1cac5204797

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ef19fb9402e5cb6301d578c6c49859d35d0948c9b4f189ffe7429da1ae03332
MD5 74f2f895f47a82df0b1c430a47424ce7
BLAKE2b-256 3df8efac3ff0865075faeaa292d31b5d242ad080a3ee7afb4f4afebc0a86400d

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 252940416bf6c34ea38b5584f91fcfaa2f651fcbad58e6b4ec2f844880b7c27b
MD5 a0ff7a715ccd117586c9ec043c4f763a
BLAKE2b-256 fe80df0ac57ca9c6acd4c36b673d14081e9668d9861b17a872d89dca4e7166d9

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0630112087213a9ab34e878be1267cedb2c10a3a20560ab1c8802fa58dd7bb58
MD5 16b27a04dd046702d18baf3af09023ab
BLAKE2b-256 407269d4cd84eeec70892956ec71e282a2962095c12f06f270f4a162bb8e6338

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6008c310e6589a8df2ff7f307f7b24dba1f588c04edec905f9a69adc632bb67
MD5 419f97c6134ef8199f5ad13a167d5dcf
BLAKE2b-256 84c6101277238ab1e6d878d3657f722ecbbb787d6e9e9cac7fd3edbf4a0b96f7

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 22b820047ddef0e3ead2e01028e5412dc75b8c70c1d60e7f8e972e716119cae1
MD5 b8058452eb84e6a03dc911ffd48e9fec
BLAKE2b-256 8a2a1da875e39b3ae1da255f91fb23cdad4a8b2b52bfbdfe027775117082c2d9

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b13a61096795186e55dd6f41f240f81141d1938d10fdaf59f387df576dab91c0
MD5 383f7aa815be6c93548712a914c5636d
BLAKE2b-256 6f38d46bf33b721f4bfc38c14d2d5850746bc1142c62939dec852750b4a402fc

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-win32.whl.

File metadata

  • Download URL: shapely-2.0b2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4d76e01bd5e0bf2e817f2eeddf4c6e7ed200530c65818a5f8883b8e5cdb5dbf9
MD5 705eebf9b1dc4b0ef7363b93e7a941e9
BLAKE2b-256 375dabc72dd92cfd36675657215de8ecff512702c416c5c02daccb0be7170f7e

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32cdf2b30e068e77b15d90b10a90a2b4b74da70eea5e8b243c982dfd2fe43d94
MD5 525904fcfc62c2f6a9fccd79ba84d948
BLAKE2b-256 6d48afc722699fc5d28de6095efead8612ce0a3fb7453d13b42cb20991778dea

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5dbafbe12f48bf43e631f5164b9bf702344df9d22ae476801c69f8702330065
MD5 9169014d232565a4947b7f89c81784b2
BLAKE2b-256 67b6c6c1b2c7aba83730412caa8b6fb9556e62e6e59e323112790288fab8e661

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 944a662b3cb5b98e6e15df299ac6b1dc0ebab794030555a2d51e59dce2349af6
MD5 fab7c3695e0e38bbf3c58066f705008b
BLAKE2b-256 910a65f49cf6a935aaaf8afbd65d2f70bfebd18173f84cf650b7eb4e133ab4de

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f93782ca0406846c3e14931c1afa9bc46de63f2eb985589b037746eb7e5de4a
MD5 3a6a13511c883dff829fa6a5805c72cd
BLAKE2b-256 6d5616d85bc51a07eb1c37343318df0b61100d7ec0de8bb2240f1c4119acbd6c

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8553ebc294a45471d1cd1341af0834032d4ddd32597108f59227f22e3fc0a029
MD5 15a9a6535566fc1e5aff53831e5e286e
BLAKE2b-256 eeb0375c6e30fc17dcbc42798250412d2670b56c0425d3f8cb5319a3688c644c

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-win32.whl.

File metadata

  • Download URL: shapely-2.0b2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 40318da326133a35b0adba5a82ee8a55e0f773811f284afc9051f4daaab96f86
MD5 2254f1bb41086eb61031e05fdf635e81
BLAKE2b-256 9e287b91c8bdb546396b7d3f84adeb19f144a87de4fc40ed5772113d5c9680b9

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efec2db2368f34f8efd7e5739f900c8f9d5868b089b1dad108ecfcf9f8278cd4
MD5 3c72d74482b7eb08bfbfe21f058f6539
BLAKE2b-256 c77663a75d564cfcf8fe845be25656b1a9fa95760efa183d2aef4203aea8f015

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7d75ac5885438ea777bb93b1ef41d2965ec1374f51d0b0891d9089545c8fb85
MD5 547b169d32f766a50b9e93475bcbd6b2
BLAKE2b-256 c6faf7969d71373fdede479a07fa8c5de07da2b150fccb8e7ed5fe66b1c7f388

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6f3e56ce1ca5c69c0a7d6d33cdaed8df95408a6230d7dd36ba6b4eb297eb9a7
MD5 e11d0f4507df6b522b16925a5a687324
BLAKE2b-256 e6cac17c2e162a8592829799c8fc304c1df0ab78e63da305fbb7c128e44b5eb8

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 190a2b84b115580b513337d5ba5322b5bd310816e7ffcf80c3a3cec42063b13b
MD5 bc9463817c66bc1ef83d266832fd7965
BLAKE2b-256 98dce2da2955127f0bbad4d439886f3d5a527530bb366e5e14f297863ca38852

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e8d78668bfed82be6d9ad80cc4585ae5731520821be12a723adbcdfc601a8fa
MD5 6be7d16361c69390357af0a1570c648c
BLAKE2b-256 6c921faa1c5760d0cff10b7b2de185e87f7c90f7db8d4ad881fcdf73a47cf45b

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b2-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/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 308cb4a4a60ca9b3a067475f6257da533593b831d5c835c90b5f4e860b77dce7
MD5 700fa8ee7246626318a66b977288d67a
BLAKE2b-256 96a4f313893caae2cb2e09978faad8182ed6b33e7a1b586fab88cd1bd1bd1bb8

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-win32.whl.

File metadata

  • Download URL: shapely-2.0b2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4276845b4f585add71b99163cbe080db3a1c1bcfc4843dad1fdd24e49a9f10f3
MD5 7cb4bb841adc81cf691f45c8cb991141
BLAKE2b-256 0ce20bc481e4a2f173b6b097c0d6f430ac5fac2cbf9342759b0626bb85012027

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f956f5b1ca00cf1e8c79c6e39ba1f653b133d1947239cbba60f87050616effb
MD5 034cdb65c5d1797f3636d8ac5fb625ba
BLAKE2b-256 5cb6fb8fe84b2679796ea44ecfc1185481603bea9b3fdaa8343bff697940ece5

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6aca100dae965853b64fcb0940f53e4ddf4a24e3d7d7f4619c8912e128d74c4
MD5 2c0b75abd4fabe8b6a1a00a7cdbe953a
BLAKE2b-256 ac184cbb54ab5bb710efef01cb41d71a6a93ea1f90e6dcc645a15a26c98ba740

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3afc54b5389a7387d13f1d3ed1e46af3b6a5def1cbb0da02bfcf701750a6743
MD5 658700c7673027dc5b1c45adbd071471
BLAKE2b-256 b194c717e6c27ad0d0de47b82480292875d66eb0fe467e95125b3a0d9144c8a0

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d96d7c606dc4646d844a7332e873ee26eba874e237a414d7b4d83a11b114a0b5
MD5 362e3b3c1c2e19792a18d3a702edeacc
BLAKE2b-256 5d033aaf52655ef6d3988314d08679c4ff973d87965a3055defd427328727919

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1e477c7da8e03d1bc15e670784f3295bc81ad7e27ec38458461e9172f0cca084
MD5 7525b517c56fa13477a7648054d75159
BLAKE2b-256 2b5d32550fee63c285fe3ca4ecd59393bd130d082b638996f2d8c1eedc5b011d

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 528f93e933db7f8f98ddcc8fdcf4977f4e4c22e32af9b03846d9464c615c5a33
MD5 b87b3410302f253338caa7a90fee0393
BLAKE2b-256 165e3fecf68bef7862c28d504564a4665e13065c5fdbd66dcc3b88e0322db87e

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: shapely-2.0b2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d1c23672549c7a87ede495fb6a96ce4746706e54ac7513199fb9279b703667d8
MD5 76f40bf8f9c1ec17659dd595428f4054
BLAKE2b-256 2abe8801fd8cd25d59f5456e1f3dd5dbd39efc4c57545aa104a005e26fcb02d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for shapely-2.0b2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec85206455124a5a9973a277984d64b8c7bf875ec6c368b96262d0012dd81a8
MD5 3417d16911ab57021fe9800849d104a9
BLAKE2b-256 03ea2a59a162876cc0d52353ac72a75bc8496bc7a1f16628f2e37a034eecf2ae

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7f4a90e9437b274c930dd0e2716a737274e1c254e596ec022b7a32a8164f102
MD5 dda594847e0e69f9c62f22e9682a51a8
BLAKE2b-256 dca1653dbc324778da4572e81d5adec548fbb94f36cc45675b09e9b0e2e2ad07

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c758e7458174896b59c41d4c388a0e95d4e4bf6fda60226631182d74bb2bbc4e
MD5 4cc638972f15aae53d7191e8fe222264
BLAKE2b-256 4cebc78d2b097b140d6f47d406eea03a3a89f4686e8bfaee8551351512833319

See more details on using hashes here.

Provenance

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