Skip to main content
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.

Release files for shapely 2.0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for shapely 2.0.2
File Size Uploaded
shapely-2.0.2.tar.gz 279.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for shapely 2.0.2
File
shapely-2.0.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
shapely-2.0.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl CPython 3.12 CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
shapely-2.0.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
shapely-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
shapely-2.0.2-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
shapely-2.0.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
shapely-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
shapely-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
shapely-2.0.2-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
shapely-2.0.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
shapely-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
shapely-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
shapely-2.0.2-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
shapely-2.0.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
shapely-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
shapely-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
shapely-2.0.2-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
shapely-2.0.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
shapely-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
shapely-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
shapely-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 73.4 MB

Release files / shapely-2.0.2.tar.gz

Download URL shapely-2.0.2.tar.gz
Size 279.7 kB
Tags Source
SHA-256 checksum
How to use checksums
1713cc04c171baffc5b259ba8531c58acc2a301707b7f021d88a15ed090649e7
BLAKE2b-256 checksum
How to use checksums
01c0ef2c5eff1e8381710e211a063d0aa3e7215cea9e6fd8c31e75bf5f93df85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-win_amd64.whl

Download URL shapely-2.0.2-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ea84d1cdbcf31e619d672b53c4532f06253894185ee7acb8ceb78f5f33cbe033
BLAKE2b-256 checksum
How to use checksums
c7d71bf4f48d83af09ce1af06c21752670fa8cdcafa72dbc452b809b215cda2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-win32.whl

Download URL shapely-2.0.2-cp312-cp312-win32.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
084b023dae8ad3d5b98acee9d3bf098fdf688eb0bb9b1401e8b075f6a627b611
BLAKE2b-256 checksum
How to use checksums
eb5e7aca7c3181f0bedbdb0931c825171b499c8a91b5aff667077efe81e75b4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.5 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a5533a925d8e211d07636ffc2fdd9a7f9f13d54686d00577eeb11d16f00be9c4
BLAKE2b-256 checksum
How to use checksums
29b7754f971ebbcb747ef38147949f90b30d2232ee5b9af9daacd558cc1705e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.4 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
be46d5509b9251dd9087768eaf35a71360de6afac82ce87c636990a0871aa18b
BLAKE2b-256 checksum
How to use checksums
bce0237b127f163737b3b4aa275943f4e75e56f50f0aa1c05fe997ddac6bd256
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7e92e7c255f89f5cdf777690313311f422aa8ada9a3205b187113274e0135cd8
BLAKE2b-256 checksum
How to use checksums
5cd9d557c09d15406aad8252caeae181c2db2c562cc1b2ca6e6482b43274b25f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
eebe544df5c018134f3c23b6515877f7e4cd72851f88a8d0c18464f414d141a2
BLAKE2b-256 checksum
How to use checksums
cd77d36919327b4c6f5a92909ea194a1a4138bf0515bf0d6a5ca29f53cd0d879
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl

Download URL shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl
Size 2.5 MB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
06f193091a7c6112fc08dfd195a1e3846a64306f890b151fa8c63b3e3624202c
BLAKE2b-256 checksum
How to use checksums
a7e4d0fdebc973ccfefe9feb8bca0995e0071c37aabb40448d9f170f94058a0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-win_amd64.whl

Download URL shapely-2.0.2-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
dc9342fc82e374130db86a955c3c4525bfbf315a248af8277a913f30911bed9e
BLAKE2b-256 checksum
How to use checksums
9e39029c441d8af32ab423b229c4525ce5ce6707318155b59634811a4c56f5c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-win32.whl

