Skip to main content

Python port of polygon clipping algorithm by F. Martinez et al.

Project description

martinez

In what follows

  • python is an alias for python3.5 or any later version (python3.6 and so on).

Installation

Install the latest pip & setuptools packages versions:

python -m pip install --upgrade pip setuptools

User

Download and install the latest stable version from PyPI repository:

python -m pip install --upgrade martinez

Developer

Download the latest version from GitHub repository

git clone https://github.com/lycantropos/martinez.git
cd martinez

Install dependencies:

python -m pip install --force-reinstall -r requirements.txt

Install:

python setup.py install

Usage

>>> from martinez.contour import Contour
>>> from martinez.point import Point
>>> from martinez.polygon import Polygon
>>> left_polygon = Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> right_polygon = Polygon([Contour([Point(1.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0)], [], True)])
>>> from martinez.boolean import OperationType, compute
>>> compute(left_polygon, right_polygon, OperationType.INTERSECTION)
Polygon([Contour([Point(1.0, 1.0), Point(2.0, 1.0), Point(2.0, 2.0), Point(1.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.UNION)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.DIFFERENCE)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.XOR)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True), Contour([Point(1.0, 2.0), Point(2.0, 2.0), Point(2.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0)], [], True)])

original C++ implementation can be invoked by importing from _martinez module instead.

Development

Bumping version

Preparation

Install bump2version.

Pre-release

Choose which version number category to bump following semver specification.

Test bumping version

bump2version --dry-run --verbose $CATEGORY

where $CATEGORY is the target version number category name, possible values are patch/minor/major.

Bump version

bump2version --verbose $CATEGORY

This will set version to major.minor.patch-alpha.

Release

Test bumping version

bump2version --dry-run --verbose release

Bump version

bump2version --verbose release

This will set version to major.minor.patch.

Running tests

Install dependencies:

python -m pip install --force-reinstall -r requirements-tests.txt

Plain

pytest

Inside Docker container:

docker-compose up

Bash script (e.g. can be used in Git hooks):

./run-tests.sh

PowerShell script (e.g. can be used in Git hooks):

.\run-tests.ps1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

martinez-0.4.1.tar.gz (24.3 kB view details)

Uploaded Source

Built Distributions

martinez-0.4.1-cp38-cp38-win_amd64.whl (157.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

martinez-0.4.1-cp38-cp38-win32.whl (135.4 kB view details)

Uploaded CPython 3.8 Windows x86

martinez-0.4.1-cp38-cp38-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

martinez-0.4.1-cp38-cp38-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

martinez-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl (257.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

martinez-0.4.1-cp37-cp37m-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

martinez-0.4.1-cp37-cp37m-win32.whl (138.3 kB view details)

Uploaded CPython 3.7m Windows x86

martinez-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view details)

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

martinez-0.4.1-cp37-cp37m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

martinez-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

martinez-0.4.1-cp36-cp36m-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

martinez-0.4.1-cp36-cp36m-win32.whl (138.3 kB view details)

Uploaded CPython 3.6m Windows x86

martinez-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

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

martinez-0.4.1-cp36-cp36m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

martinez-0.4.1-cp36-cp36m-macosx_10_9_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

martinez-0.4.1-cp35-cp35m-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

martinez-0.4.1-cp35-cp35m-win32.whl (138.3 kB view details)

Uploaded CPython 3.5m Windows x86

martinez-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view details)

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

martinez-0.4.1-cp35-cp35m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

