Skip to main content

Geometric objects, predicates, and operations

Project description

github-actions coveralls

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 based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. Shapely is not concerned with data formats or coordinate systems, but can be readily integrated with packages that are. For more details, see:

Usage

Here is the canonical example of building an approximately circular patch by buffering a point.

>>> from shapely.geometry import Point
>>> patch = Point(0.0, 0.0).buffer(10.0)
>>> patch
<shapely.geometry.polygon.Polygon object at 0x...>
>>> patch.area
313.65484905459385

See the manual for more examples and guidance.

Requirements

Shapely 1.8 requires

  • Python >=3.6

  • GEOS >=3.3

Installing Shapely

Shapely may be installed from a source distribution or one of several kinds of built distribution.

Built distributions

Built distributions are the only option for users who do not have or do not know how to use their platform’s compiler and Python SDK, and a good option for users who would rather not bother.

Linux, OS X, and Windows users can get Shapely wheels with GEOS included from the Python Package Index with a recent version of pip (8+):

$ pip install shapely

Shapely is available via system package management tools like apt, yum, and Homebrew, and is also provided by popular Python distributions like Canopy and Anaconda. If you use the Conda package manager to install Shapely, be sure to use the conda-forge channel.

Windows users have another good installation options: the wheels published at https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely. These can be installed using pip by specifying the entire URL.

Source distributions

If you want to build Shapely from source for compatibility with other modules that depend on GEOS (such as cartopy or osgeo.ogr) or want to use a different version of GEOS than the one included in the project wheels you should first install the GEOS library, Cython, and Numpy on your system (using apt, yum, brew, or other means) and then direct pip to ignore the binary wheels.

$ pip install shapely --no-binary shapely

If you’ve installed GEOS to a standard location, the geos-config program will be used to get compiler and linker options. If geos-config is not on your executable, it can be specified with a GEOS_CONFIG environment variable, e.g.:

$ GEOS_CONFIG=/path/to/geos-config pip install shapely

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
<shapely.geometry.point.Point object at 0x...>
>>> print(json.dumps(mapping(s)))
{"type": "Point", "coordinates": [0.0, 0.0]}

Development and Testing

Dependencies for developing Shapely are listed in requirements-dev.txt. Cython and Numpy are not required for production installations, only for development. Use of a virtual environment is strongly recommended.

$ virtualenv .
$ source bin/activate
(env)$ pip install -r requirements-dev.txt
(env)$ pip install -e .

The project uses pytest to run Shapely’s suite of unittests and doctests.

(env)$ python -m pytest

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.

Credits

Shapely is written by:

See also: https://github.com/shapely/shapely/graphs/contributors.

Additional help from:

  • Justin Bronn (GeoDjango) for ctypes inspiration

  • Martin Davis (JTS)

  • Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS Project)