Download URL shapely-2.0.2-cp311-cp311-win32.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
45ac6906cff0765455a7b49c1670af6e230c419507c13e2f75db638c8fc6f3bd
BLAKE2b-256 checksum
How to use checksums
482a6e590f4f13b1bd8ee39626bab5c1643b8746a4e469c61c5e38571f6cccd9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.5 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
737dba15011e5a9b54a8302f1748b62daa207c9bc06f820cd0ad32a041f1c6f2
BLAKE2b-256 checksum
How to use checksums
8c4705c8bb8322861113e72b903aebaaa4678ae6e44c886c189ad8fe297f2008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.4 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fa3ee28f5e63a130ec5af4dc3c4cb9c21c5788bb13c15e89190d163b14f9fb89
BLAKE2b-256 checksum
How to use checksums
77e65043c8c8b7e21922559b4faa9011566b0df9315c3d51f15fa07816b4409d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
94ac128ae2ab4edd0bffcd4e566411ea7bdc738aeaf92c32a8a836abad725f9f
BLAKE2b-256 checksum
How to use checksums
2cb1ca09649b4abe06366d41e90c3eee95a7741657404404a63bd0e8b53e32b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2d217e56ae067e87b4e1731d0dc62eebe887ced729ba5c2d4590e9e3e9fdbd88
BLAKE2b-256 checksum
How to use checksums
8150c7768a0a71c012464927228b6b949e55ad8d7ed50325b56b7224ea7dc7a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp311-cp311-macosx_10_9_universal2.whl

Download URL shapely-2.0.2-cp311-cp311-macosx_10_9_universal2.whl
Size 2.5 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5b0c052709c8a257c93b0d4943b0b7a3035f87e2d6a8ac9407b6a992d206422f
BLAKE2b-256 checksum
How to use checksums
a0708ac9c70da0e9428b8827953c7345a2f9f0e62adeccd9ca5a69425d693b8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-win_amd64.whl

Download URL shapely-2.0.2-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
34eac2337cbd67650248761b140d2535855d21b969d76d76123317882d3a0c1a
BLAKE2b-256 checksum
How to use checksums
2832c404f6d5566025b9d94eef0cc21039b0a4c10a392bad2f81edf778b3c2bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-win32.whl

Download URL shapely-2.0.2-cp310-cp310-win32.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
72b5997272ae8c25f0fd5b3b967b3237e87fab7978b8d6cd5fa748770f0c5d68
BLAKE2b-256 checksum
How to use checksums
c0314f5e544c7d661a6007a5f003aa1824f41211ddeb10bcd5d967d300d6f30f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.5 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a9a41ff4323fc9d6257759c26eb1cf3a61ebc7e611e024e6091f42977303fd3a
BLAKE2b-256 checksum
How to use checksums
99e9a996a080d8478f4ab5ea82f64a5f39aaa8e05c99c2703e0ee03ec8c9e924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.4 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4ef753200cbffd4f652efb2c528c5474e5a14341a473994d90ad0606522a46a2
BLAKE2b-256 checksum
How to use checksums
17d7ec615b2285a3b31d5a3a84ba89cc8006c0df1b99854ff26697aefcca3129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL shapely-2.0.2-cp310-cp310-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
36480e32c434d168cdf2f5e9862c84aaf4d714a43a8465ae3ce8ff327f0affb7
BLAKE2b-256 checksum
How to use checksums
14c80747225a0fa3f2b45cf9e6e5eef51f4b9ec3777f0eb2e594a6c90ff4ab53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
baa14fc27771e180c06b499a0a7ba697c7988c7b2b6cba9a929a19a4d2762de3
BLAKE2b-256 checksum
How to use checksums
5b51b19feeebc5982d32b9c3dab7a55aacda38373b0cc814985aeebd95202c5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp310-cp310-macosx_10_9_universal2.whl

Download URL shapely-2.0.2-cp310-cp310-macosx_10_9_universal2.whl
Size 2.5 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
6ca8cffbe84ddde8f52b297b53f8e0687bd31141abb2c373fd8a9f032df415d6
BLAKE2b-256 checksum
How to use checksums
21f300a7b1c28ccd3c1807a6e8c1a616aee9ae448be9da860cfcf1b107874fb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-win_amd64.whl

Download URL shapely-2.0.2-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
794affd80ca0f2c536fc948a3afa90bd8fb61ebe37fe873483ae818e7f21def4
BLAKE2b-256 checksum
How to use checksums
51187a6dfefc08d5899dfca0cde9ada7a58006d06cccc0818e68b2a60bdba8e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-win32.whl

