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.0

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.0
File Size Uploaded
shapely-2.0.0.tar.gz 274.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for shapely 2.0.0
File
shapely-2.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
shapely-2.0.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
shapely-2.0.0-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.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
shapely-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
shapely-2.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
shapely-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
shapely-2.0.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
shapely-2.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
shapely-2.0.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
shapely-2.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
shapely-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
shapely-2.0.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
shapely-2.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
shapely-2.0.0-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.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
shapely-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
shapely-2.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
shapely-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
shapely-2.0.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
shapely-2.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
shapely-2.0.0-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.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
shapely-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
shapely-2.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
shapely-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
shapely-2.0.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
shapely-2.0.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
shapely-2.0.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
shapely-2.0.0-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.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
shapely-2.0.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size:67.1 MB

Release files / shapely-2.0.0.tar.gz

Download URL shapely-2.0.0.tar.gz
Size 274.5 kB
Tags Source
SHA-256 checksum
How to use checksums
11f1b1231a6c04213fb1226c6968d1b1b3b369ec42d1e9655066af87631860ea
BLAKE2b-256 checksum
How to use checksums
61766e635cc4ba33e8c170ef5934dad5c269dc5cb9607e878efb2aba12f78361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a9b6651812f2caa23e4d06bc06a2ed34450f82cb1c110c170a25b01bbb090895
BLAKE2b-256 checksum
How to use checksums
f548b0915155ccdf2cf2c69f87a2ff7aa32e1d7b0aac7b2254fb4114bfb10de2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp311-cp311-win32.whl
Size 1.2 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ef98fec4a3aca6d33e3b9fdd680fe513cc7d1c6aedc65ada8a3965601d9d4bcf
BLAKE2b-256 checksum
How to use checksums
821730cc749eb629fb7cbf7fa28fe7ded6935a64b69dc5ab02d0293416987d4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
13a9f978cd287e0fa95f39904a2bb36deddab490e4fab8bf43eba01b7d9eb58f
BLAKE2b-256 checksum
How to use checksums
a6a62acc72d1c6fa357cb434cfffc148fe4ac7655dce7416183c4b50615de92b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

Release files / shapely-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL shapely-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.5 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
73d605fcefd06ee997ba307ef363448d355f3c3e81b3f56ed332eaf6d506e1b5
BLAKE2b-256 checksum
How to use checksums
d55dd9434abd291339aae6a895d9993147220d81704c6fd9db25a84b95e8d6b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6c71738702cf5c3fc60b3bbe869c321b053ea754f57addded540a71c78c2612e
BLAKE2b-256 checksum
How to use checksums
f7f48675870adac3afec23b2e9cdcbb990861acb0ef188db99cec228dc106c32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/0.0.0 importlib_metadata/4.8.1 pkginfo/1.5.0.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.9.7

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

Download URL shapely-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
40c397d67ba609a163d38b649eee2b06c5f9bdc86d244a8e4cd09c6e2791cf3c
BLAKE2b-256 checksum
How to use checksums
9a526030673fadc8ac8db7d6afe7a74118add0bdc7d8b3678b17108e078f2dc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-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
292c22ff7806e3a25bc4324295e9204169c61a09165d4c9ee0a9784c1709c85e
BLAKE2b-256 checksum
How to use checksums
cebbb54bf01a8b0a73f9bb59bed5c6fd0260536c9cc476809871975b897f4e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp311-cp311-macosx_10_9_universal2.whl
Size 2.4 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
56c0e70749f8c2956493e9333375d2e2264ce25c838fc49c3a2ececbf2d3ba92
BLAKE2b-256 checksum
How to use checksums
b0192edf55badaa89f28820e5127063784e28ff26251ecf9e3c49600d405348f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
b3d97f3ce6df47ca68c2d64b8c3cfa5c8ccc0fbc81ef8e15ff6004a6426e71b1
BLAKE2b-256 checksum
How to use checksums
ce7b68aae4e5e0662aba2b1a1dff1d3f9508a55cc925cc9aba4bd96996267d5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp310-cp310-win32.whl
Size 1.2 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d28e19791c9be2ba1cb2fddefa86f73364bdf8334e88dbcd78a8e4494c0af66b
BLAKE2b-256 checksum
How to use checksums
1bcbfe31c1ee7b4e776357dcc843ba8077747a467b9dac3a35b44151859aca5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
eab24b60ae96b7375adceb1f120be818c59bd69db0f3540dc89527d8a371d253
BLAKE2b-256 checksum
How to use checksums
06070700e5e33c44bc87e19953244c29f73669cfb6f19868899170f9c7e34554
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7b2c41514ba985ea3772eee9b386d620784cccb7a459a270a072f3ef01fdd807
BLAKE2b-256 checksum
How to use checksums
8bcb797c4eb74e3e169cd48f8f5509b4b2c54356ceea95907b3162ce7e7d88ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/0.0.0 importlib_metadata/4.8.1 pkginfo/1.5.0.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.9.7

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