Major portions of this work were supported by a grant (for Pleiades) from the U.S. National Endowment for the Humanities (https://www.neh.gov).

Changes

1.8.5.post1 (2022-10-13)

Packaging:

Wheels are provided for Python versions 3.6-3.11 and Cython 0.29.32 is used to generate C extension module code.

1.8.5 (2022-10-12)

Packaging:

Python 3.11 wheels have been added to the matrix for all platforms.

Bug fixes:

  • Assign _lgeos in the macos frozen app check, fixing a bug introduced in 1.8.2 (#1528).

  • An exception is now raised when nan is passed to buffer and parallel_offset, preventing segmentation faults (#1516).

1.8.4 (2022-08-17)

Bug fixes:

  • The new c_geom_p type caused a regression and has been removed (#1487).

1.8.3 (2022-08-16)

Deprecations:

The STRtree class will be changed in 2.0.0 and will not be compatible with the class in versions 1.8.x. This change obsoletes the deprecation announcement in 1.8a3 (below).

Packaging:

Wheels for 1.8.3 published on PyPI include GEOS 3.10.3.

Bug fixes:

  • The signature for GEOSMinimumClearance has been corrected, fixing an issue affecting aarch64-darwin (#1480)

  • Return and arg types have been corrected and made more strict for area, length, and distance properties.

  • A new c_geom_p type has been created to replace c_void_p when calling GEOS functions (#1479).

  • An incorrect polygon-line intersection (#1427) has been fixed in GEOS 3.10.3, which will be included in wheels published to PyPI.

  • GEOS buffer parameters are now destroyed, fixing a memory leak (#1440).

1.8.2 (2022-05-03)

  • Make Polygons and MultiPolygons closed by definition, like LinearRings. Resolves #1246.

  • Perform frozen app check for GEOS before conda env check on macos as we already do on linux (#1301).

  • Fix leak of GEOS coordinate sequence in nearest_points reported in #1098.

1.8.1.post1 (2022-02-17)

This post-release addresses a defect in the 1.8.1 source distribution. No .c files are included in the 1.8.1.post1 sdist and Cython is required to build and install from source.

1.8.1 (2022-02-16)

Packaging:

Wheels for 1.8.1 published on PyPI include GEOS 3.10.2. This version is the best version of GEOS yet. Discrepancies in behavior compared to previous versions are considered to be improvements.

For the first time, we will publish wheels for macos_arm64 (see PR #1310).

Python version support:

Shapely 1.8.1 works with Pythons 3.6-3.10.

Bug fixes:

  • Require Cython >= 0.29.24 to support Python 3.10 (#1224).

  • Fix array_interface_base (#1235).

1.8.0 (2021-10-25)

This is the final 1.8.0 release. There have been no changes since 1.8rc2.

1.8rc2 (2021-10-19)

Build:

A pyproject.toml file has been added to specify build dependencies for the _vectorized and _speedups modules (#1128). To install shapely without these build dependencies, use the features of your build tool that disable PEP 517 and 518 support.

Bug fixes:

  • Part of PR #1042, which added a new primary GEOS library name to be searched for, has been reverted by PR #1201.

1.8rc1 (2021-10-04)

Deprecations:

The almost_exact() method of BaseGeometry has been deprecated. It is confusing and will be removed in 2.0.0. The equals_exact() method is to be used instead.

Bug fixes:

  • We ensure that the _speedups module is always imported before _vectorized to avoid an unexplained condition on Windows with Python 3.8 and 3.9 (#1184).

1.8a3 (2021-08-24)

Deprecations:

The STRtree class deprecation warnings have been removed. The class in 2.0.0 will be backwards compatible with the class in 1.8.0.

Bug fixes:

  • The __array_interface__ raises only AttributeError, all other exceptions are deprecated starting with Numpy 1.21 (#1173).

  • The STRtree class now uses a pair of item, geom sequences internally instead of a dict (#1177).

1.8a2 (2021-07-15)

Python version support:

Shapely 1.8 will support only Python versions >= 3.6.

New features:

  • The STRtree nearest*() methods now take an optional argument that specifies exclusion of the input geometry from results (#1115).

  • A GeometryTypeError has been added to shapely.errors and is consistently raised instead of TypeError or ValueError as in version 1.7. For backwards compatibility, the new exception will derive from TypeError and Value error until version 2.0 (#1099).

  • The STRtree class constructor now takes an optional second argument, a sequence of objects to be stored in the tree. If not provided, the sequence indices of the geometries will be stored, as before (#1112).

  • The STRtree class has new query_geoms(), query_items(), nearest_geom(), and nearest_item() methods (#1112). The query() and nearest() methods remain as aliases for query_geoms() and nearest_geom().

Bug fixes:

  • We no longer attempt to load libc to get the free function on Linux, but get it from the global symbol table.

  • GEOS error messages printed when GEOS_getCoordSeq() is passed an empty geometry are avoided by never passing an empty geometry (#1134).

  • Python’s builtin super() is now used only as described in PEP 3135 (#1109).

  • Only load conda GEOS dll if it exists (on Windows) (#1108).

  • Add /opt/homebrew/lib to the list of directories to be searched for the GEOS shared library.

  • Added new library search path to assist app creation with cx_Freeze.

1.8a1 (2021-03-03)

Shapely 1.8.0 will be a transitional version. There are a few bug fixes and new features, but it is mainly about warning of the upcoming changes in 2.0.0. Several more pre-releases before 1.8.0 are expected. See the migration guide to Shapely 1.8 / 2.0 for more details on how to update your code (https://shapely.readthedocs.io/en/latest/migration.html).

Python version support:

Shapely 1.8 will support only Python versions >= 3.5 (#884).

Deprecations:

The following functions and geometry attributes and methods will be removed in version 2.0.0.

  • ops.cascaded_union

  • geometry .empty()

  • geometry .ctypes and .__array_interface__

  • multi-part geometry .__len__

  • setting custom attributes on geometry objects

Geometry objects will become immutable in version 2.0.0.

The STRtree class will be entirely changed in 2.0.0. The exact future API is not yet decided, but will be decided before 1.8.0 is released.

Deprecation warnings will be emitted in 1.8a1 when any of these features are used.

The deprecated .to_wkb() and .to_wkt() methods on the geometry objects have been removed.

New features:

  • Add a normalize() method to geometry classes, exposing the GEOSNormalize algorithm (#1090).

  • Initialize STRtree with a capacity of 10 items per node (#1070).

  • Load libraries relocated to shapely/.libs by auditwheel versions < 3.1 or relocated to Shapely.libs by auditwheel versions >= 3.1.

  • shapely.ops.voronoi_diagram() computes the Voronoi Diagram of a geometry or geometry collection (#833, #851).

  • shapely.validation.make_valid() fixes invalid geometries (#883)

Bug fixes:

  • For pyinstaller we now handle the case of more than one GEOS library in the environment, such as when fiona and rasterio wheels are co-installed with shapely (#1071).

  • The ops.split function now splits on touch to eliminate confusing discrepancies between results using multi and single part splitters (#1034).

  • Several issues with duplication and order of vertices in ops.substring have been fixed (#1008).

Packaging:

  • The wheels uploaded to PyPI will include GEOS 3.9.1.

1.7.1 (2020-08-20)

  • STRtree now safely implements the pickle protocol (#915).

  • Documentation has been added for minimum_clearance (#875, #874).

  • In STRtree.__del__() we guard against calling GEOSSTRtree_destroy when the lgeos module has already been torn down on exit (#897, #830).

  • Documentation for the overlaps() method has been corrected (#920).

  • Correct the test in shapely.geometry.base.BaseGeometry.empty() to eliminate memory leaks like the one reported in #745.

  • Get free() not from libc but from the processes global symbols (#891), fixing a bug that manifests on OS X 10.15 and 10.16.

  • Extracting substrings from complex lines has been made more correct (#848, #849).

  • Splitting of complex geometries has been sped up by preparing the input geometry (#871).

  • Fix bug in concatenation of function argtypes (#866).

  • Improved documentation of STRtree usage (#857).

  • Improved handling for empty list or list of lists in GeoJSON coordinates (#852).

  • The polylabel algorithm now accounts for polygon holes (#851, #817).

1.7.0 (2020-01-28)

This is the final 1.7.0 release. There have been no changes since 1.7b1.

1.7b1 (2020-01-13)

First beta release.

1.7a3 (2019-12-31)

New features:

  • The buffer operation can now be single-sides (#806, #727).

Bug fixes:

  • Add /usr/local/lib to the list of directories to be searched for the GEOS shared library (#795).

  • ops.substring now returns a line with coords in end-to-front order when given a start position that is greater than the end position (#628).

  • Implement __bool__() for geometry base classes so that bool(geom) returns the logical complement of geom.is_empty (#754).

  • Remove assertion on the number of version-like strings found in the GEOS version string. It could be 2 or 3.

1.7a2 (2019-06-21)

  • Nearest neighbor search has been added to STRtree (#668).

  • Disallow sequences of MultiPolygons as arguments to the MultiPolygon constructor, resolving #588.

  • Removed vendorized functools functions previously used to support Python 2.5.

Bug fixes:

  • Avoid reloading the GEOS shared library when using an installed binary wheel on OS X (#735), resolving issue #553.

  • The shapely.ops.orient function can now orient multi polygons and geometry collections as well as polygons (#733).

  • Polygons can now be constructed from sequences of point objects as well as sequences of x, y sequences (#732).

  • The exterior of an empty polygon is now equal to an empty linear ring (#731).

  • The bounds property of an empty point object now returns an empty tuple, consistent with other geometry types (#723).

  • Segmentation faults when non-string values are passed to the WKT loader are avoided by #700.

  • Failure of ops.substring when the sub linestring coincides with the beginning of the linestring has been fixed (#658).

  • Segmentation faults from interpolating on an empty linestring are prevented by #655.

  • A missing special case for rectangular polygons has been added to the polylabel algorithm (#644).

  • LinearRing can be created from a LineString (#638).

  • The prepared geometry validation condition has been tightened in #632 to fix the bug reported in #631.

  • Attempting to interpolate an empty geometry no longer results in a segmentation fault, raising ValueError instead (#653).

1.7a1 (2018-07-29)

New features:

  • A Python version check is made by the package setup script. Shapely 1.7 supports only Python versions 2.7 and 3.4+ (#610).

  • Added a new EmptyGeometry class to support GeoPandas (#514).

  • Added new shapely.ops.substring function (#459).

  • Added new shapely.ops.clip_by_rect function (#583).

  • Use DLLs indicated in sys._MEIPASS’ to support PyInstaller frozen apps (#523).

  • shapely.wkb.dumps now accepts an srid integer keyword argument to write WKB data including a spatial reference ID in the output data (#593).

Bug fixes:

  • shapely.geometry.shape can now marshal empty GeoJSON representations (#573).

  • An exception is raised when an attempt is made to prepare a PreparedGeometry (#577, #595).

  • Keyword arguments have been removed from a geometry object’s wkt property getter (#581, #594).

1.6.4.post1 (2018-01-24)

  • Fix broken markup in this change log, which restores our nicely formatted readme on PyPI.

1.6.4 (2018-01-24)

  • Handle a TypeError that can occur when geometries are torn down (#473, #528).

1.6.3 (2017-12-09)

  • AttributeError is no longer raised when accessing __geo_interface__ of an empty polygon (#450).

  • asShape now handles empty coordinates in mappings as shape does (#542). Please note that asShape is likely to be deprecated in a future version of Shapely.

  • Check for length of LineString coordinates in speed mode, preventing crashes when using LineStrings with only one coordinate (#546).

1.6.2 (2017-10-30)

  • A 1.6.2.post1 release has been made to fix a problem with macosx wheels uploaded to PyPI.

1.6.2 (2017-10-26)

  • Splitting a linestring by one of its end points will now succeed instead of failing with a ValueError (#524, #533).

  • Missing documentation of a geometry’s overlaps predicate has been added (#522).

1.6.1 (2017-09-01)

  • Avoid STRTree crashes due to dangling references (#505) by maintaining references to added geometries.

  • Reduce log level to debug when reporting on calls to ctypes CDLL() that don’t succeed and are retried (#515).

  • Clarification: applications like GeoPandas that need an empty geometry object should use BaseGeometry() instead of Point() or Polygon(). An EmptyGeometry class has been added in the master development branch and will be available in the next non-bugfix release.

1.6.0 (2017-08-21)

Shapely 1.6.0 adds new attributes to existing geometry classes and new functions (split() and polylabel()) to the shapely.ops module. Exceptions are consolidated in a shapely.errors module and logging practices have been improved. Shapely’s optional features depending on Numpy are now gathered into a requirements set named “vectorized” and these may be installed like pip install shapely[vectorized].

Much of the work on 1.6.0 was aimed to improve the project’s build and packaging scripts and to minimize run-time dependencies. Shapely now vendorizes packaging to use during builds only and never again invokes the geos-config utility at run-time.

In addition to the changes listed under the alpha and beta pre-releases below, the following change has been made to the project:

Thank you all for using, promoting, and contributing to the Shapely project.

1.6b5 (2017-08-18)

Bug fixes:

  • Passing a single coordinate to LineString() with speedups disabled now raises a ValueError as happens with speedups enabled. This resolves #509.

1.6b4 (2017-02-15)

Bug fixes:

  • Isolate vendorized packaging in a _vendor directory, remove obsolete dist-info, and remove packaging from project requirements (resolves #468).

1.6b3 (2016-12-31)

Bug fixes:

  • Level for log messages originating from the GEOS notice handler reduced from WARNING to INFO (#447).

  • Permit speedups to be imported again without Numpy (#444).

1.6b2 (2016-12-12)

New features:

  • Add support for GeometryCollection to shape and asShape functions (#422).

1.6b1 (2016-12-12)

Bug fixes:

  • Implemented __array_interface__ for empty Points and LineStrings (#403).

1.6a3 (2016-12-01)

Bug fixes:

  • Remove accidental hard requirement of Numpy (#431).

Packaging:

  • Put Numpy in an optional requirement set named “vectorized” (#431).

1.6a2 (2016-11-09)

Bug fixes:

  • Shapely no longer configures logging in geos.py (#415).

Refactoring:

  • Consolidation of exceptions in shapely.errors.

  • UnsupportedGEOSVersionError is raised when GEOS < 3.3.0 (#407).

Packaging:

  • Added new library search paths to assist Anaconda (#413).

  • geos-config will now be bypassed when NO_GEOS_CONFIG env var is set. This allows configuration of Shapely builds on Linux systems that for whatever reasons do not include the geos-config program (#322).

1.6a1 (2016-09-14)

New features:

  • A new error derived from NotImplementedError, with a more useful message, is raised when the GEOS backend doesn’t support a called method (#216).

  • The project() method of LineString has been extended to LinearRing geometries (#286).

  • A new minimum_rotated_rectangle attribute has been added to the base geometry class (#354).

  • A new shapely.ops.polylabel() function has been added. It computes a point suited for labeling concave polygons (#395).

  • A new shapely.ops.split() function has been added. It splits a geometry by another geometry of lesser dimension: polygon by line, line by point (#293, #371).

  • Polygon.from_bounds() constructs a Polygon from bounding coordinates (#392).

  • Support for testing with Numpy 1.4.1 has been added (#301).

  • Support creating all kinds of empty geometries from empty lists of Python objects (#397, #404).

Refactoring:

  • Switch from SingleSidedBuffer() to OffsetCurve() for GEOS >= 3.3 (#270).

  • Cython speedups are now enabled by default (#252).

Packaging:

  • Packaging 16.7, a setup dependency, is vendorized (#314).

  • Infrastructure for building manylinux1 wheels has been added (#391).

  • The system’s geos-config program is now only checked when setup.py is executed, never during normal use of the module (#244).

  • Added new library search paths to assist PyInstaller (#382) and Windows (#343).

1.5.17 (2016-08-31)

  • Bug fix: eliminate memory leak in geom_factory() (#408).

  • Bug fix: remove mention of negative distances in parallel_offset and note that vertices of right hand offset lines are reversed (#284).

1.5.16 (2016-05-26)

  • Bug fix: eliminate memory leak when unpickling geometry objects (#384, #385).

  • Bug fix: prevent crashes when attempting to pickle a prepared geometry, raising PicklingError instead (#386).

  • Packaging: extension modules in the OS X wheels uploaded to PyPI link only libgeos_c.dylib now (you can verify and compare to previous releases with otool -L shapely/vectorized/_vectorized.so).

1.5.15 (2016-03-29)

  • Bug fix: use uintptr_t to store pointers instead of long in _geos.pxi, preventing an overflow error (#372, #373). Note that this bug fix was erroneously reported to have been made in 1.5.14, but was not.

1.5.14 (2016-03-27)

  • Bug fix: use type() instead of isinstance() when evaluating geometry equality, preventing instances of base and derived classes from being mistaken for equals (#317).

  • Bug fix: ensure that empty geometries are created when constructors have no args (#332, #333).

  • Bug fix: support app “freezing” better on Windows by not relying on the __file__ attribute (#342, #377).

  • Bug fix: ensure that empty polygons evaluate to be == (#355).

  • Bug fix: filter out empty geometries that can cause segfaults when creating and loading STRtrees (#345, #348).

  • Bug fix: no longer attempt to reuse GEOS DLLs already loaded by Rasterio or Fiona on OS X (#374, #375).

1.5.13 (2015-10-09)

  • Restore setup and runtime discovery and loading of GEOS shared library to state at version 1.5.9 (#326).

  • On OS X we try to reuse any GEOS shared library that may have been loaded via import of Fiona or Rasterio in order to avoid a bug involving the GEOS AbstractSTRtree (#324, #327).

1.5.12 (2015-08-27)

  • Remove configuration of root logger from libgeos.py (#312).

  • Skip test_fallbacks on Windows (#308).

  • Call setlocale(locale.LC_ALL, “”) instead of resetlocale() on Windows when tearing down the locale test (#308).

  • Fix for Sphinx warnings (#309).

  • Addition of .cache, .idea, .pyd, .pdb to .gitignore (#310).

1.5.11 (2015-08-23)

  • Remove packaging module requirement added in 1.5.10 (#305). Distutils can’t parse versions using ‘rc’, but if we stick to ‘a’ and ‘b’ we will be fine.

1.5.10 (2015-08-22)

  • Monkey patch affinity module by absolute reference (#299).

  • Raise TopologicalError in relate() instead of crashing (#294, #295, #303).

1.5.9 (2015-05-27)

  • Fix for 64 bit speedups compatibility (#274).

1.5.8 (2015-04-29)

  • Setup file encoding bug fix (#254).

  • Support for pyinstaller (#261).

  • Major prepared geometry operation fix for Windows (#268, #269).

  • Major fix for OS X binary wheel (#262).

1.5.7 (2015-03-16)

  • Test and fix buggy error and notice handlers (#249).

1.5.6 (2015-02-02)

  • Fix setup regression (#232, #234).

  • SVG representation improvements (#233, #237).

1.5.5 (2015-01-20)

  • MANIFEST changes to restore _geox.pxi (#231).

1.5.4 (2015-01-19)

  • Fixed OS X binary wheel library load path (#224).

1.5.3 (2015-01-12)

  • Fixed ownership and potential memory leak in polygonize (#223).

  • Wider release of binary wheels for OS X.

1.5.2 (2015-01-04)

  • Fail installation if GEOS dependency is not met, preventing update breakage (#218, #219).

1.5.1 (2014-12-04)

  • Restore geometry hashing (#209).

1.5.0 (2014-12-02)

  • Affine transformation speedups (#197).

  • New == rich comparison (#195).

  • Geometry collection constructor (#200).

  • ops.snap() backed by GEOSSnap (#201).

  • Clearer exceptions in cases of topological invalidity (#203).

1.4.4 (2014-11-02)

  • Proper conversion of numpy float32 vals to coords (#186).

1.4.3 (2014-10-01)

  • Fix for endianness bug in WKB writer (#174).

1.4.2 (2014-09-29)

  • Fix bungled 1.4.1 release (#176).

1.4.1 (2014-09-23)

  • Return of support for GEOS 3.2 (#176, #178).

1.4.0 (2014-09-08)

  • SVG representations for IPython’s inline image protocol.

  • Efficient and fast vectorized contains().

  • Change mitre_limit default to 5.0; raise ValueError with 0.0 (#139).

  • Allow mix of tuples and Points in sped-up LineString ctor (#152).

  • New STRtree class (#73).

  • Add ops.nearest_points() (#147).

  • Faster creation of geometric objects from others (cloning) (#165).

  • Removal of tests from package.

1.3.3 (2014-07-23)

  • Allow single-part geometries as argument to ops.cacaded_union() (#135).

  • Support affine transformations of LinearRings (#112).

1.3.2 (2014-05-13)

  • Let LineString() take a sequence of Points (#130).

1.3.1 (2014-04-22)

  • More reliable proxy cleanup on exit (#106).

  • More robust DLL loading on all platforms (#114).

1.3.0 (2013-12-31)

  • Include support for Python 3.2 and 3.3 (#56), minimum version is now 2.6.

  • Switch to GEOS WKT/WKB Reader/Writer API, with defaults changed to enable 3D output dimensions, and to ‘trim’ WKT output for GEOS >=3.3.0.

  • Use GEOS version instead of GEOS C API version to determine library capabilities (#65).

1.2.19 (2013-12-30)

  • Add buffering style options (#55).

1.2.18 (2013-07-23)

  • Add shapely.ops.transform.

  • Permit empty sequences in collection constructors (#49, #50).

  • Individual polygons in MultiPolygon.__geo_interface__ are changed to tuples to match Polygon.__geo_interface__ (#51).

  • Add shapely.ops.polygonize_full (#57).

1.2.17 (2013-01-27)

  • Avoid circular import between wkt/wkb and geometry.base by moving calls to GEOS serializers to the latter module.

  • Set _ndim when unpickling (issue #6).

  • Don’t install DLLs to Python’s DLL directory (#37).

  • Add affinity module of affine transformation (#31).

  • Fix NameError that blocked installation with PyPy (#40, #41).

1.2.16 (2012-09-18)

  • Add ops.unary_union function.

  • Alias ops.cascaded_union to ops.unary_union when GEOS CAPI >= (1,7,0).

  • Add geos_version_string attribute to shapely.geos.

  • Ensure parent is set when child geometry is accessed.

  • Generate _speedups.c using Cython when building from repo when missing, stale, or the build target is “sdist”.

  • The is_simple predicate of invalid, self-intersecting linear rings now returns False.

  • Remove VERSION.txt from repo, it’s now written by the distutils setup script with value of shapely.__version__.

1.2.15 (2012-06-27)

  • Eliminate numerical sensitivity in a method chaining test (Debian bug #663210).

  • Account for cascaded union of random buffered test points being a polygon or multipolygon (Debian bug #666655).

  • Use Cython to build speedups if it is installed.

  • Avoid stumbling over SVN revision numbers in GEOS C API version strings.

1.2.14 (2012-01-23)

  • A geometry’s coords property is now sliceable, yielding a list of coordinate values.

  • Homogeneous collections are now sliceable, yielding a new collection of the same type.

1.2.13 (2011-09-16)

  • Fixed errors in speedups on 32bit systems when GEOS references memory above 2GB.

  • Add shapely.__version__ attribute.

  • Update the manual.

1.2.12 (2011-08-15)

  • Build Windows distributions with VC7 or VC9 as appropriate.

  • More verbose report on failure to speed up.

  • Fix for prepared geometries broken in 1.2.11.

  • DO NOT INSTALL 1.2.11

1.2.11 (2011-08-04)

  • Ignore AttributeError during exit.

  • PyPy 1.5 support.

  • Prevent operation on prepared geometry crasher (#12).

  • Optional Cython speedups for Windows.

  • Linux 3 platform support.

1.2.10 (2011-05-09)

  • Add optional Cython speedups.

  • Add is_cww predicate to LinearRing.

  • Add function that forces orientation of Polygons.

  • Disable build of speedups on Windows pending packaging work.

1.2.9 (2011-03-31)

  • Remove extra glob import.

  • Move examples to shapely.examples.

  • Add box() constructor for rectangular polygons.

  • Fix extraneous imports.

1.2.8 (2011-12-03)

  • New parallel_offset method (#6).

  • Support for Python 2.4.

1.2.7 (2010-11-05)

  • Support for Windows eggs.

1.2.6 (2010-10-21)

  • The geoms property of an empty collection yields [] instead of a ValueError (#3).

  • The coords and geometry type sproperties have the same behavior as above.

  • Ensure that z values carry through into products of operations (#4).

1.2.5 (2010-09-19)

  • Stop distributing docs/_build.

  • Include library fallbacks in test_dlls.py for linux platform.

1.2.4 (2010-09-09)

  • Raise AttributeError when there’s no backend support for a method.

  • Raise OSError if libgeos_c.so (or variants) can’t be found and loaded.

  • Add geos_c DLL loading support for linux platforms where find_library doesn’t work.

1.2.3 (2010-08-17)

  • Add mapping function.

  • Fix problem with GEOSisValidReason symbol for GEOS < 3.1.

1.2.2 (2010-07-23)

  • Add representative_point method.

1.2.1 (2010-06-23)

  • Fixed bounds of singular polygons.

  • Added shapely.validation.explain_validity function (#226).

1.2 (2010-05-27)

  • Final release.

1.2rc2 (2010-05-26)

  • Add examples and tests to MANIFEST.in.

  • Release candidate 2.

1.2rc1 (2010-05-25)

  • Release candidate.

1.2b7 (2010-04-22)

  • Memory leak associated with new empty geometry state fixed.

1.2b6 (2010-04-13)

  • Broken GeometryCollection fixed.

1.2b5 (2010-04-09)

  • Objects can be constructed from others of the same type, thereby making copies. Collections can be constructed from sequences of objects, also making copies.

  • Collections are now iterators over their component objects.

  • New code for manual figures, using the descartes package.

1.2b4 (2010-03-19)

  • Adds support for the “sunos5” platform.

1.2b3 (2010-02-28)

  • Only provide simplification implementations for GEOS C API >= 1.5.

1.2b2 (2010-02-19)

  • Fix cascaded_union bug introduced in 1.2b1 (#212).

1.2b1 (2010-02-18)

  • Update the README. Remove cruft from setup.py. Add some version 1.2 metadata regarding required Python version (>=2.5,<3) and external dependency (libgeos_c >= 3.1).

1.2a6 (2010-02-09)

  • Add accessor for separate arrays of X and Y values (#210).

TODO: fill gap here

1.2a1 (2010-01-20)

  • Proper prototyping of WKB writer, and avoidance of errors on 64-bit systems (#191).

  • Prototype libgeos_c functions in a way that lets py2exe apps import shapely (#189).

1.2 Branched (2009-09-19)

1.0.12 (2009-04-09)

  • Fix for references held by topology and predicate descriptors.

1.0.11 (2008-11-20)

  • Work around bug in GEOS 2.2.3, GEOSCoordSeq_getOrdinate not exported properly (#178).

1.0.10 (2008-11-17)

  • Fixed compatibility with GEOS 2.2.3 that was broken in 1.0.8 release (#176).

1.0.9 (2008-11-16)

  • Find and load MacPorts libgeos.

1.0.8 (2008-11-01)

  • Fill out GEOS function result and argument types to prevent faults on a 64-bit arch.

1.0.7 (2008-08-22)

  • Polygon rings now have the same dimensions as parent (#168).

  • Eliminated reference cycles in polygons (#169).

1.0.6 (2008-07-10)

  • Fixed adaptation of multi polygon data.

  • Raise exceptions earlier from binary predicates.

  • Beginning distributing new windows DLLs (#166).

1.0.5 (2008-05-20)

  • Added access to GEOS polygonizer function.

  • Raise exception when insufficient coordinate tuples are passed to LinearRing constructor (#164).

1.0.4 (2008-05-01)

  • Disentangle Python and topological equality (#163).

  • Add shape(), a factory that copies coordinates from a geo interface provider. To be used instead of asShape() unless you really need to store coordinates outside shapely for efficient use in other code.

  • Cache GEOS geometries in adapters (#163).

1.0.3 (2008-04-09)

  • Do not release GIL when calling GEOS functions (#158).

  • Prevent faults when chaining multiple GEOS operators (#159).

1.0.2 (2008-02-26)

  • Fix loss of dimensionality in polygon rings (#155).

1.0.1 (2008-02-08)

  • Allow chaining expressions involving coordinate sequences and geometry parts (#151).

  • Protect against abnormal use of coordinate accessors (#152).

  • Coordinate sequences now implement the numpy array protocol (#153).

1.0 (2008-01-18)

  • Final release.

1.0 RC2 (2008-01-16)

  • Added temporary solution for #149.

1.0 RC1 (2008-01-14)

  • First release candidate

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-1.8.5.post1.tar.gz (200.9 kB view details)

Uploaded Source

Built Distributions

Shapely-1.8.5.post1-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

Shapely-1.8.5.post1-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86

Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

Shapely-1.8.5.post1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_universal2.whl (2.2 MB view details)

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

Shapely-1.8.5.post1-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

Shapely-1.8.5.post1-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86

Shapely-1.8.5.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

Shapely-1.8.5.post1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_universal2.whl (2.2 MB view details)

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

Shapely-1.8.5.post1-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

Shapely-1.8.5.post1-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86

Shapely-1.8.5.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

Shapely-1.8.5.post1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_universal2.whl (2.2 MB view details)

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

Shapely-1.8.5.post1-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

Shapely-1.8.5.post1-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

Shapely-1.8.5.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

Shapely-1.8.5.post1-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_universal2.whl (2.2 MB view details)

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

Shapely-1.8.5.post1-cp37-cp37m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

Shapely-1.8.5.post1-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.0 MB view details)

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

Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

Shapely-1.8.5.post1-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Shapely-1.8.5.post1-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

Shapely-1.8.5.post1-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

Shapely-1.8.5.post1-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file Shapely-1.8.5.post1.tar.gz.

File metadata

  • Download URL: Shapely-1.8.5.post1.tar.gz
  • Upload date:
  • Size: 200.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1.tar.gz
Algorithm Hash digest
SHA256 ef3be705c3eac282a28058e6c6e5503419b250f482320df2172abcbea642c831
MD5 aea0851e5c298473286aacf6af10db59
BLAKE2b-256 922ea8bbe3c6b414c3c61c4b639ab16d5b1f9c4c4095817d417b503413e613c0

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48dcfffb9e225c0481120f4bdf622131c8c95f342b00b158cdbe220edbbe20b6
MD5 f28729234bebb3b9c6c42ed8c3cd2248
BLAKE2b-256 56bf49e91fcad7bbe562141d6337a7f3c7698da513c9f07264b2c02150cf590a

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 84010db15eb364a52b74ea8804ef92a6a930dfc1981d17a369444b6ddec66efd
MD5 3f6ac14547010bebfaf29b4f79d643eb
BLAKE2b-256 95c4f762a599d63d433012745b3c893a355dabf01e2fd5080c4c60f383ac47f5

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4728666fff8cccc65a07448cae72c75a8773fea061c3f4f139c44adc429b18c3
MD5 ae8c26ef3ec3d058a4cb444dfcfdf0e0
BLAKE2b-256 d78e68d8278ab04c89dc14b1b1c2bf95b1df18a9b461c6b5f85649f3602d267e

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d086591f744be483b34628b391d741e46f2645fe37594319e0a673cc2c26bcf
MD5 734ff43ccc12f7f4d635d49facf26927
BLAKE2b-256 0465bc86d90b3cdf99e9851403f0b1558b46eb51217d6786cc5e1ccb22ea5211

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab38f7b5196ace05725e407cb8cab9ff66edb8e6f7bb36a398e8f73f52a7aaa2
MD5 a33e4345aaf385d187fe113697642fe9
BLAKE2b-256 2497940c9f7c0bc20ca2121ca9fdb4cbf83e5239f672bcd02d3be486e5e3f012

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a23ef3882d6aa203dd3623a3d55d698f59bfbd9f8a3bfed52c2da05a7f0f8640
MD5 e67b2a2eaf02fa88f908287a87c56b5b
BLAKE2b-256 5595f694322ba2dc37f7956dbf1bfb924ac42979b04c65b5f37631726729acba

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 783bad5f48e2708a0e2f695a34ed382e4162c795cb2f0368b39528ac1d6db7ed
MD5 e91226c7e8c0472bd0fa7848d0ca94b3
BLAKE2b-256 3e0d29f313b99579e0c54d2b09a60c8e7f71382a44dd725139dbbce51933868a

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a354199219c8d836f280b88f2c5102c81bb044ccea45bd361dc38a79f3873714
MD5 64bf20c7d237b6ba853cf51640cd1dc3
BLAKE2b-256 88433a8006855fe0ae3deac065843c2f601c542f841b3c92794619d1ab291b4f

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 21776184516a16bf82a0c3d6d6a312b3cd15a4cabafc61ee01cf2714a82e8396
MD5 946d5318bd459618620bce12b9b84d81
BLAKE2b-256 aa4b76dae50fcc9433fe512ef51e17f0944c0b2c4f4ff329916f995ae1f95a42

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8a2b2a65fa7f97115c1cd989fe9d6f39281ca2a8a014f1d4904c1a6e34d7f25
MD5 0219fae7bf73a1b6008b53483d3349d0
BLAKE2b-256 1178a67ff51c8167323b91b1b5a687ea5e1b071a9228543eb10a243ccb0e0f2b

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec14ceca36f67cb48b34d02d7f65a9acae15cd72b48e303531893ba4a960f3ea
MD5 e50ffe8d86bbeb1893af4c16d37ec5e5
BLAKE2b-256 963ac34e35e3181e593c72357353e8fa60052c751eff37c4a6f4e473cbf9aafd

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6fe855e7d45685926b6ba00aaeb5eba5862611f7465775dacd527e081a8ced6d
MD5 cc3f11c5d1890d1afd3a8a0b0a2b6c26
BLAKE2b-256 0174eaa56c4b230e874458c8d25fddf18d23e2e2625f307db227f38c37b24139

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99a2f0da0109e81e0c101a2b4cd8412f73f5f299e7b5b2deaf64cd2a100ac118
MD5 3305d25b610a606d25bf25e4365f274f
BLAKE2b-256 34305704c57904ea600ef041b960753cd5fc78a315210ae2b927a11d3aba2d6c

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99ab0ddc05e44acabdbe657c599fdb9b2d82e86c5493bdae216c0c4018a82dee
MD5 85aebec03d3522ce10072577a3431ee5
BLAKE2b-256 40c2f4265ebd6f2947f9d391676f998a8fad293ca91ba8704908527428913e9d

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d048f93e42ba578b82758c15d8ae037d08e69d91d9872bca5a1895b118f4e2b0
MD5 9980a36b1ef2fa5b20fac0fa9644008b
BLAKE2b-256 7a6f9f67f1693087319e3ab45e2fbbc2bf1e81c47413c75a3ffff06a90f6bf44

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e9c30b311de2513555ab02464ebb76115d242842b29c412f5a9aa0cac57be9f6
MD5 1c5b7d7f2bf6de701a7259d7d77292a6
BLAKE2b-256 807d0acea9a831cd15b8020ae1442627c55fa312921d4ca19ffae97c0b2ee7c8

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8e59817b0fe63d34baedaabba8c393c0090f061917d18fc0bcc2f621937a8f73
MD5 5e73a719178a132fea8e087af5dc09a1
BLAKE2b-256 426d4b56f98700c302b52ce91e4f50704f989998f63ee1603d35bf573bf353d2

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89164e7a9776a19e29f01369a98529321994e2e4d852b92b7e01d4d9804c55bf
MD5 2e55bb4f1300b51ab70dd0c197a7ae61
BLAKE2b-256 47593560714f4526d18c44687b7fddd924d5230babff570cfb3af40f466da70c

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 78fb9d929b8ee15cfd424b6c10879ce1907f24e05fb83310fc47d2cd27088e40
MD5 447addc68785a6694a73d13a888fcf65
BLAKE2b-256 ec6dff268d09332501c8efccc2cf98e7d2f56659c91a150f43cb84bd0546c3e8

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38f0fbbcb8ca20c16451c966c1f527cc43968e121c8a048af19ed3e339a921cd
MD5 4927d31f71e270490af0bf0edda3ab39
BLAKE2b-256 815a1848c3296272866febcfad476c878089299c70594fe3bbf682d084c7ba88

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a9a4a31cd6e86d0fbe8473ceed83d4fe760b19d949fb557ef668defafea0f6
MD5 12076b01e78169e1675809684eabd882
BLAKE2b-256 174fb461d573cbe5625396c551bd771c83282ea5d4fdb30ee931381a23af09a2

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02dd5d7dc6e46515d88874134dc8fcdc65826bca93c3eecee59d1910c42c1b17
MD5 c428486018a0e6f0bdff3faf9b3538fd
BLAKE2b-256 ed910844725ae749f1b9c831d5ca4622a181a3264fbcced217409da537e33818

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b4ee3132ee90f07d63db3aea316c4c065ed7a26231458dda0874414a09d6ba3
MD5 77f01dc8046aea783debe59c401c43a5
BLAKE2b-256 03c7767226767fe15d78198f199c51b91c91f4d963e76a939c4a9a4ff2fc4087

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0d885cb0cf670c1c834df3f371de8726efdf711f18e2a75da5cfa82843a7ab65
MD5 bd608723b1450f442a4dd9482989c0fa
BLAKE2b-256 22467184845f9064baea7a271cc72b0689821d90572b781fdc5ecdd3aa3aefd3

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2e0a8c2e55f1be1312b51c92b06462ea89e6bb703fab4b114e7a846d941cfc40
MD5 42351ccd435ff9f65505c6063e3b3f91
BLAKE2b-256 561a1e6878881c2d91d892767172351e6bfb6f19633acf66f57e43ad9b724611

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b47bb6f9369e8bf3e6dbd33e6a25a47ee02b2874792a529fe04a49bf8bc0df6
MD5 95ae2cbb8c6c63a9e3efbc824c42fc57
BLAKE2b-256 4d16ee7ed7a54dbb0bcaa77ca10b0b692e82d1538cd8f663e0f77a46c4dc0435

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2822111ddc5bcfb116e6c663e403579d0fe3f147d2a97426011a191c43a7458
MD5 983524cf8d08407dad3751dd00cc860b
BLAKE2b-256 1770c11106764bf0fdc50191136bdc970ec962bd0bb657070a12779e71e28fea

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 147066da0be41b147a61f8eb805dea3b13709dbc873a431ccd7306e24d712bc0
MD5 6adeeac88730ac1ea9eadda53d68d9f5
BLAKE2b-256 a8f3e5743c71d61f3533d49792dd63dbd4237508edd4fb1a3d6a27fe8fb4cd3b

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b65f5d530ba91e49ffc7c589255e878d2506a8b96ffce69d3b7c4500a9a9eaf8
MD5 0c1b439910e2922282a327828b8feb58
BLAKE2b-256 5bcc673c152ebe86a72860526fd26977693ce99c2de921d45ef931a716da0fbf

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3480657460e939f45a7d359ef0e172a081f249312557fe9aa78c4fd3a362d993
MD5 b0a1ebfac3d816453db91a7f52f469c7
BLAKE2b-256 e49784ee6e6c02ed3b843da53caa66686b1d8594bb8be10525171d2427b4231b

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 532a55ee2a6c52d23d6f7d1567c8f0473635f3b270262c44e1b0c88096827e22
MD5 f179d4e8b4f8dd0dfb9e069956c4aae0
BLAKE2b-256 1488523ecb4366850cb94bb7518e07625008e0c20821ddf306bcba36c1bdc5bc

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 370b574c78dc5af3a198a6da5d9b3d7c04654bd2ef7e80e80a3a0992dfb2d9cd
MD5 d42b71902f0d4b514b7531c0d80e2b87
BLAKE2b-256 819fd1ac5445a0a25a587ae8dfab76c980862dc5261f209c4a50f5c7a3beaba7

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65b21243d8f6bcd421210daf1fabb9de84de2c04353c5b026173b88d17c1a581
MD5 a740f9d92a304ee587ba5c3ae056ea3f
BLAKE2b-256 7465a898434cb7a69a3ef9554a6f3b3b325e17a5e15887ce88b18b9585e09e84

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 753ed0e21ab108bd4282405b9b659f2e985e8502b1a72b978eaa51d3496dee19
MD5 d7f5da9bb1a60f07c779f91ba368a1ac
BLAKE2b-256 7bb6580f795a835f7b93d6e5c4fb125ba4fa81eb0e8489c5ac126ac2669b9521

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 adcf8a11b98af9375e32bff91de184f33a68dc48b9cb9becad4f132fa25cfa3c
MD5 754570e845611575e04365644106bd14
BLAKE2b-256 e7fa096b96ddc0b5048a6dd968a76c25eccf9d94e3a8699a7823fdb39d4f1785

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d7f85c2d35d39ff53c9216bc76b7641c52326f7e09aaad1789a3611a0f812f2
MD5 c62c1f0f4fac1f705edb5edbc8bef3bd
BLAKE2b-256 49733dda8f4818880e62d3d260150ebae612c2d059216e761675e78240274126

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 be9423d5a3577ac2e92c7e758bd8a2b205f5e51a012177a590bc46fc51eb4834
MD5 a2732feb84fa3d29fe733951723555ab
BLAKE2b-256 b68ff1beeb3585a7db42062bb67ce1766b55a7b3e25af1a916a0879bc249b5c9

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6d388c0c1bd878ed1af4583695690aa52234b02ed35f93a1c8486ff52a555838
MD5 9115ee2dce8a1ca358952b0034932e6e
BLAKE2b-256 4bb371e5032e5caee0104d09dff12c3ee1b7890110985acb5dece50673e84112

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66bdac74fbd1d3458fa787191a90fa0ae610f09e2a5ec398c36f968cc0ed743f
MD5 958a5044203f8dca3cf49f4cd3d7786e
BLAKE2b-256 eb3ce853d9f7c6ffdbb5db24c3eda4c84cc3229fec52fbd464f53368a2edfe7e

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a74631e511153366c6dbe3229fa93f877e3c87ea8369cd00f1d38c76b0ed9ace
MD5 a22dc1e145cb89e9a5321f16356cf802
BLAKE2b-256 813c7c76e8d66c414d1dac3014c842acf52ebe1ceb513a88685d36f9ff4ffe27

See more details on using hashes here.

Provenance

File details

Details for the file Shapely-1.8.5.post1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Shapely-1.8.5.post1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for Shapely-1.8.5.post1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fd15397638df291c427a53d641d3e6fd60458128029c8c4f487190473a69a91
MD5 bfc5adb4cc7f6d63fe003ebfa1baedbc
BLAKE2b-256 6c743acd45b35aba6120e828e3229378377569a0241678b3f06463991829c313

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