Download URL shapely-2.0.2-cp39-cp39-win32.whl
Size 1.3 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
b8eb0a92f7b8c74f9d8fdd1b40d395113f59bd8132ca1348ebcc1f5aece94b96
BLAKE2b-256 checksum
How to use checksums
1cb4e08e2d0732dcf2b9432f1a13ee85e1150e6a2b31fbb242e2adbf50843a57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.5 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
dea9a0651333cf96ef5bb2035044e3ad6a54f87d90e50fe4c2636debf1b77abc
BLAKE2b-256 checksum
How to use checksums
0b4572b2f6c9c02e02d73edeb3e63cb724e5a67f84d1ecadb06a2309a2c022a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.4 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d41a116fcad58048d7143ddb01285e1a8780df6dc1f56c3b1e1b7f12ed296651
BLAKE2b-256 checksum
How to use checksums
1c23678ca61d390b3ae1c1dec54085dfb83047e54986f8c3a643ac138359ecce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL shapely-2.0.2-cp39-cp39-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fd3ad17b64466a033848c26cb5b509625c87d07dcf39a1541461cacdb8f7e91c
BLAKE2b-256 checksum
How to use checksums
d23736bee542cf77d8902e1a83ae8fe6372bcf64a835597a3d9993297f27ee21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
394e5085b49334fd5b94fa89c086edfb39c3ecab7f669e8b2a4298b9d523b3a5
BLAKE2b-256 checksum
How to use checksums
18932f3076f374dfc4509e1a3b05ba479b68f243dee6fe5e1b9a7e2eb8bd0693
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp39-cp39-macosx_10_9_universal2.whl

Download URL shapely-2.0.2-cp39-cp39-macosx_10_9_universal2.whl
Size 2.5 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1f217d28ecb48e593beae20a0082a95bd9898d82d14b8fcb497edf6bff9a44d7
BLAKE2b-256 checksum
How to use checksums
ccfee72acdce088d7e3b6d530909f44e003293ded02dfb663214a8df5bc2970a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-win_amd64.whl

Download URL shapely-2.0.2-cp38-cp38-win_amd64.whl
Size 1.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
c6fd29fbd9cd76350bd5cc14c49de394a31770aed02d74203e23b928f3d2f1aa
BLAKE2b-256 checksum
How to use checksums
a46af453df473e317cc844420a003d2f558d8808404c9b7a43d3a6f806e51610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-win32.whl

Download URL shapely-2.0.2-cp38-cp38-win32.whl
Size 1.3 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
03e63a99dfe6bd3beb8d5f41ec2086585bb969991d603f9aeac335ad396a06d4
BLAKE2b-256 checksum
How to use checksums
16c91d8fa4ff1d08d4a1541c18d8cd64de85cd442aef8ad6466acad4482401a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.5 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6a21353d28209fb0d8cc083e08ca53c52666e0d8a1f9bbe23b6063967d89ed24
BLAKE2b-256 checksum
How to use checksums
d8413db53b03a0f2da266ca9ea35a779b0c4bb34bac06eb2778d4203ce613305
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.4 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e7c95d3379ae3abb74058938a9fcbc478c6b2e28d20dace38f8b5c587dde90aa
BLAKE2b-256 checksum
How to use checksums
959f75b0bb894341f0714e0ca7b034bbdee318119da1756f010711083ab0eef3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp38-cp38-macosx_11_0_arm64.whl

Download URL shapely-2.0.2-cp38-cp38-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ccfd5fa10a37e67dbafc601c1ddbcbbfef70d34c3f6b0efc866ddbdb55893a6c
BLAKE2b-256 checksum
How to use checksums
e625b10e9de9c366453be9618032cec74bdefb298b39247aa7a93cea675dfa27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
42997ac806e4583dad51c80a32d38570fd9a3d4778f5e2c98f9090aa7db0fe91
BLAKE2b-256 checksum
How to use checksums
e30ee113e4b7b31317af964ae152fafed933c9d252ed8256444623ccab7ce9ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp38-cp38-macosx_10_9_universal2.whl