martinez-0.4.1-cp35-cp35m-macosx_10_9_x86_64.whl (248.7 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file martinez-0.4.1.tar.gz.

File metadata

  • Download URL: martinez-0.4.1.tar.gz
  • Upload date:
  • Size: 24.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.1.tar.gz
Algorithm Hash digest
SHA256 c31f4fa21a21b5ac7c75efb6238593e7afa06768d7b17eb9304eb774f585d980
MD5 975cd3436dde03fd3ef5f54e0bbe1886
BLAKE2b-256 2ecda07a9141fe0d7f51391510115eaaaddbf15d755162803f4fec9f3b7392e7

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 157.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for martinez-0.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8e6c3776ee89e1371c4173460d47ece3087d11611a24e6211943dc25f373919
MD5 f79347ed61c90fe9a2bbced6730046bc
BLAKE2b-256 8806f15ae4e242cf03c968abb052a384c7da5ab1ff29229a33681ab1884a1eee

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: martinez-0.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 135.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for martinez-0.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 29430d52f4c34ee2e82e1293e0021720a334a7d5278de241f05a6745f836c3d1
MD5 28835426f3edda4cc9bcf030a5b2860c
BLAKE2b-256 7a0dfc13a00a0dbb486afea3e0f8ba38e44b04052c02e1565e1ce65be2ea700c

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bf896cfa4302cf32f439aeb6b46ccefafa0b35d5739a318c9bc19bf59be7a09b
MD5 7853247684c68183010aee33e1b210dc
BLAKE2b-256 0e9527a6ad09aa00dff4779e1a9db6483e8f3a56ca2703d7226104e9f613051c

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 47855400238fc00f21ef9d94d662405c477ee922172bfa4f66566142a4755aa5
MD5 189864872a024792f1099448edeaa5f8
BLAKE2b-256 1d49310ec38cc62a125b05295d7cd1220e522a076cc388ce9365aab8ce4a7f6e

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 257.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for martinez-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3eed71f6ef20b2d2e7bf13f610b5a2671845fd2ea35bcceed164ca41f8800c05
MD5 d77215183a0aafa2ddcd485aedffdfea
BLAKE2b-256 d72793ef5cb92490521462e088463b45560d37ae8ada5af6b219721ced1da5f1

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 156.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for martinez-0.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 575589e87df2fd2e8aa86055f8109e9de44ff50ef660a88db6a09e8300c1a962
MD5 ae5597e05460ff37acf3649cbb304230
BLAKE2b-256 a60be544ad67919e5b43c56563b33df10fd9c803151fd76a63db0eea050c5eb9

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: martinez-0.4.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for martinez-0.4.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 40c63b9e0a9b54c917e26fe5b72b202dae1bf4b28c309acb23d2c85874961f3b
MD5 d30f30daafaac6e0a54ce0bd7addefd8
BLAKE2b-256 7823af3241b17ca774da9af6a1b6590dceb8b825f78d7fd75022fd5bddf9ab43

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1

File hashes

Hashes for martinez-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4ff9b78c857d0bfc9f582f10adea521e4c5def80fc3b3acf369f661ac009394
MD5 6f2465184d18f35cef7bead0a0815207
BLAKE2b-256 eb16fe5e64d944be865c4160e89b9e13dc5f0cb235c3e91693ea909b79436d2f

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.1-cp37-cp37m-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1

File hashes

Hashes for martinez-0.4.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16e0c47596fe410407ad18dd4e27297e9f8b750bf68334a96b228313ba204e37
MD5 e5eee2920bd41b85846cbef648be7f8f
BLAKE2b-256 3cc5cbc40dffced9bc9b882d678745c6e4e39192b994eb4dea69567d7547aef1

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 248.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for martinez-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cc392fc6a90d4e34724021a197fd899cdab6a60692064ec97935577ca247aaa
MD5 cccaf1079c8859d7595a6b1000bd9879
BLAKE2b-256 5a5c766c8f81bbd7bf511fb0033a1f9cb3800063d53b000d330b034258c11630

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 156.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for martinez-0.4.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 75ba272a50eb02cf8938cad292e82f0705ee87db4115e614d7ef7f90ddfa0300
MD5 8fb6489c76d5d78975a7df58072a895f
BLAKE2b-256 a49c21c5d31cd4e382c41c30dde7366d45d28f627f01d0a79685ea515ec56a5f

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: martinez-0.4.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for martinez-0.4.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 676bb3474c288b03d0df86bfa55a64b0a6cc05974709f42fedc5469ae8070f30
MD5 b71b9cb14929625036a9e3555833a2e7
BLAKE2b-256 33a66a4ba14ccdcd4b74f661b31a3c289ff84de05e8f507f801c60e6a635637a

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.7

File hashes

Hashes for martinez-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f2e03b02991a7f75cfb7a398015d4b21d81ace9e6bce80c12ec898e2c6972532
MD5 b992c630ada0961fe5ea7a36dcaca2cb
BLAKE2b-256 2ad784aaba4c045759d231a3567cf49e69fb3fbf1cbd78f200f229bcbbdef0b4

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.1-cp36-cp36m-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.7

File hashes

Hashes for martinez-0.4.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6deab0099e589237551eaa2695cf66db2b2c5ad6899f0bd2871d06b9c532f430
MD5 7b56999cdfa55fe84a57ac8ed2a1d5c1
BLAKE2b-256 6ed298018966c3dea8134f9a47bce4ee4e36fa53037a81012bf52f228c9ef77a

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 248.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for martinez-0.4.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1e35e32b3e47c8df52dbd7e0bd690d89e3f3ca6a248d10277d5c7b27ae81203
MD5 373e2825ac38846c9ace1caceb38d946
BLAKE2b-256 1583f6138f4abd55fe146fd5c268ad7d0474422f84cedee781c38e66e6d76e50

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 156.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.4

File hashes

Hashes for martinez-0.4.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 90eee70d928069db8c2e5a4a1aa288be292cf462b757aadea105c7796a25807f
MD5 62fdf6da736df6ca3873db380e825296
BLAKE2b-256 813d31641aeb937ba8e2161c144bd3bf85e570932b977abdff586d6e2df6374c

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: martinez-0.4.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.4

File hashes

Hashes for martinez-0.4.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 712cc223e1894f899bb17f96da0882d01ebb1bad214974e43fcea83b1645bdf4
MD5 42b7fbbb7912eea3a053a5ff31d82fe9
BLAKE2b-256 c96ea4b504cfa47165951e740db9ebaa26dd0270f98438d931d9d6b292b18223

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6

File hashes

Hashes for martinez-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5105c394b7b698fd0ceceae31eeef6edf36dafe5dc00c872d4661f2dc6b7f2f9
MD5 d2610a431ec3c261a88670ba93678567
BLAKE2b-256 a5cd624f063b8be51f1b27e234a2c64141c1449d95363bf40334d95bfab163ae

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6

File hashes

Hashes for martinez-0.4.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1f35189b9325fee5299e5d7729fed3e0db3ed05921cbf00f1399293fcc1f6d4d
MD5 e3d735add127d0c4241a4e3898eab0b6
BLAKE2b-256 7995081a761d2d2c5b496753e0fff3bef18de17249d4122f1bef8283effbece1

See more details on using hashes here.

File details

Details for the file martinez-0.4.1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 248.7 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.9

File hashes

Hashes for martinez-0.4.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb3ddef7955d3c7ffc895b0ac28c293d05bf2252bb947ec746096e930048027a
MD5 94abd4d78427506e553a6a98c215c568
BLAKE2b-256 5e295cb19eebdb7741b198635c40dbf364dbb52aa199ca6e095dbfbec8dd9ea4

See more details on using hashes here.

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