Download URL shapely-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e4ed31658fd0799eaa3569982aab1a5bc8fcf25ec196606bf137ee4fa984be88
BLAKE2b-256 checksum
How to use checksums
e03f06d9cdc5c695438af9d07511466c125282d3d3f65b32fe0e8559d33f33b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-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
8a7ba97c97d85c1f07c57f9524c45128ef2bf8279061945d78052c78862b357f
BLAKE2b-256 checksum
How to use checksums
a71a1b59663aa6487ad405a737c0de35b3158407d1253e35d787b0808e51b5d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp310-cp310-macosx_10_9_universal2.whl
Size 2.4 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7266080d39946395ba4b31fa35b9b7695e0a4e38ccabf0c67e2936caf9f9b054
BLAKE2b-256 checksum
How to use checksums
32b49c8d01e6049666af1cd0f3f5b2935c04fdbdcfd7fca0abe9f52741bd7f97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5477be8c11bf3109f7b804bb2d57536538b8d0a6118207f1020d71338f1a827c
BLAKE2b-256 checksum
How to use checksums
b28e83d9e3bff5c0ff7a0ec7e850c785916e616ab20d8793943f9e1d2a987fab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp39-cp39-win32.whl
Size 1.2 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
73771b3f65c2949cce0b310b9b62b8ce069407ceb497a9dd4436f9a4d059f12c
BLAKE2b-256 checksum
How to use checksums
664ed96dcbe5fd04fd94c5a17730df6688cc593ba8c894fd21dc57f0d4f0058f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
91bbca0378eb82f0808f0e59150ac0952086f4caaab87ad8515a5e55e896c21e
BLAKE2b-256 checksum
How to use checksums
516a7a34b7ecb659aaafdebb805a62cbdccba8a92d8cd4d2fead50c4659b5d70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

Release files / shapely-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL shapely-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.5 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c4b99a3456e06dc55482569669ece969cdab311f2ad2a1d5622fc770f68cf3cd
BLAKE2b-256 checksum
How to use checksums
e96080a95d85f712bea40df97f6275cfd8313227aa6150a8501031c6fae9d4f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2287d0cb592c1814e9f48065888af7ee3f13e090e6f7fa3e208b06a83fb2f6af
BLAKE2b-256 checksum
How to use checksums
ae6c470f767a2029964cf2c18d4fb29f7a642e961e9653bb9a7ba1b830d6d7c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/0.0.0 importlib_metadata/4.8.1 pkginfo/1.5.0.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.9.7

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

Download URL shapely-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5fe8649aafe6adcb4d90f7f735f06ca8ca02a16da273d901f1dd02afc0d3618e
BLAKE2b-256 checksum
How to use checksums
f5b42a056a4081c3b603ebe5d8573a94ca125d8f46626cba0b3ad6ae55c86c08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-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
a391cae931976fb6d8d15a4f4a92006358e93486454a812dde1d64184041a476
BLAKE2b-256 checksum
How to use checksums
636b1b4f08fbc15645a639b7f372e478ee133fdc6525e287fa23240c27497b9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp39-cp39-macosx_10_9_universal2.whl
Size 2.4 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
eaea9ddee706654026a84aceb9a3156105917bab3de58fcf150343f847478202
BLAKE2b-256 checksum
How to use checksums
123b936b385d03d0d3377042f35b5191085368e29545cc0e6df97a3ed6bbf9e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp38-cp38-win_amd64.whl
Size 1.4 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
820bee508e4a0e564db22f8b55bb5e6e7f326d8d7c103639c42f5d3f378f4067
BLAKE2b-256 checksum
How to use checksums
06fc23cd69291437319c4f538e0c4a05e62012ee15fc2349b06ed71ce1705a43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp38-cp38-win32.whl
Size 1.2 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
b1def13ec2a74ebda2210d2fc1c53cecce5a079ec90f341101399427874507f1
BLAKE2b-256 checksum
How to use checksums
780afd33902c1c2d805d55c436a572117ba211d2c15c3d7962823b93bdad873e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f69c418f2040c8593e33b1aba8f2acf890804b073b817535b5d291139d152af5
BLAKE2b-256 checksum
How to use checksums
4e03f3bcb7d96aef6d56b62e2f25996f161c05f92a45d452165be2007b756e0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