Download URL shapely-2.0.2-cp38-cp38-macosx_10_9_universal2.whl
Size 2.5 MB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
87dc2be34ac3a3a4a319b963c507ac06682978a5e6c93d71917618b14f13066e
BLAKE2b-256 checksum
How to use checksums
aa9292e420d5be37b0cb0266fab2fe1366496a71f5966ab1108c99ad28976b8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp37-cp37m-win_amd64.whl

Download URL shapely-2.0.2-cp37-cp37m-win_amd64.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
78128357a0cee573257a0c2c388d4b7bf13cb7dbe5b3fe5d26d45ebbe2a39e25
BLAKE2b-256 checksum
How to use checksums
8e79b002906cbc5f57892a75d698085172658a6d0a882ebcedf1df0205b85176
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp37-cp37m-win32.whl

Download URL shapely-2.0.2-cp37-cp37m-win32.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
5324be299d4c533ecfcfd43424dfd12f9428fd6f12cda38a4316da001d6ef0ea
BLAKE2b-256 checksum
How to use checksums
35fd55ab3686ef8c2f53e258bda56404a444eff50d811acd324726f9782b6f8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL shapely-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0521d76d1e8af01e712db71da9096b484f081e539d4f4a8c97342e7971d5e1b4
BLAKE2b-256 checksum
How to use checksums
d2dd9f0bc472d4a501b0ea333ecb8d6366320c59b7d3200f9ae2026165526971
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / shapely-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL shapely-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e7d897e6bdc6bc64f7f65155dbbb30e49acaabbd0d9266b9b4041f87d6e52b3a
BLAKE2b-256 checksum
How to use checksums
2e1be05169491d43178ca7602ebcb5acdba9d3865786769e659f3d3c71d029c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.15

Release files / shapely-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL shapely-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ed1e99702125e7baccf401830a3b94d810d5c70b329b765fe93451fe14cf565b
BLAKE2b-256 checksum
How to use checksums
999da8f71f9d9eb4ee301f500d7bfeac912aec401ceb1c7ad8c7b0399ea8c7e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release history Release notifications | RSS feed

2.1.2

57 release files

2.1.1

41 release files

2.0.7

42 release files

2.0.6

42 release files

2.0.5

36 release files

2.0.4

41 release files

2.0.3

41 release files

This release

2.0.2 This release

41 release files

2.0.1

38 release files

2.0.0

38 release files

1.8.5

34 release files

1.8.4

34 release files

1.8.3

31 release files

1.8.1

26 release files

1.8.0

21 release files

1.7.1

23 release files

1.7.0

19 release files

1.6.4

10 release files

1.6.2

6 release files

1.6.1

6 release files

1.6.0

6 release files

1.5.17

4 release files

1.5.16

4 release files

1.5.15

4 release files

1.5.14

4 release files

1.5.13

4 release files

1.5.12

3 release files

1.5.11

3 release files

1.5.10

3 release files

1.5.9

3 release files

1.5.8

3 release files

1.5.7

3 release files

1.5.6

3 release files

1.5.5

3 release files

1.5.4

3 release files

1.5.3

3 release files

1.5.2

2 release files

1.5.1

1 release file

1.5.0

1 release file

1.4.4

1 release file

1.4.3

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.3.3

11 release files

1.3.2

5 release files

1.3.1

5 release files

1.3.0

5 release files

1.2.19

1 release file

1.2.18

9 release files

1.2.17

5 release files

1.2.16

1 release file

1.2.15

1 release file

1.2.10

8 release files

1.2.9

8 release files

1.2.8

8 release files

1.2.7

6 release files

1.2.6

3 release files

1.2.5

3 release files

1.2.4

1 release file

1.2.3

3 release files

1.2.2

3 release files

1.2.1

3 release files

1.2

3 release files

1.0.15

1 release file

1.0.13

1 release file

1.0.11

2 release files

1.0.8

1 release file

1.0.7

2 release files

1.0.6

2 release files

1.0.5

1 release file

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page