Release files / shapely-2.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL shapely-2.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.5 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
17d0f89581aa15f7887052a6adf2753f9fe1c3fdbb6116653972e0d43e720e65
BLAKE2b-256 checksum
How to use checksums
cad4bc2180d79b977484708bf0262f169d2df09c3da871c0ee9c99ddd8ab4486
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
44198fc188fe4b7dd39ef0fd325395d1d6ab0c29a7bbaa15663a16c362bf6f62
BLAKE2b-256 checksum
How to use checksums
7b0c608397b3ef1b05c71885f8720656c2bb865fe2928ec2b5c04612a65e1e69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/0.0.0 importlib_metadata/4.8.1 pkginfo/1.5.0.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.9.7

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

Download URL shapely-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
21ba32a6c45b7f8ab7d2d8d5cf339704e2d1dfdf3e2fb465b950a0c9bc894a4f
BLAKE2b-256 checksum
How to use checksums
61bb6e2091c23a76967d3745a34ca55ca8962ad6bf569f844a34edf49c1437b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-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
8b9f780c3b79b4a6501e0e8833b1877841b7b0e0a243e77b529fda8f1030afc2
BLAKE2b-256 checksum
How to use checksums
726d85249cc7eebef0edb137ff80e3cb12cd0037612e1998c7794a5685308232
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp38-cp38-macosx_10_9_universal2.whl
Size 2.4 MB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f96b24da0242791cd6042f6caf074e7a4537a66ca2d1b57d423feb98ba901295
BLAKE2b-256 checksum
How to use checksums
35f1bab7d299285c945bd748f11b44bc9df385f263555c58195c240df508c3f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp37-cp37m-win_amd64.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
99420c89af78f371b96f0e2bad9afdebc6d0707d4275d157101483e4c4049fd6
BLAKE2b-256 checksum
How to use checksums
c299dd8d32328810cfc757b7c8b0691e0f90a5e2add313b4ef2928de9ace7989
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp37-cp37m-win32.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
de3722c68e49fbde8cb6859695bbb8fb9a4d48bbdf34fcf38b7994d2bd9772e2
BLAKE2b-256 checksum
How to use checksums
29a7b214ad92e140959cc5db4fc94b5ec436573a93fd94d13643be69b23f6881
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d486cab823f0a978964ae97ca10564ea2b2ced93e84a2ef0b7b62cbacec9d3d2
BLAKE2b-256 checksum
How to use checksums
228452692d8184cc76ca0b52160e503524bb7313f9219eefacb26a242e9fc1ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

Release files / shapely-2.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL shapely-2.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c47a61b1cd0c5b064c6d912bce7dba78c01f319f65ecccd6e61eecd21861a37a
BLAKE2b-256 checksum
How to use checksums
c106ebae7ee8acec522c39f0bfebd4f438650e06e470a142d16884058d27d9bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

Download URL shapely-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
550f110940d79931b6a12a17de07f6b158c9586c4b121f885af11458ae5626d7
BLAKE2b-256 checksum
How to use checksums
50b03ca66b2f6fccb65c5d9b531c263654064a2920b43340c49a41366b270ae1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/0.0.0 importlib_metadata/4.8.1 pkginfo/1.5.0.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.9.7

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

Download URL shapely-2.0.0-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
e991ad155783cd0830b895ec8f310fde9e79a7b283776b889a751fb1e7c819fc
BLAKE2b-256 checksum
How to use checksums
3efca696bc217d94ee72c8a716ffe15f08b7112f6286a9af49a894b728716f65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.1

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

2.0.2

41 release files

2.0.1

38 release files

This release

2.0.0 This release

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